/* css/style.css */

/* --------------------------------------------------
   0. RESET & BASE VARIABLES
-------------------------------------------------- */
:root {
  --color-orange: #ff9424;
  --color-orange-hover: #e07e16;
  --color-orange-light: #fff4e8;
  --color-orange-dark: #b86208;
  --color-purple: #5C2D91;
  --color-purple-hover: #4B2475;
  --color-purple-light: #F4F0FA;
  --color-purple-dark: #3A1061;
  --color-dark: #111827;
  --color-gray: #4B5563;
  --color-light-gray: #F3F4F6;
  --color-very-light: #F9FAFB;
  --color-white: #FFFFFF;
  --color-red: #EF4444;
  --color-green: #10B981;
  
  --font-base: 'Alan Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-chewy: 'Chewy', cursive;
  --font-modak: 'Modak', cursive;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-base);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* --------------------------------------------------
   1. UTILITIES & TYPOGRAPHY
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.text-orange { color: var(--color-orange); }
.text-purple { color: var(--color-purple); }
.text-red { color: var(--color-red); }
.text-green { color: var(--color-green); }
.text-center { text-align: center; }

.font-chewy { font-family: var(--font-chewy); }
.font-modak { font-family: var(--font-modak); }

.section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--color-gray);
  max-width: 600px;
}

.highlight-underline {
  position: relative;
  display: inline-block;
}

.highlight-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background-color: var(--color-orange-light);
  z-index: -1;
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-light-gray);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--color-very-light);
  border-color: var(--color-gray);
  transform: translateY(-2px);
}

.btn-text {
  background-color: transparent;
  color: var(--color-dark);
  box-shadow: none;
  padding: 14px 16px;
}

.btn-text:hover {
  color: var(--color-orange);
  transform: translateX(4px);
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------
   2. NAVBAR
-------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.navbar.navbar-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}

.bucadim-nav-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-family: var(--font-chewy);
  font-size: 1.75rem;
  color: var(--color-orange);
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-dark);
  position: relative;
}

.nav-item:not(.button-cta-secondary):hover {
  color: var(--color-orange);
}

.button-cta-secondary {
  background-color: var(--color-purple-light);
  color: var(--color-purple);
  padding: 10px 22px;
  border-radius: 9999px;
  font-weight: 800;
  border: 1px solid rgba(92, 45, 145, 0.15);
}

.button-cta-secondary:hover {
  background-color: var(--color-purple);
  color: var(--color-white);
  transform: scale(1.03);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* --------------------------------------------------
   3. HERO SECTION
-------------------------------------------------- */
.section-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background-color: var(--color-white);
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  width: 100%;
}

.hero-content {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-brand-tag-logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-dark);
  margin-top: 12px;
  margin-bottom: 24px;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-gray);
  margin-bottom: 36px;
  text-align: center;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* Floating animation for dots */
@keyframes float-gentle {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-gentle {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 0.95; }
  100% { transform: scale(1); opacity: 0.8; }
}

.float-dot-1 { animation: float-gentle 6s infinite ease-in-out; transform-origin: center; }
.float-dot-2 { animation: float-gentle 8s infinite ease-in-out; animation-delay: 1s; transform-origin: center; }
.float-dot-3 { animation: float-gentle 7s infinite ease-in-out; animation-delay: 2s; transform-origin: center; }
.float-dot-4 { animation: float-gentle 5s infinite ease-in-out; animation-delay: 1.5s; transform-origin: center; }
.float-dot-5 { animation: float-gentle 9s infinite ease-in-out; animation-delay: 0.5s; transform-origin: center; }

/* --------------------------------------------------
   4. VALUE BAR
-------------------------------------------------- */
.section-values-bar {
  background-color: #f3f4f6;
  padding: 60px 0;
  border-top: 1px solid rgba(229, 231, 235, 0.5);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.values-bar-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-item {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(92, 45, 145, 0.15);
}

.value-icon {
  width: 52px;
  height: 52px;
  background-color: var(--color-very-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.value-item:hover .value-icon {
  transform: scale(1.05);
}

.value-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-dark);
}

/* --------------------------------------------------
   5. NOSSOS PRODUTOS
-------------------------------------------------- */
.section-products {
  padding: 100px 0;
  background-color: var(--color-white);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.products-header-left {
  max-width: 650px;
}

.products-carousel-container {
  position: relative;
  margin-bottom: 48px;
  width: 100%;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: 24px;
  background-color: var(--color-white);
  border: 1px solid rgba(229, 231, 235, 0.6);
  box-shadow: var(--shadow-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.product-slide {
  flex-shrink: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  padding: 48px;
  gap: 48px;
  min-height: 420px;
}

.slide-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.slide-image-container:hover {
  transform: scale(1.02);
}

.slide-product-logo {
  max-height: 160px;
  max-width: 80%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
  transition: var(--transition-smooth);
}

.product-slide:hover .slide-product-logo {
  transform: translateY(-5px);
}

/* Background logo slide colors matching product brand (removed as requested) */
.bg-twyne-light, .bg-fluxseed-light, .bg-seupedidoja-light, .bg-anotae-light { background-color: transparent; }

.slide-info-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.slide-product-tag {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.slide-product-name {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.slide-product-short {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.slide-product-long {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

.slide-product-cta {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}

.slide-product-cta .arrow {
  transition: transform 0.2s ease;
}

.slide-product-cta:hover .arrow {
  transform: translateX(4px);
}

/* Navigation arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid rgba(229, 231, 235, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  z-index: 10;
  color: var(--color-dark);
}

.carousel-arrow:hover {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow.prev {
  left: -24px;
}

.carousel-arrow.next {
  right: -24px;
}

/* Indicators dots */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 64px;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: rgba(92, 45, 145, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.indicator-dot.active {
  background-color: var(--color-purple);
  width: 24px;
  border-radius: 5px;
}

/* Products closure */
.products-closure {
  text-align: center;
  background-color: var(--color-very-light);
  border-radius: 20px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(229, 231, 235, 0.6);
}

.closure-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.closure-subtext {
  font-size: 1rem;
  color: var(--color-gray);
  margin-bottom: 24px;
}

/* --------------------------------------------------
   6. POR QUE BUCADIM?
-------------------------------------------------- */
.section-why {
  padding: 100px 0;
  background-color: var(--color-very-light);
}

.why-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.why-content-left {
  position: sticky;
  top: 120px;
}

.why-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-gray);
  margin-top: 16px;
  margin-bottom: 24px;
}

.why-highlight {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-orange);
}

.pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pillar-item {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: var(--transition-smooth);
}

.pillar-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(92, 45, 145, 0.15);
}

.pillar-icon {
  margin-bottom: 16px;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.5;
}

/* --------------------------------------------------
   7. UM BUCADIM DE...
-------------------------------------------------- */
.section-cloud {
  padding: 100px 0;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cloud-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.cloud-header {
  max-width: 700px;
  margin: 0 auto;
}

.cloud-tag-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cloud-main-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cloud-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray);
  line-height: 1.5;
}

/* Cards Wrapper Grid */
.bucadim-cards-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.bucadim-cards-row {
  width: 100%;
}

.bucadim-cards-row.row-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.bucadim-cards-row.row-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 68%;
}

/* Individual Card Styling */
.bucadim-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 240px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

.bucadim-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.08);
}

.bucadim-card-icon {
  margin-bottom: 20px;
}

.bucadim-card-title {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.2;
}

.bucadim-card-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 500;
}

/* Specific Card Color Themes & Shapes matching reference image */

/* 1. Curiosidade */
.card-curiosidade {
  background: linear-gradient(145deg, #FF9424 0%, #F97316 100%);
  color: var(--color-white);
  border-radius: 36px 16px 36px 36px;
}
.card-curiosidade .bucadim-card-icon { color: var(--color-white); }
.card-curiosidade .bucadim-card-desc { color: rgba(255, 255, 255, 0.9); }

/* 2. IA */
.card-ia {
  background-color: #5C2D91;
  color: var(--color-white);
  border-radius: 40px;
}
.card-ia .bucadim-card-icon { color: var(--color-white); }
.card-ia .bucadim-card-desc { color: rgba(255, 255, 255, 0.9); }

/* 3. Coragem */
.card-coragem {
  background-color: #F3F4F6;
  color: var(--color-dark);
  border-radius: 28px;
}
.card-coragem .bucadim-card-icon { color: #4B5563; }
.card-coragem .bucadim-card-desc { color: #6B7280; }

/* 4. Design */
.card-design {
  background: linear-gradient(145deg, #FF9424 0%, #F97316 100%);
  color: var(--color-white);
  border-radius: 24px;
}
.card-design .bucadim-card-title { color: var(--color-white); }
.card-design .bucadim-card-icon { color: var(--color-white); }
.card-design .bucadim-card-desc { color: rgba(255, 255, 255, 0.9); }

/* 5. Cuidado */
.card-cuidado {
  background-color: #481A7A;
  color: var(--color-white);
  border-radius: 36px 36px 16px 36px;
}
.card-cuidado .bucadim-card-icon { color: var(--color-white); }
.card-cuidado .bucadim-card-desc { color: rgba(255, 255, 255, 0.9); }

/* 6. Tecnologia */
.card-tecnologia {
  background-color: #F3F4F6;
  color: var(--color-dark);
  border-radius: 44px;
}
.card-tecnologia .bucadim-card-icon { color: #4B5563; }
.card-tecnologia .bucadim-card-desc { color: #6B7280; }

/* 7. Pessoas */
.card-pessoas {
  background: linear-gradient(145deg, #FF9424 0%, #F97316 100%);
  color: var(--color-white);
  border-radius: 32px;
}
.card-pessoas .bucadim-card-title { color: var(--color-white); }
.card-pessoas .bucadim-card-icon { color: var(--color-white); }
.card-pessoas .bucadim-card-desc { color: rgba(255, 255, 255, 0.9); }

/* 8. Conexão */
.card-conexao {
  background-color: #3B1466;
  color: var(--color-white);
  border-radius: 36px;
}
.card-conexao .bucadim-card-icon { color: var(--color-white); }
.card-conexao .bucadim-card-desc { color: rgba(255, 255, 255, 0.9); }

/* Sub-footer Handwritten style */
.cloud-footer {
  margin-top: 16px;
}

.cloud-footer-text {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.highlight-swoop {
  position: relative;
  display: inline-block;
  color: var(--color-dark);
}

.highlight-swoop::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--color-orange);
  border-radius: 4px;
}

/* --------------------------------------------------
   8. SOBRE A BUCADIM
-------------------------------------------------- */
.section-about {
  padding: 100px 0;
  background-color: var(--color-very-light);
}

.about-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.about-left {
  max-width: 600px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.1rem;
  color: var(--color-gray);
}

.about-quote {
  font-family: var(--font-chewy);
  font-size: 1.5rem;
  color: var(--color-dark);
  line-height: 1.4;
  margin-top: 16px;
  border-left: 4px solid var(--color-orange);
  padding-left: 20px;
}

.about-quote strong {
  color: var(--color-orange);
}

.about-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Organic Blob Logo Container */
.logo-blob-container {
  position: relative;
  width: 280px;
  height: 280px;
}

/* The Animated Floating Orange Blob */
.organic-blob-logo {
  width: 100%;
  height: 100%;
  background-color: var(--color-orange);
  border-radius: 54% 46% 63% 37% / 51% 58% 42% 49%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: blob-morph 8s infinite ease-in-out alternate, pulse-gentle 4s infinite ease-in-out;
  box-shadow: 0 15px 30px rgba(255, 90, 0, 0.25);
  cursor: pointer;
}

.blob-logo-img {
  width: 72%;
  height: auto;
  filter: brightness(0) invert(1);
}

/* Tiny decorative floating dots around about logo */
.blob-deco-dot {
  position: absolute;
  border-radius: 50%;
  background-color: var(--color-orange);
}

.blob-deco-dot.dot-1 {
  width: 16px;
  height: 16px;
  bottom: 20px;
  left: -10px;
  animation: float-gentle 5s infinite ease-in-out;
}

.blob-deco-dot.dot-2 {
  width: 10px;
  height: 10px;
  top: 30px;
  right: -5px;
  animation: float-gentle 6s infinite ease-in-out;
  animation-delay: 1.5s;
}

@keyframes blob-morph {
  0% { border-radius: 54% 46% 63% 37% / 51% 58% 42% 49%; }
  50% { border-radius: 42% 58% 48% 52% / 60% 40% 60% 40%; }
  100% { border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%; }
}

/* --------------------------------------------------
   9. NÚMEROS / IMPACTO
-------------------------------------------------- */
.section-stats {
  padding: 64px 0;
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-card {
  padding: 16px;
}

.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-num.font-modak {
  font-size: 2.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-gray);
  font-weight: 700;
}

/* --------------------------------------------------
   10. NOSSA FORMA DE PENSAR
-------------------------------------------------- */
.section-editorial {
  padding: 100px 0;
  background-color: var(--color-white);
}

.editorial-container {
  max-width: 800px;
  text-align: center;
}

.editorial-title {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-top: 12px;
  margin-bottom: 40px;
}

.editorial-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.35rem;
  color: var(--color-gray);
  line-height: 1.5;
}

.editorial-highlight {
  margin-top: 32px;
}

.editorial-highlight .highlight-text {
  font-family: var(--font-chewy);
  font-size: 2rem;
  color: var(--color-orange);
  background-color: var(--color-orange-light);
  padding: 8px 24px;
  border-radius: 12px;
  display: inline-block;
}

/* --------------------------------------------------
   11. CTA FINAL
-------------------------------------------------- */
.section-cta-final {
  padding: 100px 0;
  background-color: var(--color-purple);
  overflow: hidden;
}

.cta-final-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
}

.cta-final-left {
  max-width: 580px;
}

.cta-final-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
}

.cta-final-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta-final-small {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  font-weight: 700;
}

.cta-final-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Abstract Graphic */
.abstract-graphic {
  position: relative;
  width: 320px;
  height: 320px;
}

.abstract-shape {
  position: absolute;
  border-radius: 50%;
}

.abstract-shape.purple-circle {
  width: 220px;
  height: 220px;
  background-color: rgba(255, 255, 255, 0.15);
  left: 50px;
  top: 50px;
  opacity: 0.95;
  animation: float-gentle 7s infinite ease-in-out;
}

.abstract-shape.orange-blob {
  width: 90px;
  height: 90px;
  background-color: var(--color-orange);
  left: 0;
  top: 120px;
  animation: float-gentle 5s infinite ease-in-out alternate;
  animation-delay: 1s;
}

.abstract-shape.gray-circle {
  width: 140px;
  height: 140px;
  background-color: rgba(255, 255, 255, 0.08);
  right: -20px;
  top: 140px;
  z-index: -1;
}

.abstract-shape.mini-dot-orange {
  width: 18px;
  height: 18px;
  background-color: var(--color-orange);
  right: 40px;
  top: 20px;
  animation: float-gentle 4s infinite ease-in-out;
}

.abstract-shape.mini-dot-purple {
  width: 14px;
  height: 14px;
  background-color: var(--color-white);
  left: 80px;
  bottom: 20px;
  animation: float-gentle 6s infinite ease-in-out;
  animation-delay: 2s;
}

/* --------------------------------------------------
   12. FOOTER
-------------------------------------------------- */
.footer {
  background-color: var(--color-white);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.footer-container {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 64px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Mini Blob Logo in footer */
.organic-blob-logo-mini {
  width: 100px;
  height: 100px;
  background-color: var(--color-orange);
  border-radius: 54% 46% 63% 37% / 51% 58% 42% 49%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(255, 90, 0, 0.2);
}

.footer-logo-img {
  width: 70%;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-signature {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-gray);
}

.footer-links {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 32px;
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
}

.footer-link:hover {
  color: var(--color-orange);
}

.footer-link-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--color-gray);
  line-height: 1.3;
  margin-top: 4px;
  font-weight: 500;
}

.email-link {
  color: var(--color-orange);
}

.footer-address {
  font-size: 0.95rem;
  color: var(--color-gray);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-gray);
  font-weight: 700;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.social-icon {
  color: var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  color: var(--color-orange);
  transform: translateY(-2px);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.legal-link:hover {
  color: var(--color-orange);
}

/* --------------------------------------------------
   13. DIALOG MODAL (CONTACT & 404)
-------------------------------------------------- */
.modal {
  border: none;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  max-width: 520px;
  width: 90%;
  margin: auto;
  overflow: visible;
  outline: none;
  background-color: var(--color-white);
  padding: 40px;
}

.modal::backdrop {
  background-color: rgba(17, 24, 39, 0.4);
  backdrop-filter: blur(8px);
  animation: backdrop-fade 0.3s ease;
}

.modal-card {
  position: relative;
}

.modal-close {
  position: absolute;
  top: -24px;
  right: -24px;
  background: var(--color-light-gray);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-dark);
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 28px;
}

.modal-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 1.05rem;
  color: var(--color-gray);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-dark);
}

.form-input {
  font-family: var(--font-base);
  font-size: 1rem;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 0.8);
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Success state inside modal */
.modal-success-state {
  text-align: center;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 800;
}

.success-desc {
  font-size: 1.05rem;
  color: var(--color-gray);
  max-width: 320px;
}

/* 404 Modal specific styles */
.not-found-icon {
  font-size: 5rem;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 20px;
}

@keyframes backdrop-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --------------------------------------------------
   14. RESPONSIVENESS (MOBILE / TABLET)
-------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .values-bar-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .product-slide {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
    text-align: center;
  }

  .slide-image-container {
    height: 240px;
  }

  .slide-info-container {
    align-items: center;
  }

  .carousel-arrow.prev {
    left: 12px;
  }

  .carousel-arrow.next {
    right: 12px;
  }
  
  .why-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .why-content-left {
    position: static;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .about-left {
    margin: 0 auto;
  }
  
  .about-quote {
    justify-content: center;
    border-left: none;
    border-top: 4px solid var(--color-orange);
    padding-left: 0;
    padding-top: 16px;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .cta-final-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .cta-final-left {
    margin: 0 auto;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  /* Navigation mobile menu styles */
  .menu-toggle {
    display: flex;
    z-index: 1100;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    box-shadow: -10px 0 30px rgba(17, 24, 39, 0.08);
    transition: right 0.4s ease;
    z-index: 1050;
    gap: 24px;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  /* Hamburger burger to X */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  /* Mobile 1 card per line for Um bucadim de... */
  .bucadim-cards-wrapper {
    width: 100%;
  }

  .bucadim-cards-row.row-top,
  .bucadim-cards-row.row-bottom {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }

  .bucadim-card {
    width: 100%;
    min-height: auto;
    padding: 28px 20px;
  }

  .cloud-main-title {
    font-size: 2.5rem;
  }
  
  .logo-blob-container {
    width: 220px;
    height: 220px;
  }
  
  /* Logo image scales automatically with container */
  
  .editorial-title {
    font-size: 2rem;
  }
  
  .editorial-body {
    font-size: 1.1rem;
  }
  
  .editorial-highlight .highlight-text {
    font-size: 1.5rem;
  }
  
  .cta-final-title {
    font-size: 2.25rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .modal {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .values-bar-container {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
