@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --color-creme: #E8D5C4;
  --color-branco: #FFFFFF;
  --color-vermelho: #C85A54;
  --color-dourado: #D4A574;
  --color-marrom: #6B4423;
  --color-creme-claro: #F5EDE4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #E8D5C4;
  color: #111111;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: white;
  border-bottom: 1px solid #E8DDD4;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.logo {
  height: 48px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: #6B4423;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.875rem;
  text-decoration: none;
}

.nav-desktop a:hover {
  color: #C85A54;
}

.menu-toggle {
  display: none;
  padding: 0.5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
  font-size: 1.5rem;
  color: #6B4423;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background-color: white;
  border-top: 1px solid #E8DDD4;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}

.nav-mobile a {
  color: #6B4423;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-decoration: none;
}

.nav-mobile a:hover {
  color: #C85A54;
}

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1280px;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Buttons */
.btn {
  position: relative;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 9999px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
}

.btn-primary {
  color: white;
  background-color: #C85A54;
  box-shadow: 0 4px 15px rgba(200, 90, 84, 0.3);
}

.btn-primary:hover {
  background-color: #B84A44;
  transform: translateY(-4px);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  color: #C85A54;
  background-color: white;
  border: 2px solid #C85A54;
}

.btn-secondary:hover {
  background-color: #F5EDE4;
  transform: translateY(-4px);
}

.btn-secondary:active {
  transform: scale(0.95);
}

/* Cards */
.card {
  position: relative;
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #E8D5C4;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(200, 90, 84, 0.1);
  text-align: center;
}

.card:hover {
  box-shadow: 0 12px 24px rgba(200, 90, 84, 0.15);
  transform: translateY(-8px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #C85A54, transparent);
}

.card-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  color: #6B4423;
  margin-bottom: 0.75rem;
}

.card p {
  color: #6B4423;
}

/* Flavor Cards */
.flavor-card {
  position: relative;
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #E8D5C4;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(200, 90, 84, 0.1);
}

.flavor-card:hover {
  box-shadow: 0 12px 24px rgba(200, 90, 84, 0.15);
  transform: translateY(-8px);
}

.flavor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #C85A54, transparent);
}

.flavor-card h3 {
  font-size: 1.5rem;
  color: #C85A54;
  margin-bottom: 0.75rem;
}

.flavor-card p {
  color: #6B4423;
}

/* Image Frame */
.image-frame {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.image-frame:hover img {
  transform: scale(1.05);
}

/* Sections */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  background-color: #E8D5C4;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-text-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-label {
  color: #C85A54;
  font-weight: bold;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3rem;
  color: #6B4423;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title .highlight {
  color: #C85A54;
}

.hero-description {
  font-size: 1.25rem;
  color: #6B4423;
  line-height: 1.625;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-tagline {
  color: #C85A54;
  font-weight: 600;
  font-size: 1.125rem;
}

.hero-image {
  position: relative;
  height: 24rem;
}

@media (min-width: 768px) {
  .hero-image {
    height: 100%;
    min-height: 24rem;
  }
}

.circle-decoration {
  position: absolute;
  border-radius: 9999px;
}

.circle-1 {
  width: 10rem;
  height: 10rem;
  background-color: #C85A54;
  opacity: 0.15;
  bottom: -2rem;
  right: -2rem;
}

.circle-2 {
  width: 8rem;
  height: 8rem;
  background-color: #D4A574;
  opacity: 0.1;
  top: -1rem;
  left: -1rem;
}

/* Why Section */
.why-section {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: white;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .why-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  color: #6B4423;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-header h2 .highlight {
  color: #C85A54;
}

.section-header p {
  font-size: 1.25rem;
  color: #6B4423;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Products Section */
.products-section {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: #E8D5C4;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .products-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-image {
  position: relative;
  height: 24rem;
}

@media (min-width: 768px) {
  .product-image {
    height: 100%;
    min-height: 24rem;
  }
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .product-content {
    text-align: left;
  }
}

.product-content h2 {
  font-size: 2.25rem;
  color: #6B4423;
}

@media (min-width: 768px) {
  .product-content h2 {
    font-size: 3rem;
  }
}

.product-content h2 .highlight {
  color: #C85A54;
}

.product-content p {
  font-size: 1.125rem;
  color: #6B4423;
  line-height: 1.625;
}

.product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  justify-content: center;
  color: #6B4423;
}

@media (min-width: 1024px) {
  .product-list li {
    justify-content: flex-start;
  }
}

.product-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #C85A54;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Flavors Section */
.flavors-section {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: white;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .flavors-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.flavors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .flavors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Business Section */
.business-section {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: #E8D5C4;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .business-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .business-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.business-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .business-content {
    text-align: left;
  }
}

.business-content h2 {
  font-size: 2.25rem;
  color: #6B4423;
}

@media (min-width: 768px) {
  .business-content h2 {
    font-size: 3rem;
  }
}

.business-content h2 .highlight {
  color: #C85A54;
}

.business-content p {
  font-size: 1.125rem;
  color: #6B4423;
  line-height: 1.625;
}

.business-image {
  position: relative;
  height: 24rem;
}

@media (min-width: 768px) {
  .business-image {
    height: 100%;
    min-height: 24rem;
  }
}

/* Final CTA Section */
.final-cta-section {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: white;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .final-cta-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.final-cta-content {
  text-align: center;
}

.final-cta-content h2 {
  font-size: 2.25rem;
  color: #6B4423;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .final-cta-content h2 {
    font-size: 3rem;
  }
}

.final-cta-content h2 .highlight {
  color: #C85A54;
}

.final-cta-content p {
  font-size: 1.25rem;
  color: #6B4423;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .final-cta-buttons {
    flex-direction: row;
  }
}

/* Decorative Elements */
.semi-circle {
  position: absolute;
  opacity: 0.15;
}

.semi-circle-top-left {
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at bottom-right, #C85A54 0%, transparent 70%);
  border-radius: 0 0 200px 0;
}

.semi-circle-top-right {
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at bottom-left, #D4A574 0%, transparent 70%);
  border-radius: 0 0 0 200px;
}

.semi-circle-bottom-left {
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at top-right, #D4A574 0%, transparent 70%);
  border-radius: 200px 0 0 0;
}

.semi-circle-bottom-right {
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at top-left, #C85A54 0%, transparent 70%);
  border-radius: 0 200px 0 0;
}

@media (max-width: 768px) {
  .semi-circle {
    width: 100px !important;
    height: 100px !important;
  }
}

/* Footer */
.footer {
  background-color: #C85A54;
  color: white;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-section h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-brand {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-direction: column;
}

@media (min-width: 640px) {
  .social-links {
    flex-direction: row;
  }
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 3rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
  color: #C85A54 !important;
  font-weight: 600;
}

/* Highlight */
.highlight {
  color: #C85A54;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-mobile.active {
    display: flex;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .final-cta-buttons {
    flex-direction: column;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none;
  }
}
