/* =========================================
   VELATTUS FLORES — Estilos
   ========================================= */

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

/* ---- Variáveis de cor ---- */
:root {
  --navy: #1a1f2e;
  --navy-mid: #252c3f;
  --gold: #b8914a;
  --gold-light: #d4b07a;
  --cream: #f5f0e8;
  --cream-dark: #ede6d6;
  --slate: #8b9aaa;
  --white: #ffffff;
  --text-body: #3c3c3c;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- NAV ---- */
nav {
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo span { color: var(--gold); }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 13px !important;
}

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #2a3350 0%, #1a1f2e 100%);
  opacity: 0.5;
}

.hero-left {
  padding: 80px 60px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,145,74,0.15);
  border: 1px solid rgba(184,145,74,0.3);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  width: fit-content;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  max-width: 380px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--white); }

/* Mesma ideia do .btn-ghost, mas para usar sobre fundos claros (fora do
   hero) — o branco translúcido do .btn-ghost fica quase invisível em
   cima do bege/creme das seções internas. */
.btn-ghost-dark {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-ghost-dark:hover { color: var(--navy); }

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  gap: 14px;
}

.info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 20px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-card .icon {
  width: 40px;
  height: 40px;
  background: rgba(184,145,74,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}

.info-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ---- STRIP ---- */
.strip {
  background: var(--gold);
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.strip-dot {
  width: 4px;
  height: 4px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.4;
}

/* ---- SEÇÕES GERAIS ---- */
.section { padding: 80px 40px; }

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title em { font-style: italic; }

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: #555;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.stat-box {
  padding: 20px;
  border-left: 2px solid var(--gold);
  background: var(--white);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--slate);
  margin-top: 4px;
}

.about-visual {
  background: var(--navy-mid);
  border-radius: 4px;
  padding: 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-visual h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 1px;
}

.coverage-tag {
  background: rgba(184,145,74,0.15);
  border: 1px solid rgba(184,145,74,0.25);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin: 2px;
}

/* ---- SERVICES ---- */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  margin-top: 48px;
  border: 1px solid var(--cream-dark);
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  transition: background 0.2s;
}

.service-card:hover { background: #fafaf7; }

.service-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.service-card h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.7;
}

/* ---- PLANS ---- */
.plans { background: var(--navy); }
.plans .section-title { color: var(--white); }

.plans-intro {
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin-top: 12px;
  margin-bottom: 48px;
}

.plans-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  width: fit-content;
}

.tab {
  padding: 10px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  border: none;
}

.tab.active {
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 28px 22px;
  transition: border-color 0.2s;
  cursor: pointer;
}

.plan-card:hover { border-color: rgba(184,145,74,0.3); }

.plan-card.featured {
  border-color: var(--gold);
  background: rgba(184,145,74,0.07);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.plan-name {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-period {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.plan-features li {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.plan-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

.plan-btn {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  display: block;
}

.plan-btn:hover,
.plan-card.featured .plan-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 500;
}

/* Alternância de abas dos planos */
.plans-content { display: none; }
.plans-content.active { display: block; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--cream-dark); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 4px;
  position: relative;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 16px;
  display: block;
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
}

.author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px;
}

/* ---- FAQ ---- */
.faq { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
}

.faq-q {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.faq-q::after {
  content: '+';
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.faq-a {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.7;
}

/* ---- CTA ---- */
.cta-section {
  background: var(--navy);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'VELATTUS';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 20px;
}

.cta-section .section-title { color: var(--white); }

.cta-sub {
  color: rgba(255,255,255,0.45);
  margin: 12px 0 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline {
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  border-radius: 2px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

/* ---- FOOTER ---- */
body > footer {
  background: #10141f;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-logo span {
  color: var(--gold);
  opacity: 0.6;
}

.footer-text {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
}

.footer-links a:hover { color: rgba(255,255,255,0.5); }

/* ---- UTILITÁRIOS ---- */
.divider {
  height: 1px;
  background: var(--cream-dark);
  margin: 0 40px;
}

.areas {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

/* ---- RESPONSIVE: mobile-first ---- */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 48px 20px 30px;
  }
  .hero-right {
    padding: 20px 20px 40px;
  }
  .about-grid,
  .services-grid,
  .plans-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 20px;
  }
  .strip {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 20px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 30px 20px;
  }
  .divider {
    margin: 0 20px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 12px 20px;
    gap: 12px;
    z-index: 99;
    align-items: flex-start;
  }
  .nav-links.open a {
    color: rgba(255,255,255,0.95);
    padding: 10px 0;
  }
  .nav-links.open a.nav-cta {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
    border-radius: 4px;
  }
  .hero {
    padding-bottom: 20px;
  }
  .hero-left,
  .hero-right {
    width: 100%;
  }
  .hero-actions,
  .cta-actions,
  .plans-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-ghost,
  .plan-btn {
    width: 100%;
    justify-content: center;
  }
  .info-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-visual {
    padding: 30px;
  }
  .faq-q {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-left {
    padding: 36px 16px 24px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-sub,
  .plans-intro,
  .testimonial-card p,
  .about-text p {
    font-size: 14px;
  }
  .section-title {
    font-size: 32px;
  }
  .plan-price {
    font-size: 32px;
  }
}

/* ---- DESTAQUE: FLORES E HOMENAGENS (home) ---- */
.flores-destaque { background: var(--white); }

.flores-destaque-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.flores-destaque-img {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-dark);
}

.flores-destaque-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flores-destaque-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 460px;
}

@media (max-width: 1024px) {
  .flores-destaque-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .flores-destaque-img { aspect-ratio: 16/9; }
}
