:root {
  /* Color Palette - Instagram @lianeboiron.adv Inspired */
  --primary: #994818;
  /* Deep Coffee Brown */
  --secondary: #8E4B2C;
  /* Terracotta */
  --accent: #D4AF37;
  /* Gold */
  --text-main: #2C1E18;
  --text-muted: #6B5E59;
  --text-light: #FDFBF8;
  --bg-light: #FDFBF8;
  /* Off-White / Cream */
  --bg-dark: #493a33;
  --white: #FFFFFF;
  --glass: rgba(142, 75, 44, 0.05);
  --glass-border: rgba(142, 75, 44, 0.1);
  --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  --shadow: 0 10px 30px -15px rgba(44, 30, 24, 0.3);
}

.hero-info-support {
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

.hero-info-support p {
  margin: 5px 0;
}

.hero-info-support i {
  margin-right: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Header & Nav --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--glass-border);
}

header.scrolled {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #C19B86;
  text-decoration: none;
  transition: var(--transition);
}

.logo-custom:hover {
  transform: scale(1.02);
}

.logo-custom .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
}

.logo-custom .logo-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}

.logo-custom .logo-line {
  flex-grow: 1;
  height: 1px;
  background-color: #C19B86;
  opacity: 0.6;
}

.logo-custom .logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  letter-spacing: 6px;
  color: #C19B86;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a:hover {
  color: var(--secondary);
}

.btn-cta {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-cta:hover {
  background: rgba(197, 160, 33, 0.1);
}

.btn-primary {
  background: var(--accent);
  color: var(--text-main);
  padding: 15px 35px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 4px 14px 0 rgba(212, 175, 55, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #C5A021;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  padding: 15px 35px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  background: #1EBD5A;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* --- Footer --- */
.footer {
  background-color: #000000;
  color: var(--text-light);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-block h3,
.footer-block h4 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  margin-bottom: 15px;
}

.footer-block p {
  font-size: 0.9rem;
  color: #D1CAC7;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 0.8rem;
  color: #888;
}

.footer-copy {
  font-size: 0.8rem;
  color: #666;
}

/* --- WhatsApp Button --- */
/* --- Benefits Section --- */
.benefits {
  background-color: var(--bg-light);
  padding: 120px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: var(--white);
  padding: 40px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
  transition: var(--transition);
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(44, 30, 24, 0.1);
}

.benefit-card h3 {
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background-color: #994818;
  color: var(--text-light);
}

.hero::before {
  content: '"';
  position: absolute;
  top: 15%;
  left: 5%;
  font-family: 'Playfair Display', serif;
  font-size: 25rem;
  color: rgba(142, 75, 44, 0.05);
  line-height: 1;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  color: var(--secondary);
  font-size: 1.1rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.05;
  margin-bottom: 30px;
  color: var(--white);
}

.hero-content p {
  font-size: 1.1rem;
  color: #D1CAC7;
  margin-bottom: 35px;
  max-width: 540px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 90%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 30px 30px 0 -2px var(--secondary);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.hero-image:hover img {
  transform: translate(-10px, -10px);
  box-shadow: 40px 40px 0 -2px var(--secondary);
}

/* --- About Section --- */
.section {
  padding: 140px 0;
}

.section-alt {
  background: rgba(142, 75, 44, 0.03);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.large-title {
  font-size: 3rem;
}

.section-title .underline {
  width: 80px;
  height: 3px;
  background: var(--secondary);
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about-grid-centered {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-grid-centered .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.about-grid-centered .underline {
  margin: 0 auto;
  width: 60px;
}

.about-grid-centered .stats {
  justify-content: center;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stats-centered {
  margin-top: 40px;
  justify-content: center;
}

.stat-card {
  background: var(--glass);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  text-align: center;
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.icon-specialty {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.section-overlap {
  padding: 100px 0;
}

/* --- Services --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.services-grid .service-card:first-child {
  grid-column: 1 / -1;
  /* Faz o primeiro cartão ocupar todas as 3 colunas (linha inteira) */
}

.service-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 4px;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  color: var(--text-main);
  box-shadow: 0 4px 20px rgba(44, 30, 24, 0.05);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(44, 30, 24, 0.1);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonials-subtitle {
  color: var(--text-main);
  max-width: 700px;
  margin: 20px auto 0;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  position: relative;
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
  color: var(--text-main);
  font-size: 1rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* --- Contact & Forms --- */
.contact-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.title-left {
  text-align: left;
  margin-bottom: 20px;
}

.title-left .underline {
  margin: 0;
  width: 60px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-description {
  margin-bottom: 30px;
  color: var(--text-muted);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-method i {
  color: var(--secondary);
  font-size: 1.5rem;
}

.maps-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
  text-decoration: underline;
}

.maps-link:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-maps-link {
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 5px;
  display: inline-block;
  text-decoration: underline;
}

.footer-maps-link:hover {
  text-decoration: none;
  filter: brightness(1.2);
}

.footer-social {
  margin-top: 25px;
}

.footer-social a {
  color: var(--accent);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  /* Since the footer block alignment is center in media queries */
}

.footer-social a:hover {
  color: var(--white);
}

@media (min-width: 969px) {
  .footer-social a {
    justify-content: flex-start;
    margin-left: 15px;
  }
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: rgba(44, 30, 24, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  color: var(--text-main);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
}

.btn-full {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* --- Footer --- */
footer {
  padding: 50px 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  background-color: #000000;
  color: var(--text-light);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-links a {
  font-size: 1.5rem;
  color: #D1CAC7;
}

.footer-copy {
  font-size: 0.9rem;
  color: #D1CAC7;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: #A49A96;
  margin-top: 10px;
}

/* --- Floating WhatsApp --- */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 968px) {

  /* Global */
  body {
    overflow-x: hidden;
    width: 100%;
  }

  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .section {
    padding: 60px 0;
  }

  .benefits {
    padding: 60px 0;
  }

  .container,
  .container-wide {
    padding: 0 20px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  /* All grid layouts go single column */
  .hero-grid,
  .about-grid,
  .about-grid-centered,
  .grid-2,
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  /* ---- Header ---- */
  header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
  }

  header.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 12px rgba(44, 30, 24, 0.1);
  }

  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .nav-links {
    display: none !important;
  }

  .logo-custom .logo-name {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  .logo-custom .logo-title {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }

  .logo-custom .logo-sub {
    margin-top: 5px;
  }

  .btn-cta {
    padding: 7px 14px;
    font-size: 0.72rem;
    letter-spacing: 0;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ---- Hero ---- */
  .hero {
    padding-top: 90px;
    padding-bottom: 50px;
    min-height: 0;
    overflow: hidden;
  }

  .hero::before {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 1rem;
    margin: 16px auto 24px;
    max-width: 100%;
  }

  .hero-tag {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .hero-info-support {
    font-size: 0.82rem;
    margin-bottom: 20px;
  }

  .hero-image {
    justify-content: center;
    margin-top: 30px;
  }

  .hero-image img {
    width: 85%;
    box-shadow: 10px 10px 0 -2px var(--secondary);
  }

  .cta-group {
    display: flex;
    justify-content: center;
  }

  .btn-primary {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  /* ---- Section Titles ---- */
  .section-title h2,
  .section-title h2.large-title {
    font-size: 1.7rem;
  }

  .large-title {
    font-size: 1.7rem !important;
    line-height: 1.3;
  }

  /* ---- Benefits ---- */
  .benefit-card {
    padding: 30px 25px;
    text-align: left;
  }

  /* ---- Services ---- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px 25px;
    text-align: left;
  }

  .service-card:nth-child(even) {
    transform: translateY(0);
  }

  /* ---- About ---- */
  .about-image-wrapper {
    margin-bottom: 20px;
  }

  .about-content {
    text-align: left;
  }

  .about-content .section-title {
    text-align: left;
  }

  /* ---- Testimonials ---- */
  .testimonial-card {
    text-align: left;
  }

  .testimonials-subtitle {
    text-align: center;
  }

  /* ---- Contact ---- */
  .contact-form {
    padding: 25px 20px;
  }

  .contact-method {
    text-align: left;
    justify-content: flex-start;
  }

  .contact-methods {
    margin-bottom: 30px;
    text-align: left;
  }

  .maps-link {
    justify-content: flex-start;
  }

  .contact-info h3 {
    font-size: 1.4rem;
  }

  /* ---- Footer ---- */
  .footer {
    padding: 50px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
  }

  .footer-block:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-social a {
    justify-content: center;
    margin-left: 0;
  }

  .footer-disclaimer {
    font-size: 0.78rem;
    padding: 0 15px;
  }

  /* ---- WhatsApp Float ---- */
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
}

/* ---- Small phones (< 480px) ---- */
@media (max-width: 480px) {

  .container,
  .container-wide {
    padding: 0 16px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-image img {
    width: 100%;
    box-shadow: none;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .large-title {
    font-size: 1.5rem !important;
  }

  .logo span {
    font-size: 0.85rem;
  }

  .logo i {
    font-size: 1rem;
  }

  .btn-cta {
    padding: 6px 10px;
    font-size: 0.68rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-block {
    text-align: center;
  }

  .footer-maps-link,
  .footer-social a {
    justify-content: center;
    margin-left: 0;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .service-card {
    padding: 25px 20px;
  }
}