:root {
  /* Cores da Marca */
  --color-primary: #AB8057; /* Marrom */
  --color-accent: #AB8057; /* Marrom */
  --color-gray: #4F4F4F; /* Cinza */
  --color-green: #00795F; /* Verde botões */
  --color-green-light: #00956f; /* Verde hover */
  --color-bg: #fdfaf8; /* Fundo off-white com toque quente */
  --color-text: #4F4F4F;
  --color-text-light: #666666;
  --color-white: #ffffff;
  
  /* Tipografia Curada (Premium Geometric) */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Tamanhos de Fonte - Conforme Instruções do Usuário */
  --fs-title-desktop: 40px;
  --fs-subtitle-desktop: 24px;
  --fs-text-desktop: 16px;

  --fs-title-mobile: 28px;
  --fs-subtitle-mobile: 18px;
  --fs-text-mobile: 16px;

  /* Constraints de Layout */
  --max-width-desktop: 1200px;
  --max-width-mobile: 420px;
}

/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

/* Container Responsivo */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  max-width: var(--max-width-mobile); /* Por padrão, restrito ao mobile */
}

@media (min-width: 768px) {
  .container {
    max-width: var(--max-width-desktop); /* Expande no desktop */
  }
}

/* ----------------- HEADER ----------------- */
.header {
  position: absolute; /* Para ficar sobre o hero se necessário, ou fixed */
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
}

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

.logo-link {
  display: block;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: none;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
    gap: 32px;
  }
}

.nav-link {
  text-decoration: none;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-text-desktop);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-gray);
}

/* ----------------- HERO (Video Immersive + Glassmorphism) ----------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px; /* Compensa o header */
  height: calc(100vh - 80px);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 25, 23, 0.6) 0%, rgba(93, 64, 55, 0.4) 100%);
  z-index: -1;
}

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

/* Glassmorphism Effect */
.glass-panel {
  background: rgba(255, 255, 255, 0.08); /* Mais translúcido */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 24px;
  border-radius: 20px;
  text-align: center;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
  .glass-panel {
    padding: 60px 48px;
    border-radius: 32px;
  }
}

.hero-subtitle {
  font-size: var(--fs-subtitle-mobile);
  color: var(--color-white);
  letter-spacing: 1px;
  font-weight: 500;
  font-family: var(--font-heading);
}

.hero-title {
  font-size: var(--fs-title-mobile);
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: var(--fs-subtitle-desktop);
  }
  .hero-title {
    font-size: var(--fs-title-desktop);
  }
}

.cta-button {
  display: inline-block;
  background-color: var(--color-green);
  color: var(--color-white);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-text-mobile);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  margin-top: 12px;
}

.cta-button:hover {
  background-color: var(--color-green-light);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,121,95,0.3);
}

@media (min-width: 768px) {
  .cta-button {
    font-size: var(--fs-text-desktop);
  }
}

/* ----------------- SECÃO 02 (Split Assimetrico) ----------------- */
.section-intro {
  padding: 80px 0;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-intro {
    padding: 120px 0;
  }
}

.intro-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .intro-container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: var(--fs-title-mobile);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-text {
  font-size: var(--fs-text-mobile);
  color: var(--color-text-light);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--fs-title-desktop);
  }
  .section-text {
    font-size: var(--fs-text-desktop);
  }
}

/* Imagem Recortada com Float Loop (Constrain visual) */
.intro-image-wrapper {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(171, 128, 87, 0.15);
  /* Efeito de recorte e profundidade */
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), clip-path 0.6s ease;
}

.intro-image-wrapper:hover {
  transform: translateY(-10px);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.intro-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ----------------- SECÃO 03 (Benefícios - Bento Box) ----------------- */
.section-bento {
  padding: 80px 0;
  background-color: var(--color-bg);
  position: relative;
}

@media (min-width: 768px) {
  .section-bento {
    padding: 120px 0;
  }
}

.bento-title {
  font-size: var(--fs-title-mobile);
  color: var(--color-primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .bento-title {
    font-size: var(--fs-title-desktop);
    margin-bottom: 64px;
  }
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.bento-card {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid rgba(79, 79, 79, 0.08);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.bento-card:hover .bento-icon-wrapper i {
  transform: scale(1.05);
}



@media (min-width: 900px) {
  /* Card 1 */
  .bento-card:nth-child(1) {
    grid-column: span 2;
  }
  /* Card 2 */
  .bento-card:nth-child(2) {
    grid-column: span 1;
  }
  /* Card 3 */
  .bento-card:nth-child(3) {
    grid-column: span 1;
  }
  /* Card 4 */
  .bento-card:nth-child(4) {
    grid-column: span 2;
  }
}

.bento-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03; /* Textura bem sutil pedida a 10%, vou botar 3% pois esse svg é forte */
  pointer-events: none;
  z-index: 0;
}

.bento-icon-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(171, 128, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  z-index: 1;
}

.bento-icon-wrapper i {
  font-size: 32px;
  color: var(--color-primary);
  transition: transform 0.4s ease;
}

.bento-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-gray);
  margin-bottom: 12px;
  z-index: 1;
}

.bento-card-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
  z-index: 1;
}

/* ----------------- SECÃO 04 (Prova Social - Coverflow) ----------------- */
.section-social {
  padding: 80px 0 0 0; /* Tarja preta foi removida, tirando o background extra inferior */
  background-color: var(--color-bg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-social {
    padding: 120px 0;
  }
}

.social-header {
  margin-bottom: 48px;
}

.social-title {
  font-size: var(--fs-title-mobile);
  color: var(--color-primary);
  font-weight: 800;
  text-align: center;
}

@media (min-width: 768px) {
  .social-title {
    font-size: var(--fs-title-desktop);
  }
}

.social-carousel-container {
  width: 100%;
  padding-bottom: 40px;
  overflow: visible; /* Bleed */
}

/* Swiper custom styles */
.feedback-swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.feedback-swiper .swiper-slide {
  width: auto;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
  opacity: 0.3;
  filter: blur(3px);
  transform: scale(0.9);
}

.feedback-swiper .swiper-slide-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  z-index: 2;
}

.feedback-img {
  width: auto;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ----------------- SECÃO 05 (Inspiração) ----------------- */
.section-inspiracao {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #7A5B42 0%, #4A3525 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-inspiracao {
    padding: 140px 0;
  }
}

.inspiracao-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .inspiracao-container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.inspiracao-content {
  text-align: left;
  align-items: flex-start;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.inspiracao-title {
  font-size: var(--fs-title-mobile);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-heading);
}

@media (min-width: 768px) {
  .inspiracao-title {
    font-size: var(--fs-title-desktop);
  }
}

.inspiracao-text {
  font-size: var(--fs-text-mobile);
  color: rgba(255,255,255,0.9);
}

@media (min-width: 768px) {
  .inspiracao-text {
    font-size: var(--fs-text-desktop);
  }
}

.inspiracao-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.insp-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

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

/* ----------------- SECÃO 06 (Catálogo - Spotlight) ----------------- */
.section-catalogo {
  padding: 100px 0;
  background-color: var(--color-green);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.catalogo-spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--color-green-light) 0%, transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.catalogo-container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.catalogo-title {
  font-size: var(--fs-title-mobile);
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.catalogo-text {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .catalogo-title {
    font-size: 36px;
  }
}

.cta-button-inverse {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-green);
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
}

.cta-button-inverse:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/* ----------------- SECÃO 07 (Quem Somos) ----------------- */
.section-quemsomos {
  padding: 100px 0;
  background-color: var(--color-bg);
  position: relative;
}

@media (min-width: 768px) {
  .section-quemsomos {
    padding: 140px 0;
  }
}

.qs-title {
  font-family: var(--font-heading);
  font-size: var(--fs-title-mobile);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .qs-title {
    font-size: var(--fs-title-desktop);
    margin-bottom: 60px;
  }
}

.qs-part1 {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qs-part1 p, .qs-text-wrapper p {
  font-size: 18px;
  color: var(--color-gray);
  line-height: 1.7;
}

.qs-part2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .qs-part2 {
    grid-template-columns: 5fr 7fr;
    gap: 80px;
  }
}

.qs-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(171, 128, 87, 0.15);
}

.qs-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.qs-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ----------------- SECÃO 09 (Portfólio - Masonry) ----------------- */
.section-portfolio {
  padding: 100px 0;
  background-color: var(--color-white);
  position: relative;
  /* Cursor vai ficar 'none' aqui via JS on hover para mostrar o custom */
}

.portfolio-header {
  margin-bottom: 60px;
  text-align: center;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-gray);
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .portfolio-title {
    font-size: 36px;
  }
}

.portfolio-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.badge {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

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

.portfolio-detail {
  text-align: center;
  padding: 24px 16px;
  border-radius: 16px;
  background: rgba(171, 128, 87, 0.05);
  border: 1px solid rgba(171, 128, 87, 0.1);
}

.portfolio-detail h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.portfolio-detail p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: var(--max-width-desktop);
  margin: 0 auto;
  padding: 0 24px;
}

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

@media (min-width: 1024px) {
  .portfolio-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.portfolio-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}

.portfolio-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-card:hover .portfolio-thumb {
  transform: scale(1.08);
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

/* ----------------- SECÃO 10 (Conhecimento - Broken Grid) ----------------- */
.section-knowledge {
  padding: 100px 0;
  background-color: #F8F4F0; /* Cor suave pedida (mais quente/elegante que original) */
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-knowledge {
    padding: 140px 0;
  }
}

.knowledge-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(80px, 15vw, 250px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(171, 128, 87, 0.2); 
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.knowledge-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
  align-items: center;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
}

.kg-row {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 16px;
  height: 220px; /* Mobile height */
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 16px; /* Explicit gap between rows */
}

.kg-row:last-child {
  margin-bottom: 0;
}

.kg-row:nth-child(2) {
  grid-template-columns: 4fr 6fr;
}

@media (min-width: 768px) {
  .kg-row {
    height: 320px; /* Desktop height */
    gap: 20px;
    margin-bottom: 20px;
  }
}

.kg-wide,
.kg-narrow {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.kg-row img:hover {
  transform: scale(1.05);
}

.knowledge-content {
  text-align: center;
  max-width: 800px;
}

.knowledge-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-gray);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .knowledge-title {
    font-size: 32px;
  }
}

.knowledge-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .knowledge-text {
    font-size: 18px;
  }
}

/* ----------------- SECÃO 11 (Contato - Mapa Bleed) ----------------- */
.section-contact {
  padding-top: 100px;
  background-color: var(--color-white);
  text-align: center;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: var(--fs-title-mobile);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-gray);
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 32px;
  }
  .contact-text {
    font-size: 20px;
  }
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--color-primary);
}

.contact-link i {
  color: var(--color-primary);
  font-size: 24px;
}

.map-wrapper {
  width: 100%;
  height: 400px;
  filter: grayscale(0.5) contrast(1.1);
  line-height: 0;
}

/* ----------------- RODAPÉ (Minimal Escuro) ----------------- */
.footer {
  background: linear-gradient(135deg, #7A5B42 0%, #4A3525 100%);
  color: var(--color-white);
  padding: 80px 0 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 32px;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .footer-title {
    margin-bottom: 0;
    width: 100%; /* forces new line if needed, but flex-direction might need adjustment */
  }
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .footer-social {
    margin-bottom: 0;
  }
}

.social-link {
  color: var(--color-white);
  font-size: 32px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  color: var(--color-primary);
  transform: rotate(-10deg) scale(1.1);
  background: rgba(171, 128, 87, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 60px;
  }
}

.ascendyn-link {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.ascendyn-link:hover {
  opacity: 0.8;
}

/* ----------------- WHATSAPP FLUTUANTE ----------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsapp-entrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both,
             whatsapp-pulse 2s ease-in-out 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@keyframes whatsapp-entrance {
  0% {
    opacity: 0;
    transform: scale(0) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}
