/* Olala Baby — Landing (layout referência anexo) */
:root {
  --bg: #FBF9F7;
  --bg-header: #f5f0f5;
  --pink-light: #fce9e7;
  --brown: #4F3C35;
  --purple: #7b6b8a;
  --green: #4CAF50;
  --green-hover: #43a047;
  --font-sans: 'Quicksand', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-hand: 'Dancing Script', cursive;
  --container: min(1100px, 100% - 2rem);
  --radius: 1rem;
  --radius-lg: 1.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--brown);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Botão WhatsApp ----- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background: var(--green-hover);
}

.btn-whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* ----- Header ----- */
.site-top {
  position: relative;
  background: url(fundo.png) no-repeat bottom center;
  background-size: cover;
  padding: 100px 0;
}

.site-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 0;
  pointer-events: none;
}

/* ----- Hero (logo à esquerda, textos à direita) ----- */
.hero {
  padding: 2rem 0 3rem;
  background: transparent;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.site-top .hero {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-logo-wrap {
    justify-content: flex-start;
  }
}

.hero-logo {
  display: block;
  flex-shrink: 0;
}

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

@media (min-width: 768px) {
  .hero-logo img {
    width: 200px;
  }
}

@media (min-width: 1024px) {
  .hero-logo img {
    width: 240px;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
  }
}

.hero-welcome {
  font-size: 1rem;
  font-weight: 500;
  color: var(--brown);
  margin: 0 0 0.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.hero-title-accent {
  font-family: var(--font-hand);
  font-style: italic;
  font-weight: 600;
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--brown);
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

/* ----- Benefícios (usado dentro da cta-strip) ----- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.benefit-card {
  text-align: center;
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--brown);
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 0.5rem;
}

.benefit-text {
  font-size: 0.9rem;
  color: var(--brown);
  margin: 0;
  opacity: 0.9;
}

/* ----- Produtos ----- */
.products {
  padding: 3rem 0;
  background: var(--bg);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--brown);
  text-align: center;
  margin: 0 0 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(252, 233, 231, 0.5);
}

.product-card-bg {
  position: absolute;
  inset: 0;
  background: var(--pink-light);
  opacity: 0.4;
}

.product-card-inner {
  position: relative;
  z-index: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: #fff;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-category {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown);
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 0.25rem;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--brown);
  margin: 0 0 0.75rem;
  opacity: 0.85;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: var(--brown);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s, opacity 0.2s;
  margin-top: 0.25rem;
}

.product-cta:hover {
  background: #3d2e28;
  opacity: 1;
}

/* ----- Instagram (prévia do perfil) ----- */
.instagram-section {
  padding: 3rem 0;
  background: var(--bg);
}

.instagram-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--brown);
  text-align: center;
  margin: 0 0 0.25rem;
}

.instagram-dots {
  text-align: center;
  color: #e6683c;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  margin: 0 0 2rem;
}

.instagram-preview {
  max-width: 320px;
  margin: 0 auto;
}

/* Card único: perfil + grid + botão */
.instagram-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.instagram-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.instagram-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.instagram-avatar-wrap::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #faf8f5;
  z-index: 0;
}

.instagram-avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  padding: 4px;
  box-sizing: border-box;
}

.instagram-username {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
}

.instagram-grid {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.instagram-grid img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #0095f6;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.instagram-follow-btn:hover {
  background: #0077c2;
  transform: scale(1.02);
}

/* ----- Depoimentos ----- */
.testimonials {
  display: none; /* seção oculta */
  padding: 3rem 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(90, 58, 58, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 0;
}

.testimonial-stars {
  color: #f4b942;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--brown);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--brown);
  opacity: 0.8;
  font-style: normal;
}

/* ----- Feito com carinho ----- */
.about {
  padding: 3rem 0;
  background: var(--pink-light);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-inner {
    grid-template-columns: auto 1fr;
    gap: 3rem;
  }
}

.about-image-wrap {
  display: flex;
  justify-content: center;
}

.about-avatar {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .about-avatar {
    width: 16rem;
    height: 16rem;
  }
}

.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 1rem;
}

.about-text {
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.6;
  margin: 0 0 1rem;
  opacity: 0.95;
}

.about-signature-visual {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brown);
  margin: 1.5rem 0 1rem;
}

.about-content .btn-whatsapp {
  margin-bottom: 1rem;
}

.about-signature {
  font-size: 0.9rem;
  color: var(--brown);
  opacity: 0.75;
  margin: 0;
}

.about-signature a {
  color: inherit;
  transition: opacity 0.2s;
}

.about-signature a:hover {
  opacity: 1;
}

/* ----- FAQ + Instagram lado a lado ----- */
.faq-instagram-section {
  padding: 3rem 0;
  background: var(--bg);
}

.faq-instagram-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .faq-instagram-wrap {
    grid-template-columns: 1fr 320px;
    gap: 3rem;
  }
}

.faq-column .section-title {
  margin-bottom: 1.5rem;
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 100%;
}

.instagram-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .instagram-column {
    padding-top: 3.75rem;
  }
}

/* ----- FAQ (estilos dos itens) ----- */

.faq-item {
  border-bottom: 1px solid rgba(79, 60, 53, 0.15);
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  margin: 0;
  padding: 1rem 0;
}

.faq-answer {
  font-size: 0.875rem;
  color: var(--brown);
  line-height: 1.6;
  margin: 0 0 1rem;
  padding: 0 0 0.5rem;
  opacity: 0.9;
}

/* ----- CTA final ----- */
.cta-strip {
  padding: 3rem 0;
  background: var(--pink-light);
}

.cta-inner {
  text-align: center;
}

.cta-benefits {
  margin-bottom: 2.5rem;
}

.cta-strip .benefit-card {
  background: transparent;
  padding: 1rem 0.5rem;
}

.cta-strip .benefit-icon {
  background: transparent;
  width: 10rem;
  height: 10rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 1.5rem;
}

.cta-title-accent {
  font-family: var(--font-hand);
  font-style: italic;
  font-weight: 600;
}

.cta-microcopy {
  font-size: 0.75rem;
  color: var(--brown);
  opacity: 0.8;
  margin: 0.5rem 0 0;
}

/* ----- Footer ----- */
.landing-footer {
  background: var(--brown);
  padding: 2rem 1rem;
  text-align: center;
}

.footer-line {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
