/* ESTILOS GERAIS */
body { font-family: 'Lato', sans-serif; background-color: #f5f5f4; color: #1c1917; scroll-behavior: smooth; margin: 0; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, .font-serif { font-family: 'Playfair Display', serif; }
.max-w-4xl { max-width: 56rem; margin: 0 auto; }
.max-w-5xl { max-width: 64rem; margin: 0 auto; }
.max-w-6xl { max-width: 72rem; margin: 0 auto; }

/* SEÇÕES */
.section-hero { padding: 4rem 1.5rem; text-align: center; background-color: #fafaf9; border-bottom: 1px solid #f5f5f4; }
.section-profile { padding: 4rem 1.5rem; display: grid; gap: 3rem; align-items: center; }
.section-testimonials { background-color: #f5f5f4; padding: 4rem 1.5rem; text-align: center; }
.section-packages { padding: 4rem 1rem; }
@media (min-width: 768px) { .section-profile { grid-template-columns: 1fr 1fr; padding: 6rem 1.5rem; } }

/* COMPONENTES */
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #1c1917; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.btn-black { background: #1c1917; color: white; padding: 1rem 2rem; font-size: 12px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.1em; border: none; cursor: pointer; transition: 0.3s; }
.testimonial-card { transition: 0.3s; border-radius: 4px; width: 100%; max-width: 450px; margin: 0 auto; cursor: pointer; border: 4px solid white; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }

/* GRID DE PACOTES */
.package-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
.card-white { background: white; padding: 2.5rem 1.5rem; border: 1px solid #e7e5e4; text-align: center; display: flex; flex-direction: column; }
.card-black { background: #1c1917; color: #f5f5f4; padding: 3rem 1.5rem; text-align: center; display: flex; flex-direction: column; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3); }
@media (min-width: 1024px) { .package-grid { grid-template-columns: repeat(3, 1fr); } .card-black { transform: translateY(-1rem); } }
.package-list { list-style: none; padding: 0; margin: 2rem 0; font-size: 0.85rem; }
.package-list li { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px; }

/* CAIXA DE DESCONTO */
.discount-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    margin: 3rem auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}
.discount-box-title {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #166534;
    font-weight: bold;
    margin-bottom: 0.75rem;
}
.discount-box-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #15803d;
    margin-bottom: 1.5rem;
}
.btn-discount {
    background: #16a34a;
    color: white;
    padding: 1rem 2rem;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}
.btn-discount:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

/* GRID DE SERVIÇOS COMPLEMENTARES */
.complementary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}
@media (min-width: 640px) {
    .complementary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.card-complementary {
    background: #fafaf9;
    border: 1px solid #e7e5e4;
    padding: 2rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
}
.card-complementary h3 {
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    color: #57534e;
}
.complementary-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    font-size: 0.8rem;
    color: #78716c;
}
.complementary-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}
.complementary-list svg {
    width: 14px;
    height: 14px;
}

/* SEÇÃO DE SERVIÇOS COMPLEMENTARES */
.section-complementary {
    padding: 3rem 1rem 1rem;
    text-align: center;
}
.section-complementary-title {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #a8a29e;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* FORMULÁRIO E MODAIS */
#modal-lead { display: none; position: fixed; inset: 0; background: rgba(28,25,23,0.9); z-index: 200; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.lead-content { background: #fafaf9; padding: 2rem; max-width: 400px; width: 100%; position: relative; border: 1px solid #e7e5e4; }
.input-field { width: 100%; padding: 12px; margin-top: 5px; margin-bottom: 15px; border: 1px solid #e7e5e4; background: #f5f5f4; outline: none; font-size: 14px; box-sizing: border-box; }

/* BANNER DE COOKIES (LGPD) - ATUALIZADO */
#cookie-banner { 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: rgba(0,0,0,0.95); 
    padding: 1.25rem; 
    z-index: 1000; 
    color: white; 
    display: none; 
    border-top: 2px solid #333;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
}
.cookie-content { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 1rem; 
}
.cookie-content button {
    transition: all 0.2s ease;
    border-radius: 4px;
}
.cookie-content button:hover {
    background: #f5f5f4 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255,255,255,0.2);
}
@media (min-width: 768px) { 
    .cookie-content { 
        flex-direction: row; 
        justify-content: space-between; 
    } 
}

/* PERSONALIZAÇÃO FINAL */
.personalization-box { max-width: 600px; margin: 4rem auto; background: #fafaf9; padding: 2.5rem; border: 1px solid #e7e5e4; text-align: center; }
.btn-whatsapp { background: #16a34a; color: white; padding: 1rem 2rem; border: none; font-weight: bold; cursor: pointer; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; border-radius: 4px; text-decoration: none; }

/* =========================
   Callout: Serviços adicionais
   ========================= */
.addons-callout{
  padding: 18px 0 6px;
}
.addons-card{
  max-width: 760px;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  text-align: center;
}
.addons-kicker{
  font-family: var(--font-sans, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 10px;
}
.addons-headline{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  color: #111;
}
.addons-sub{
  margin: 0 auto 0;
  max-width: 62ch;
  color: rgba(0,0,0,0.7);
  font-size: 15px;
  line-height: 1.55;
}
.addons-btn{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.18);
  background: #fff;
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}
.addons-btn:hover{
  background: rgba(0,0,0,0.03);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  transform: translateY(-1px);
}
.addons-btn svg{
  width: 18px;
  height: 18px;
}
@media (max-width: 640px){
  .addons-card{ padding: 22px 16px; border-radius: 16px; }
  .addons-callout{ padding: 18px 0 6px; }
}