@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* =====================================================
  === CSS Variables / Theme ===
===================================================== */
:root {
  /* Official Almus Brand Colors */
  --almus-azul: #D1E6F0;          /* Light Blue - CMYK 17,3,3,0 */
  --almus-verde: #CEE6CA;         /* Light Green - CMYK 19,0,25,0 */
  --almus-verde-rgb: 206, 230, 202; /* RGB values for verde */
  --almus-verde-escuro: #113236;  /* Dark Blue/Green - CMYK 88,62,60,58 */
  --almus-amarelo: #F2EBC9;       /* Beige - CMYK 5,4,24,0 */
  --almus-bege: #F8FAF0;          /* Cream - CMYK 2,0,5,0 */
  
  /* Brand color aliases for consistency */
  --brand-dark-blue: #113236;     /* Same as verde-escuro */
  --brand-light-green: #CEE6CA;   /* Same as verde */
  --brand-cream: #F8FAF0;         /* Same as bege */
  --brand-beige: #F2EBC9;         /* Same as amarelo */
  --brand-light-blue: #D1E6F0;    /* Same as azul */
  
  /* Text colors - using black/white as specified */
  --ink: #000000;                 /* Pure black for main text */
  --ink-2: #113236;               /* Dark brand color for secondary text */
  --bg: #ffffff;                  /* Pure white background */
  
  /* Design tokens */
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

@font-face {
  font-family: 'Area Inktrap Regular';
  src: url('fonnts.com-Area_Inktrap_Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* =====================================================
  === Base / Global ===
===================================================== */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Area Inktrap Regular', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  height: 100%;
}

.page-wrapper {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* =====================================================
  === Navigation / Header ===
===================================================== */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(180%) blur(8px);
  z-index: 20;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.brand img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(0); /* força logo escuro */
}

.nav ul {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav a.active,
.nav a:hover {
  background: var(--almus-bege);
  color: var(--ink);
}

.language-switcher {
  display: flex;
  gap: 5px;
}

.lang-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  opacity: 0.6;
}

.lang-btn:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.lang-btn.active {
  opacity: 1;
  background: rgba(var(--almus-verde-rgb), 0.1);
}

.nav-only {
  background: var(--almus-verde);
}

/* =====================================================
  === Hero Section ===
===================================================== */
.hero-gallery-wrapper {
  position: relative;
  isolation: isolate;
}

.hero-gallery-wrapper .hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.25; /* Increased from 0.15 for better visibility */
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.hero .container {
  max-width: 1080px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.hero-logo {
  margin-bottom: 80px;
}

.main-logo {
  max-width: 600px;
  width: 80%;
  height: auto;
  filter: none;
}

.hero-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-button-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 30px 25px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.hero-button-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.hero-button-card h3 {
  color: var(--almus-verde);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 0 15px;
}

.hero-button-card p {
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 35px;
  font-size: 1rem;
}

.hero-button-card .btn {
  margin: 0;
  width: auto;
  display: inline-block;
}

.tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--almus-verde);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  margin: 10px 0 12px;
  color: var(--ink);
  font-weight: 700;
}

.hero p {
  max-width: 720px;
  margin: auto;
  line-height: 1.65;
  color: var(--ink-2);
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: var(--ink);
}

.hero-content .logo {
  width: 80vw;
  max-width: 800px;
  height: auto;
  margin-bottom: 1rem;
}

/* =====================================================
  === Buttons ===
===================================================== */
.btn,
.btn-small {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: none;
  font-family: inherit;
}

.btn {
  padding: 12px 18px;
  margin: 0 6px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--almus-verde), var(--almus-azul));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-ghost:hover {
  background: var(--almus-bege);
  border-color: var(--almus-verde);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background: var(--almus-verde);
  color: #fff;
  border-radius: 8px;
}

.btn-small:hover {
  background: var(--almus-azul);
}

.btn-whatsapp {
  background: #25D366;
}

.btn-whatsapp:hover {
  background: #1da851;
}

.btn-produtos {
  background: var(--brand-light-green);
  color: var(--brand-dark-blue);
  border: 1px solid var(--brand-light-green);
}

.btn-produtos:hover {
  background: var(--almus-verde);
  color: white;
  border-color: var(--almus-verde);
}

.btn-historia {
  background: var(--brand-light-blue);
  color: var(--brand-dark-blue);
  border: 1px solid var(--brand-light-blue);
}

.btn-historia:hover {
  background: var(--almus-azul);
  color: white;
  border-color: var(--almus-azul);
}

.btn-contato {
  background: var(--brand-beige);
  color: var(--brand-dark-blue);
  border: 1px solid var(--brand-beige);
}

.btn-contato:hover {
  background: var(--almus-amarelo);
  color: white;
  border-color: var(--almus-amarelo);
}

/* =====================================================
  === Containers ===
===================================================== */
.container {
  max-width: 1080px;
  margin: auto;
  padding: 28px 20px;
  width: 100%;
  box-sizing: border-box;
}

.container--white {
  background: linear-gradient(135deg, #f4f9f5, #e8f0eb);
  padding-top: 20px;
  padding-bottom: 40px;
}

/* =====================================================
  === New Product Card Design ===
===================================================== */
.product-card {
  background: rgba(255, 255, 255, 0.9); /* Added transparency */
  border-radius: 20px; /* Increased border radius */
  box-shadow: 
    0 12px 36px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  margin-bottom: 4rem; /* Increased spacing between cards */
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  backdrop-filter: blur(10px); /* Added backdrop blur for glass effect */
  min-height: 650px; /* Added minimum height for larger cards */
}

.product-card:hover {
  transform: translateY(-8px); /* Increased hover lift */
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 12px 28px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95); /* Slightly less transparent on hover */
}

.product-card:focus-within {
  outline: 2px solid var(--almus-verde-escuro);
  outline-offset: 2px;
}

.product-card .media {
  position: relative;
  overflow: hidden;
}

.product-card .media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
  max-height: 600px; /* Increased from 350px */
}

.product-card .content {
  padding: 32px; /* Increased from 24px */
  display: grid;
  gap: 1rem; /* Increased gap */
  align-content: start;
  height: 100%;
}

.product-card header {
  margin-bottom: 0.75rem; /* Increased spacing */
}

.product-card h3 {
  font-size: 28px; /* Increased from 24px */
  font-weight: 700;
  color: var(--almus-verde-escuro);
  margin: 0 0 0.75rem 0; /* Increased margin */
  line-height: 1.2;
}

.product-card .subtitle {
  font-size: 16px; /* Increased from 15px */
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
  max-width: 60ch;
  opacity: 0.7; /* Decreased opacity for subtitle */
}

.product-card .badges {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  align-items: center;
}

.product-card .badges li:first-child {
  justify-self: start; /* Left badge */
}

.product-card .badges li:nth-child(2) {
  justify-self: center; /* Center badge aligned with title */
}

.product-card .badges li:last-child {
  justify-self: end; /* Right badge */
}

.product-card .badge {
  background: linear-gradient(135deg, rgba(var(--almus-verde-rgb), 0.15), rgba(var(--almus-verde-rgb), 0.25));
  color: var(--almus-verde-escuro);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  border: 1px solid rgba(var(--almus-verde-rgb), 0.3);
  box-shadow: 0 2px 8px rgba(var(--almus-verde-rgb), 0.2);
  transition: all 0.3s ease;
}

.product-card .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--almus-verde-rgb), 0.3);
}

.product-card .badge::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(var(--almus-verde-rgb), 0.4), rgba(var(--almus-verde-rgb), 0.1));
  border-radius: 999px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card .badge:hover::before {
  opacity: 1;
}

.product-card .specs-wrap {
  margin: 0.75rem 0;
}

.product-card .specs-wrap h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--almus-verde-escuro);
  margin: 0 0 0.5rem 0;
  text-align: center; /* Center the Especificações title */
}

.product-card .specs-applications-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin: 0.75rem 0;
}

.product-card .specs-section {
  justify-self: center; /* Center the specs section in left side */
  text-align: center; /* Center align specs content */
}

.product-card .divider-line {
  width: 1px;
  height: 100%;
  background: rgba(var(--almus-verde-rgb), 0.3);
  justify-self: center;
  min-height: 80px;
}

.product-card .applications-section {
  justify-self: center; /* Center the applications section in right side */
  text-align: center; /* Center align applications content */
}

.product-card .specs {
  margin: 0;
  padding: 12px;
  background: rgba(var(--almus-verde-rgb), 0.05);
  border-radius: 8px;
  min-width: 200px;
}

.product-card .specs .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.25rem 0;
  align-items: baseline;
}

.product-card .specs .row:not(:last-child) {
  border-bottom: 1px solid rgba(var(--almus-verde-rgb), 0.2);
  margin-bottom: 0.25rem;
  padding-bottom: 0.5rem;
}

.product-card .specs dt {
  font-weight: 500;
  color: var(--ink-2);
  font-size: 14px;
  text-align: left;
}

.product-card .specs dd {
  font-weight: 600;
  color: var(--almus-verde-escuro);
  font-size: 14px;
  margin: 0;
  text-align: right;
}

.product-card .applications {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the applications section */
  justify-content: center;
  text-align: center;
}

.product-card .applications h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--almus-verde-escuro);
  margin: 0 0 1rem 0;
  text-align: center; /* Center the title */
  width: 100%;
}

.product-card .applications-icons {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2x2 grid */
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  justify-items: center;
  align-items: center;
  width: 100%;
  max-width: 180px; /* Constrain the grid width */
}

.product-card .application-item {
  display: flex;
  flex-direction: column; /* Stack icon and text vertically */
  align-items: center;
  gap: 0.5rem;
  font-size: 13px; /* Slightly smaller text for grid layout */
  color: var(--ink-2);
  text-align: center;
}

.product-card .application-icon {
  width: 48px; /* Increased from 32px (1.5x) */
  height: 48px; /* Increased from 32px (1.5x) */
  background: rgba(var(--almus-verde-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px; /* Increased from 18px (1.5x) */
  padding: 8px; /* Increased from 6px */
}

.product-card .application-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: opacity(0.8);
}

.product-card .application-icon i {
  color: var(--almus-verde-escuro);
  font-size: 14px;
}

.product-card .cta {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  justify-content: center; /* Center the button */
}

.product-card .btn {
  width: 100%;
  max-width: 280px; /* Limit button width */
  text-align: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--almus-verde-escuro) !important; /* Dark blue text */
  border: none;
  text-decoration: none;
}

.product-card .btn:hover {
  transform: translateY(-1px);
}

.product-card .btn:focus {
  outline: 2px solid var(--almus-verde-escuro);
  outline-offset: 2px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .product-card {
    background: #1a1a1a;
    color: #ffffff;
  }
  
  .product-card .subtitle,
  .product-card .specs dt,
  .product-card .applications p {
    color: #cccccc;
  }
  
  .product-card .specs {
    background: rgba(255, 255, 255, 0.05);
  }
  
  .product-card .specs .row:not(:last-child) {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

/* Tablet and Desktop Layout */
@media (min-width: 768px) {
  .product-card {
    grid-template-columns: minmax(280px, 36%) 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }
  
  .product-card .media img {
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    height: 100%;
    max-height: 650px; /* Increased from 400px */
  }
  
  .product-card .content {
    padding: 32px 32px 32px 0;
    max-width: none;
  }
  
  .product-card .subtitle {
    max-width: 60ch;
  }
  
  .product-card .specs-applications-container {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
  }
  
  .product-card .cta {
    align-self: end;
    justify-self: center; /* Center on desktop too */
    margin-top: auto;
  }
  
  .product-card .btn {
    width: auto;
    min-width: 180px;
    max-width: 220px;
  }
}

/* Mobile responsive for specs-applications */
@media (max-width: 767px) {
  .product-card .specs-applications-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-card .divider-line {
    display: none;
  }
  
  .product-card .specs-section {
    justify-self: center; /* Center specs on mobile too */
    text-align: center;
  }
  
  .product-card .applications-section {
    justify-self: center; /* Center applications on mobile too */
    text-align: center;
  }
  
  .product-card .applications h4 {
    text-align: center; /* Keep centered on mobile */
  }
  
  .product-card .applications-icons {
    align-items: center; /* Keep centered on mobile */
    justify-items: center;
    max-width: 160px; /* Slightly smaller on mobile */
  }
  
  /* On mobile, stack badges vertically for better readability */
  .product-card .badges {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.75rem;
  }
  
  .product-card .badges li:first-child,
  .product-card .badges li:nth-child(2),
  .product-card .badges li:last-child {
    justify-self: center;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .product-card {
    grid-template-columns: minmax(320px, 38%) 1fr;
    gap: 2rem;
  }
  
  .product-card .content {
    padding: 40px 40px 40px 0;
  }
}

/* =====================================================
  === Catalog Section ===
===================================================== */
.catalogo-section {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(var(--almus-verde-rgb), 0.05);
  border-radius: 16px;
  text-align: center;
}

.catalogo-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--almus-verde-escuro);
  margin: 0 0 1rem 0;
}

.catalogo-content p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.catalogo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: var(--almus-verde-escuro);
  color: white !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.catalogo-btn:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* =====================================================
  === Legacy Product Card (keep for other cards) ===
===================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.highlights--custom {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.card,
.card--highlight {
  border-radius: var(--radius);
  padding: 22px 20px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.card:hover,
.card--highlight:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin: 0 0 8px;
  color: var(--almus-verde);
  font-weight: 700;
}

.card p {
  margin: 0 0 16px;
  color: var(--ink-2);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* =====================================================
  === Gallery / Glide.js ===
===================================================== */
.gallery {
  padding-block: 80px 100px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.gallery h2 {
  margin: 0 0 20px;
  text-align: center;
  color: var(--almus-verde);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.glide {
  max-width: 1080px;
  margin: 0 auto;
}

.glide__slides {
  display: flex;
  justify-content: center;
}

.glide__slide {
  padding: 0 10px;
}

.glide__slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease;
  opacity: 1;
  background: white;
}

.glide__slide img:hover {
  transform: scale(1.02);
}

.glide__arrows {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}

.glide__arrow {
  background: linear-gradient(135deg, var(--almus-verde), var(--almus-azul));
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  padding: 0;
}

.glide__arrow:hover {
  background: linear-gradient(135deg, var(--almus-azul), var(--almus-verde));
  transform: scale(1.1);
}

/* =====================================================
  === Logo / Tagline ===
===================================================== */
.logo-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  background: linear-gradient(to bottom, #f0f0f0, #ffffff);
  max-height: 70vh;
  overflow: hidden;
}

.logo-container {
  text-align: center;
  max-width: 100%;
}

.responsive-logo {
  width: clamp(200px, 30vw, 500px);
  height: auto;
  object-fit: contain;
  transition: width 0.3s ease;
  margin: 0 auto;
  display: block;
}

.logo-subtitle {
  text-align: center; /* ✅ Center the text */
  margin-top: 1.5rem;
  font-size: 1.5rem;
  color: #1f3521;
}

/* =====================================================
  === Fazenda Layout ===
===================================================== */
.fazenda-content {
  background: linear-gradient(135deg, #f4f9f5, #e8f0eb);
  padding: 60px 0;
}

.fazenda-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin: 0;
}

.fazenda-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.split-text {
  padding: 30px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

.split-text h2 {
  color: var(--almus-verde);
  font-weight: 700;
  margin: 0 0 20px;
  font-size: 1.8rem;
}

.split-text p {
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}

.split-text p:last-child {
  margin-bottom: 0;
}

.split-text strong {
  color: var(--almus-verde);
  font-weight: 600;
}

.split-text em {
  color: var(--almus-verde);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .fazenda-section {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .fazenda-content {
    padding: 40px 0;
  }
}

/* =====================================================
  === Story Section ===
===================================================== */
.story-section {
  background: linear-gradient(135deg, #f4f9f5, #e8f0eb);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.story-section .split-image img {
  max-width: 450px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.story-section .split-text {
  max-width: 600px;
  padding-bottom: 2rem;
}

.story-section .split-text h2 {
  font-size: 2.8rem;
  color: #1f3521;
  margin-bottom: 1rem;
}

.story-section .split-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.story-section .split-text strong {
  color: #153019;
}

.story-section .split-text em {
  color: #38654a;
  font-style: normal;
  font-weight: 500;
}

/* =====================================================
  === WhatsApp Floating Button ===
===================================================== */
.whatsapp-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25D366;
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  background: #128C7E;
}

/* =====================================================
  === Footer ===
===================================================== */
footer {
  margin-top: auto;
  background: #0b1220;
  color: #e5e7eb;
}

footer .footer-content {
  max-width: 1080px;
  margin: auto;
  padding: 26px 20px;
  font-size: 14px;
  text-align: center;
}

/* =====================================================
  === Logo / Tagline ===
===================================================== */
.logo-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  background: linear-gradient(to bottom, #f0f0f0, #ffffff);
  max-height: 70vh;
  overflow: hidden;
}

.logo-container {
  text-align: center;
  max-width: 100%;
}

.responsive-logo {
  width: clamp(200px, 30vw, 500px);
  height: auto;
  object-fit: contain;
  transition: width 0.3s ease;
  margin: 0 auto;
  display: block;
}

.logo-subtitle {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.5rem;
  color: var(--almus-verde);
}

/* =====================================================
  === Story Section ===
===================================================== */
.story-section {
  background: linear-gradient(135deg, #f4f9f5, #e8f0eb);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.story-section .split-image img {
  max-width: 450px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.story-section .split-text {
  max-width: 600px;
  padding-bottom: 2rem;
}

.story-section .split-text h2 {
  font-size: 2.8rem;
  color: var(--almus-verde);
  margin-bottom: 1rem;
}

.story-section .split-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.story-section .split-text strong {
  color: var(--almus-azul);
}

.story-section .split-text em {
  color: var(--almus-verde);
  font-style: normal;
  font-weight: 500;
}

/* =====================================================
  === Page Header (for secondary pages) ===
===================================================== */
.page-header {
  position: relative;
  isolation: isolate;
  padding: 80px 0 60px;
  text-align: center;
}

.page-header .hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--almus-verde);
  margin: 0 0 20px;
  font-weight: 700;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 0 40px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .page-header p {
    font-size: 1.1rem;
  }
}

/* =====================================================
  === Products Page Styles ===
===================================================== */
.products-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.products-intro h2 {
  font-size: 2.5rem;
  color: var(--almus-verde);
  margin: 0 0 20px;
  font-weight: 700;
}

.products-intro p {
  font-size: 1.2rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.products-showcase {
  margin-top: 60px;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.product-item.reverse {
  flex-direction: row-reverse;
}

.product-icon {
  flex-shrink: 0;
}

.product-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.product-content h3 {
  font-size: 2rem;
  color: var(--almus-verde);
  margin: 0 0 15px;
  font-weight: 700;
}

.product-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.feature {
  background: var(--almus-bege);
  color: var(--almus-verde);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.product-content .btn {
  margin: 0;
}

@media (max-width: 768px) {
  .product-item,
  .product-item.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 30px 20px;
  }

  .products-intro h2 {
    font-size: 2rem;
  }

  .product-content h3 {
    font-size: 1.6rem;
  }

  .product-icon img {
    width: 80px;
    height: 80px;
  }
}

/* =====================================================
  === New Products Layout ===
===================================================== */
.produtos-centered {
  max-width: 1080px;
  margin: 60px auto;
}

.produtos-section {
  text-align: center;
  margin-bottom: 80px;
}

.produtos-section h2 {
  color: var(--almus-verde);
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 2rem;
}

.diferenciais-section-grid {
  text-align: center;
}

.diferenciais-section-grid h2 {
  color: var(--almus-verde);
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 2rem;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.produtos-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin: 60px 0;
}

.diferenciais-section h2 {
  color: var(--almus-verde);
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 2rem;
}

.diferencial-item {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(var(--almus-verde-rgb), 0.05);
  border-radius: var(--radius);
  border-left: 4px solid var(--almus-verde);
}

.diferencial-item h3 {
  color: var(--almus-verde);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.diferencial-item p {
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

.produto-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: stretch;
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.produto-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(var(--almus-verde-rgb), 0.05);
}

.produto-header-inline {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.produto-logo {
  height: 30px;
  width: auto;
}

.produto-icon {
  height: 35px;
  width: auto;
  flex-shrink: 0;
}

.produto-image {
  width: 250px;
  flex-shrink: 0;
  overflow: hidden;
}

.produto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.produto-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.produto-details {
  margin: 15px 0 20px;
  padding: 15px;
  background: rgba(var(--almus-verde-rgb), 0.05);
  border-radius: 8px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-item strong {
  color: var(--almus-verde);
  font-weight: 600;
}

.detail-item span {
  color: var(--ink);
  font-weight: 500;
}

.btn-compact {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.diferencial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.diferencial-icon {
  height: 32px;
  width: auto;
  flex-shrink: 0;
}

.produto-content h3 {
  color: var(--almus-verde);
  font-weight: 700;
  margin: 0;
  font-size: 1.4rem;
}

.produto-content p {
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.produto-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.produto-features .feature {
  background: rgba(var(--almus-verde-rgb), 0.1);
  color: var(--almus-verde);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .produtos-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .diferenciais-section {
    order: 2;
  }
  
  .produtos-section {
    order: 1;
  }
  
  .diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .produto-card {
    flex-direction: column;
    align-items: stretch;
  }
  
  .produto-image {
    width: 100%;
    height: 200px;
  }
  
  .produto-header-inline {
    gap: 10px;
  }
  
  .produto-icon {
    height: 30px;
  }
  
  .produto-content h3 {
    font-size: 1.2rem;
  }
  
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
  === Thank You Page Styles ===
===================================================== */
.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content h2 {
  font-size: 3rem;
  color: var(--almus-verde);
  margin: 0 0 20px;
  font-weight: 700;
}

.thank-you-content p {
  font-size: 1.3rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 30px;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.thank-you-actions .btn {
  margin: 0;
}

@media (max-width: 640px) {
  .thank-you-content h2 {
    font-size: 2.2rem;
  }
  
  .thank-you-content p {
    font-size: 1.1rem;
  }
  
  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* =====================================================
  === Forms ===
===================================================== */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

textarea::placeholder,
input::placeholder {
  font-family: inherit;
  font-size: 1rem;
  color: #666;
}

/* =====================================================
  === Responsive Design ===
===================================================== */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .glide {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .nav ul {
    gap: 1rem;
  }

  .nav {
    padding: 10px 15px;
  }

  .nav .brand img {
    height: 35px;
  }

  .container {
    padding: 20px 15px;
  }

  .hero-buttons {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-button-card {
    padding: 25px 20px;
  }

  .main-logo {
    width: 90%;
    max-width: 400px;
  }

  .hero-logo {
    margin-bottom: 60px;
  }

  .split-layout,
  .story-section {
    flex-direction: column;
    padding: 2rem 1rem;
    height: auto;
  }

  .split-text,
  .split-image {
    text-align: center;
    max-width: 100%;
  }

  .split-image img {
    max-width: 100%;
    height: auto;
  }

  .responsive-logo {
    max-width: 300px;
  }

  .cta-row {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    margin: 5px 0;
  }
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .glide__slide img {
    height: 220px;
  }

  .hero .container {
    padding: 30px 15px;
  }

  .hero-buttons {
    gap: 15px;
  }

  .hero-button-card {
    padding: 20px 15px;
  }

  .hero-button-card h3 {
    font-size: 1.2rem;
  }

  .main-logo {
    width: 95%;
    max-width: 320px;
  }

  .hero-logo {
    margin-bottom: 50px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .nav ul {
    gap: 8px;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .responsive-logo {
    max-width: 400px;
  }
}

@media (min-width: 1024px) {
  .responsive-logo {
    max-width: 500px;
    max-height: 50vh;
  }
}
/* === Matéria-Prima Page Specific Styles === */
.materia-page .highlight-box {
  background: #e0f4e8;
  border-left: 6px solid #25D366;
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 8px;
}

.materia-page .split-image img {
  max-width: 2000px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.materia-page .download-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #25D366;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.materia-page .download-button:hover {
  background-color: #1da851;
}
/* === Page-specific backgrounds === */
body.contato-page {
  background: transparent !important;
}

body.contato-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Almus_Grafismo_B_Amarelo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

body.nossahistoria-page {
  background: transparent !important;
}

body.nossahistoria-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Almus_Grafismo_E_Verde.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

body.produtos-page {
  background: transparent !important;
}

body.produtos-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Almus_Grafismo_E_Azul.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

body.contato-page .page-header .hero__bg {
  display: none;
}

body.contato-page .page-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  isolation: auto;
  padding: 60px 0 40px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  margin-top: 0;
}

body.contato-page .page-header h1 {
  font-size: 2.5rem;
  color: var(--almus-verde);
  margin: 0 0 15px;
  font-weight: 700;
}

body.contato-page .page-header p {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

body.contato-page .map-section {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border-radius: var(--radius);
  padding: 40px;
  margin: 40px auto;
  box-shadow: var(--shadow);
}

body.contato-page .contact-page .contact-container {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  position: relative;
  z-index: 1;
}

body.contato-page .contact-page .contact-info {
  flex: 1;
  padding-right: 30px;
  border-right: 2px solid var(--almus-bege);
}

body.contato-page .contact-page .contact-info h2 {
  color: var(--almus-verde);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

body.contato-page .contact-page .contact-info h3 {
  color: var(--almus-azul);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 25px 0 15px;
}

body.contato-page .contact-page .contact-info p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--ink-2);
}

body.contato-page .contact-page .contact-info p strong {
  color: var(--almus-verde);
  font-weight: 600;
  display: inline-block;
  min-width: 140px;
}

body.nossahistoria-page .page-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  isolation: auto;
  padding: 60px 0 40px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  margin-top: 0;
}

body.nossahistoria-page .page-header .hero__bg {
  display: none;
}

body.nossahistoria-page .page-header h1 {
  font-size: 2.5rem;
  color: var(--almus-verde);
  margin: 0 0 15px;
  font-weight: 700;
}

body.nossahistoria-page .page-header p {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

body.produtos-page .page-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  isolation: auto;
  padding: 60px 0 40px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  margin-top: 0;
}

body.produtos-page .page-header .hero__bg {
  display: none;
}

body.produtos-page .page-header h1 {
  font-size: 2.5rem;
  color: var(--almus-verde);
  margin: 0 0 15px;
  font-weight: 700;
}

body.produtos-page .page-header p {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === Produtos Page Specific Styles === */
body.produtos-page section.container {
  background: transparent !important;
}

body.produtos-page .produtos-centered {
  background: transparent;
}

body.produtos-page .produto-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

body.produtos-page .diferencial-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}

/* Override light green text with dark blue for better readability on produtos page */
body.produtos-page .produtos-section h2,
body.produtos-page .diferenciais-section-grid h2,
body.produtos-page .diferenciais-section h2,
body.produtos-page .diferencial-item h3,
body.produtos-page .produto-content h3,
body.produtos-page .detail-item strong,
body.produtos-page .feature,
body.produtos-page .produto-features .feature,
body.produtos-page .product-card h3,
body.produtos-page .product-card .specs-wrap h4,
body.produtos-page .product-card .applications h4,
body.produtos-page .product-card .specs dd,
body.produtos-page .product-card .badge,
body.produtos-page .product-card .specs-section h4,
body.produtos-page .product-card .applications-section h4 {
  color: var(--almus-verde-escuro) !important; /* Dark blue instead of light green */
}
body.nossahistoria-page section.container {
  background: transparent !important;
}

body.nossahistoria-page .produtos-centered {
  max-width: 1200px;
  margin: 60px auto;
}

/* Remove all custom nossa historia CSS and use default produtos styling */

body.nossahistoria-page .produtos-section .produto-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

body.nossahistoria-page .produto-content {
  text-align: center;
}

body.nossahistoria-page .produto-header-inline {
  justify-content: center;
}

body.nossahistoria-page .card-with-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-bottom: 30px;
}

body.nossahistoria-page .card-header-image {
  text-align: center;
  margin-bottom: 10px;
}

body.nossahistoria-page .card-header-image img {
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

body.nossahistoria-page .fazenda-content {
  background: transparent !important;
  padding: 60px 0;
}

body.nossahistoria-page .fazenda-cards-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

body.nossahistoria-page .fazenda-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

body.nossahistoria-page .fazenda-card h2 {
  color: var(--almus-verde);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

body.nossahistoria-page .fazenda-card p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  font-size: 1rem;
}

body.nossahistoria-page .fazenda-card p:last-child {
  margin-bottom: 0;
}

body.nossahistoria-page .fazenda-card strong {
  color: var(--almus-verde);
  font-weight: 600;
}

body.nossahistoria-page .fazenda-card em {
  color: var(--almus-azul);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 768px) {
  body.nossahistoria-page .fazenda-cards-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
  
  body.nossahistoria-page .fazenda-card {
    padding: 30px 20px;
  }
}
body.contato-page section.container {
  background: transparent !important;
}

body.contato-page section.container.contact-page {
  background: transparent !important;
  padding: 60px 20px;
}

.contact-page.container {
  background: transparent !important;
  padding: 60px 20px;
}

.contact-page .contact-container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  background: transparent;
}

.contact-page .contact-form h3 {
  color: var(--almus-verde);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.contact-page .contact-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.contact-page .contact-form label {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--almus-verde);
  font-size: 1rem;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea,
.contact-page .contact-form select {
  width: 100%;
  padding: 15px;
  margin-bottom: 5px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus,
.contact-page .contact-form select:focus {
  outline: none;
  border-color: var(--almus-verde);
  box-shadow: 0 0 0 3px rgba(var(--almus-verde-rgb), 0.1);
}

.contact-page .contact-form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.contact-page .contact-form .row > div {
  flex: 1;
}

.contact-page .contact-form button {
  background: linear-gradient(135deg, var(--almus-verde), var(--almus-azul));
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: var(--radius);
  margin-top: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.contact-page .contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.map-section {
  margin: 60px 0;
  text-align: center;
}

.map-section h2 {
  color: var(--almus-verde);
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 2rem;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
}

.map-container iframe {
  box-shadow: var(--shadow);
}

.map-note {
  margin-top: 15px;
  color: var(--ink-2);
  font-style: italic;
  font-size: 0.9rem;
}

.map-floating {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: #fff;
  padding: 4px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
@media (max-width: 700px) {
  .map-floating {
    left: 8px;
    bottom: 8px;
    width: 92vw;
    max-width: 320px;
  }
  .map-floating iframe {
    width: 100% !important;
    height: 150px !important;
  }
}

@media (max-width: 768px) {
  body.contato-page .contact-page .contact-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }
  
  body.contato-page .contact-page .contact-info {
    padding-right: 0;
    border-right: none;
    border-bottom: 2px solid var(--almus-bege);
    padding-bottom: 30px;
  }
  
  body.contato-page .contact-page .contact-form {
    padding-left: 0;
    padding-top: 0;
  }
  
  .contact-page .contact-form .row {
    flex-direction: column;
    gap: 0;
  }
}
/* === Equipe Page Specific Styles (match Contato) === */
body.equipe-page {
  background: transparent !important;
}

body.equipe-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Use the same graphic style you want site-wide */
  background-image: url('Almus_Fundo_B_Azul.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

body.equipe-page .page-header .hero__bg {
  display: none; /* keep header/page header clean like Contato */
}

body.equipe-page .page-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  isolation: auto;
  padding: 60px 0 40px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  margin-top: 0;
}
