/* ===== HOME DEFERRED CSS ===== */
/* Non-critical styles loaded async — below the fold */

/* ===== UTILITIES ===== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 42px);
  color: #7B2D3B;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: #4A2030;
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 48px;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: #D4A853;
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SOBRE ===== */
.sobre {
  padding: 100px 0;
  background: #FDF8F5;
}

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

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

.sobre-images img:first-child {
  grid-column: 1 / -1;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 40px rgba(123, 45, 59, 0.1);
}

.sobre-images img:last-child {
  grid-column: 1 / -1;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 10px 30px rgba(123, 45, 59, 0.1);
  margin: -40px auto 0;
  border: 4px solid #FDF8F5;
  position: relative;
  z-index: 1;
}

.sobre-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 38px);
  color: #7B2D3B;
  margin-bottom: 8px;
}

.sobre-text .greeting {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  color: #8B6914;
  margin-bottom: 4px;
}

.sobre-text p {
  margin-bottom: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.sobre-text .crn-badge {
  display: inline-block;
  background: #F5E0E4;
  color: #7B2D3B;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* ===== MÉTODO ===== */
.metodo {
  padding: 100px 0;
  background: linear-gradient(180deg, #F5E0E4 0%, #FDF8F5 100%);
}

.metodo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.metodo-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(123, 45, 59, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.metodo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(123, 45, 59, 0.12);
}

.metodo-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: #F5E0E4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metodo-icon svg {
  width: 28px;
  height: 28px;
  color: #7B2D3B;
}

.metodo-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #7B2D3B;
  margin-bottom: 12px;
}

.metodo-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.metodo-image {
  text-align: center;
}

.metodo-image img {
  max-width: 100%;
  width: 600px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(123, 45, 59, 0.1);
}

/* ===== SERVIÇOS ===== */
.servicos {
  padding: 100px 0;
  background: #FDF8F5;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.servico-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(123, 45, 59, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(123, 45, 59, 0.12);
}

.servico-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 16px 16px 0 0;
}

.servico-card-body {
  padding: 28px;
}

.servico-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #7B2D3B;
  margin-bottom: 12px;
}

.servico-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 100px 0;
  background: linear-gradient(180deg, #FDF8F5 0%, #F5E0E4 100%);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.depoimento-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(123, 45, 59, 0.06);
  position: relative;
}

.depoimento-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: #F5E0E4;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.depoimento-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.depoimento-author {
  font-size: 14px;
  font-weight: 600;
  color: #7B2D3B;
}

.depoimento-stars {
  color: #D4A853;
  font-size: 14px;
  margin-top: 4px;
  letter-spacing: 2px;
}

.depoimento-source {
  display: block;
  font-size: 12px;
  color: #aaa;
  margin-top: 8px;
  font-weight: 400;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: #FDF8F5;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #F5E0E4;
}

.faq-item details {
  padding: 0;
}

.faq-item summary {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #3D1525;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #7B2D3B;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item details[open] summary::after {
  content: '−';
}

.faq-item .faq-answer {
  padding: 0 0 20px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #4A2030;
}

/* ===== LOCALIZAÇÃO ===== */
.localizacao {
  padding: 100px 0;
  background: linear-gradient(180deg, #F5E0E4 0%, #FDF8F5 100%);
}

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

.localizacao-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(123, 45, 59, 0.1);
  aspect-ratio: 4 / 3;
}

.localizacao-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.localizacao-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #7B2D3B;
  margin-bottom: 20px;
}

.localizacao-info p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 12px;
}

.localizacao-info strong {
  font-weight: 600;
  color: #3D1525;
}

.localizacao-info .btn-outline {
  margin-top: 20px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 1100;
  width: 60px;
  height: 60px;
  background: #1A7F3F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ===== FOOTER ===== */
.footer {
  background: #3D1525;
  color: #F5E0E4;
  padding: 60px 0 28px;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245, 224, 228, 0.12);
}

.footer-heading {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #D4A853;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-sitemap-col a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #F5E0E4;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-sitemap-col a:hover { color: #D4A853; }

.footer-logo {
  display: block;
  height: 32px;
  width: auto;
  opacity: 0.9;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  font-size: 13px;
  font-weight: 300;
  color: #C4A0A8;
}

/* ===== RESPONSIVE (below the fold) ===== */
@media (max-width: 1024px) {
  .metodo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sobre { padding: 60px 0 80px; margin-bottom: 0; }
  .metodo { padding: 60px 0; }
  .servicos { padding: 60px 0; }
  .depoimentos { padding: 60px 0; }
  .faq { padding: 60px 0; }
  .localizacao { padding: 60px 0; }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-text { text-align: center; }
  .sobre-text .gold-line { margin: 16px auto; }

  .sobre-images { max-width: 400px; margin: 0 auto; }

  .metodo-grid { gap: 20px; }

  .servicos-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 20px; }

  .servico-card-body { padding: 24px 20px; }

  .depoimentos-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 20px; }
  .depoimento-card { padding: 32px 24px; }

  .localizacao-inner { grid-template-columns: 1fr; }

  .footer-sitemap { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .footer { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .metodo-grid { grid-template-columns: 1fr; }

  .metodo-card { padding: 32px 20px; }

  .metodo-icon { margin: 0 auto 16px; }

  .servico-card-body { padding: 20px; }
}
