:root {
    --primary: #1e2a5e;
    --primary-dark: #141d42;
    --primary-light: #eef0f8;
    --secondary: #c9a227;
    --secondary-light: #f4b342;
    --accent: #ffd166;
    --dark: #0f1628;
    --dark-soft: #1a2340;
    --gray: hsl(220, 15%, 50%);
    --gray-light: hsl(220, 15%, 95%);
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, var(--primary), #2d3a7a);
    --gradient-2: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-gold: linear-gradient(135deg, var(--secondary), var(--accent));
    --shadow-sm: 0 2px 8px hsla(220, 60%, 10%, 0.1);
    --shadow-md: 0 4px 16px hsla(220, 60%, 10%, 0.15);
    --shadow-lg: 0 8px 32px hsla(220, 60%, 10%, 0.2);
    --shadow-xl: 0 16px 48px hsla(220, 60%, 10%, 0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* HEADER */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: hsla(0, 0%, 100%, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
}

.nav-logo {
    display: flex; align-items: center; gap: 0.6rem;
    background: var(--primary);
    padding: 0.5rem;
    border-radius: 14px;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-brand {
    display: flex; flex-direction: column; line-height: 1.1;
}

.logo-casal {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; font-size: 1.3rem;
    color: var(--primary);
}

.logo-help {
    font-family: 'Poppins', sans-serif;
    font-weight: 900; font-size: 1.3rem;
    color: var(--secondary);
    font-style: italic;
}

.nav-menu { display: flex; gap: 1.75rem; list-style: none; }

.nav-link {
    color: var(--dark); text-decoration: none;
    font-weight: 500; transition: color 0.3s;
    position: relative; font-size: 0.95rem;
}

.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
.nav-cta { margin-left: 0.5rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 25px; height: 3px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* BUTTONS */
.btn-primary, .btn-secondary, .btn-whatsapp {
    display: inline-block; padding: 0.875rem 2rem;
    border-radius: 12px; font-weight: 600;
    text-decoration: none; transition: all 0.3s ease;
    border: none; cursor: pointer;
    font-family: inherit; font-size: 1rem;
}

.btn-primary { background: var(--gradient-2); color: var(--white); box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: var(--gray-light); color: var(--dark); }
.btn-secondary:hover { background: var(--dark); color: var(--white); }
.btn-whatsapp { background: hsl(142, 70%, 49%); color: var(--white); }
.btn-whatsapp:hover { background: hsl(142, 70%, 40%); transform: translateY(-2px); }
.btn-large { padding: 1.125rem 2.5rem; font-size: 1.125rem; }

/* HERO */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 90px;
    background: linear-gradient(135deg, #eef0f8 0%, #fdf6e3 100%);
    position: relative; overflow: hidden;
}

.hero::before {
    content: ''; position: absolute; top: -30%; right: -15%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, hsla(37, 80%, 60%, 0.18) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.15); opacity: 0.6; } }

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

.hero-badge {
    display: inline-block; padding: 0.5rem 1.25rem;
    background: var(--white); border-radius: 50px;
    font-size: 0.9rem; font-weight: 600;
    color: var(--primary); box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem; border: 1px solid hsla(37, 80%, 60%, 0.3);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem; font-weight: 800;
    line-height: 1.1; margin-bottom: 1.25rem;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-description { font-size: 1.15rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.8; }

.hero-services-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.hero-services-badges span {
    padding: 0.4rem 1rem; background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    color: var(--primary); box-shadow: var(--shadow-sm);
}

.badge-link {
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
}

.badge-link:hover { transform: translateY(-3px); }
.badge-link:hover span {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* FOTO REAL - SEÇÃO SOBRE */
.sobre-tagline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sobre-foto-wrapper {
    text-align: center;
}

.sobre-foto-real {
    width: 100%;
    max-width: 360px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--secondary);
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.sobre-foto-caption {
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    font-size: 0.95rem;
    font-style: italic;
}

.hero-buttons { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 2.5rem; }
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--secondary); font-family: 'Poppins', sans-serif; }
.stat-label { font-size: 0.9rem; color: var(--gray); }

.hero-card {
    background: transparent;
    border-radius: 24px;
    padding: 0;
    box-shadow: none;
}

.hero-card.floating { animation: floating 6s ease-in-out infinite; }
@keyframes floating { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-18px); } }
.hero-card img { width: 100%; height: auto; border-radius: 16px; display: block; }

/* SECTION COMMON */
section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }

.section-badge {
    display: inline-block; padding: 0.5rem 1.25rem;
    background: var(--primary-light); color: var(--primary);
    border-radius: 50px; font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem;
}

.section-title { font-family: 'Poppins', sans-serif; font-size: 2.75rem; font-weight: 700; margin-bottom: 1rem; color: var(--dark); }
.section-description { font-size: 1.125rem; color: var(--gray); max-width: 600px; margin: 0 auto; }

/* SOBRE */
.sobre { background: var(--white); }

.sobre-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.sobre-text p { font-size: 1.05rem; color: var(--gray); line-height: 1.8; }
.sobre-text .section-badge { display: inline-block; margin-bottom: 1rem; }
.sobre-text .section-title { text-align: left; margin-bottom: 1rem; }

.sobre-destaque { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.destaque-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1rem; background: var(--primary-light); border-radius: 12px; font-weight: 500; font-size: 0.95rem; color: var(--dark); }
.destaque-icon { font-size: 1.25rem; }

.tagline-card {
    background: var(--gradient-1); color: var(--white);
    padding: 3rem; border-radius: 24px;
    text-align: center; box-shadow: var(--shadow-xl);
}

.tagline-text { font-family: 'Poppins', sans-serif; font-size: 1.75rem; font-weight: 700; line-height: 1.4; margin-bottom: 1.5rem; }
.tagline-assinatura { font-size: 1rem; opacity: 0.8; font-style: italic; }

/* SERVIÇOS */
.servicos { background: var(--gray-light); }

.servicos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.servico-card {
    background: var(--white); padding: 2.5rem;
    border-radius: 20px; box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; overflow: hidden;
}

.servico-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px; background: var(--gradient-2);
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}

.servico-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.servico-card:hover::before { transform: scaleX(1); }

.servico-card.featured { background: var(--gradient-2); color: var(--white); }

.servico-badge {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: var(--accent); color: var(--dark);
    padding: 0.375rem 0.875rem; border-radius: 20px;
    font-size: 0.75rem; font-weight: 700;
}

.servico-icon { font-size: 3rem; margin-bottom: 1.5rem; display: block; }
.servico-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; margin-bottom: 1rem; }
.servico-card p { margin-bottom: 1.5rem; opacity: 0.9; font-size: 1.05rem; }
.servico-features { list-style: none; }
.servico-features li { padding: 0.5rem 0; opacity: 0.9; font-size: 1.05rem; }

/* BENEFÍCIOS */
.beneficios-content { max-width: 1000px; margin: 0 auto; }

.beneficio-destaque {
    background: linear-gradient(135deg, #f0fdf4, #eef0f8);
    padding: 3rem; border-radius: 24px; margin-bottom: 3rem; text-align: center;
}

.beneficio-icon-large { font-size: 4rem; margin-bottom: 1.5rem; }
.beneficio-destaque h3 { font-family: 'Poppins', sans-serif; font-size: 2rem; margin-bottom: 1.5rem; color: var(--dark); }
.beneficio-destaque p { font-size: 1.125rem; color: var(--gray); margin-bottom: 2rem; }

.beneficio-list { list-style: none; text-align: left; max-width: 700px; margin: 0 auto; }
.beneficio-list li { padding: 1rem; background: var(--white); border-radius: 12px; margin-bottom: 1rem; box-shadow: var(--shadow-sm); }

.beneficios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 4rem; }

.beneficio-card { background: var(--white); padding: 2rem; border-radius: 20px; box-shadow: var(--shadow-md); transition: transform 0.3s ease; }
.beneficio-card:hover { transform: translateY(-5px); }
.beneficio-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.beneficio-card h4 { font-family: 'Poppins', sans-serif; font-size: 1.25rem; margin-bottom: 1rem; color: var(--dark); }

.manutencao-frequencia { background: var(--dark); color: var(--white); padding: 3rem; border-radius: 24px; text-align: center; }
.manutencao-frequencia h3 { font-family: 'Poppins', sans-serif; font-size: 2rem; margin-bottom: 2.5rem; }

.frequencia-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.frequencia-item { background: var(--dark-soft); padding: 2rem; border-radius: 16px; border: 2px solid transparent; }
.frequencia-item.highlighted { border-color: var(--secondary); background: linear-gradient(135deg, hsla(201, 54%, 30%, 0.3), hsla(37, 80%, 40%, 0.2)); }
.frequencia-periodo { display: block; font-size: 1.5rem; font-weight: 700; color: var(--secondary); margin-bottom: 1rem; font-family: 'Poppins', sans-serif; }

/* DEPOIMENTOS */
.depoimentos { background: var(--gray-light); }
.depoimentos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.depoimento-card { background: var(--white); padding: 2.5rem; border-radius: 20px; box-shadow: var(--shadow-md); transition: transform 0.3s ease; }
.depoimento-card:hover { transform: translateY(-5px); }
.depoimento-rating { font-size: 1.25rem; margin-bottom: 1.5rem; }
.depoimento-texto { font-size: 1.1rem; line-height: 1.7; color: var(--gray); margin-bottom: 2rem; font-style: italic; }
.depoimento-autor { display: flex; align-items: center; gap: 1rem; }
.autor-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--gradient-2); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.25rem; }
.autor-info { display: flex; flex-direction: column; }
.autor-nome { font-weight: 600; color: var(--dark); font-size: 1.05rem; }
.autor-local { font-size: 0.95rem; color: var(--gray); }

/* AGENDAR */
.agendar { background: var(--gradient-2); color: var(--white); }
.agendar-card { text-align: center; padding: 2rem; }
.agendar-content h2 { font-family: 'Poppins', sans-serif; font-size: 2.5rem; margin-bottom: 1.5rem; }
.agendar-content p { font-size: 1.125rem; margin-bottom: 2.5rem; opacity: 0.95; }
.agendar-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.agendar-garantia { font-size: 0.95rem; opacity: 0.9; }

/* CONTATO */
.contato-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contato-info h3 { font-family: 'Poppins', sans-serif; font-size: 2rem; margin-bottom: 0.5rem; }
.contato-info > p { color: var(--gray); margin-bottom: 2rem; }
.contato-items { margin-bottom: 2rem; }
.contato-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contato-icon { font-size: 1.5rem; }
.contato-label { display: block; font-size: 0.875rem; color: var(--gray); margin-bottom: 0.25rem; }
.contato-item a { color: var(--primary); text-decoration: none; font-weight: 600; }
.social-links { display: flex; gap: 1rem; }
.social-link { width: 50px; height: 50px; border-radius: 50%; background: var(--gradient-2); color: var(--white); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.3s ease; }
.social-link:hover { transform: translateY(-3px); }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 1rem; border: 2px solid var(--gray-light); border-radius: 12px; font-family: inherit; font-size: 1rem; transition: border-color 0.3s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--secondary); }
.form-group textarea { resize: vertical; }

/* FOOTER */
.footer { background: var(--dark); color: var(--white); padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--gray); line-height: 1.8; margin-top: 0.75rem; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.footer-links h4, .footer-servicos h4 { font-family: 'Poppins', sans-serif; margin-bottom: 1.5rem; color: var(--secondary); }
.footer-links ul, .footer-servicos ul { list-style: none; }
.footer-links li, .footer-servicos li { margin-bottom: 0.75rem; color: var(--gray); }
.footer-links a { color: var(--gray); text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--secondary); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--dark-soft); color: var(--gray); }

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: hsl(142, 70%, 49%); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 2rem;
    box-shadow: var(--shadow-lg); z-index: 999;
    animation: pulse-wa 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 0 0 0 hsla(142, 70%, 49%, 0.7); } 50% { box-shadow: 0 0 0 15px hsla(142, 70%, 49%, 0); } }

/* RESPONSIVE */
@media (max-width: 968px) {
    .nav-menu { position: fixed; top: 75px; left: -100%; width: 100%; background: var(--white); flex-direction: column; padding: 2rem; box-shadow: var(--shadow-lg); transition: left 0.3s ease; }
    .nav-menu.active { left: 0; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; flex-direction: column; align-items: center; }
    .hero-stats { justify-content: center; }
    .hero-services-badges { justify-content: center; }
    .sobre-content { grid-template-columns: 1fr; }
    .sobre-destaque { grid-template-columns: 1fr; }
    .contato-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .hero-stats { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
}
