/* ===== RESET E VARIÁVEIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B5CF6;
    --secondary: #3B82F6;
    --accent: #F59E0B;
    --dark: #0F172A;
    --light: #F1F5F9;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    --gradient-warm: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.2);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

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

/* ===== BOTÕES ===== */
.btn-primary,
.btn-secondary,
.btn-pacote,
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20BA5A;
}

@keyframes pulse-whatsapp {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%),
                url('../images/hero-bg.jpg') center/cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
}

.badge-urgencia {
    display: inline-block;
    background: var(--gradient-warm);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.badge-urgencia i {
    animation: fire-flicker 1.5s infinite;
}

@keyframes fire-flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* ===== ANIMAÇÕES ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up.delay-1 { animation-delay: 0.2s; }
.fade-in-up.delay-2 { animation-delay: 0.4s; }
.fade-in-up.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: #64748B;
}

/* ===== PACOTES SECTION ===== */
.pacotes-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.pacotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pacote-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pacote-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pacote-destaque {
    border: 3px solid var(--primary);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    transform: scale(1.05);
}

.pacote-premium {
    border: 3px solid var(--accent);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(234, 88, 12, 0.05) 100%);
}

.badge-destaque,
.badge-premium {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.badge-destaque {
    background: var(--gradient);
    color: var(--white);
}

.badge-premium {
    background: var(--gradient-warm);
    color: var(--white);
}

.pacote-icon {
    font-size: 60px;
    margin-bottom: 20px;
    text-align: center;
}

.pacote-nome {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark);
}

.pacote-preco {
    text-align: center;
    margin-bottom: 30px;
}

.preco-valor {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.preco-desconto {
    font-size: 16px;
    color: #94A3B8;
    text-decoration: line-through;
    display: block;
    margin-top: 5px;
}

.pacote-itens {
    list-style: none;
    margin-bottom: 30px;
}

.pacote-itens li {
    padding: 12px 0;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.pacote-itens li:last-child {
    border-bottom: none;
}

.pacote-itens i {
    color: var(--primary);
    font-size: 16px;
}

.btn-pacote {
    width: 100%;
    background: var(--gradient);
    color: var(--white);
}

.btn-pacote:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-destaque {
    background: var(--gradient);
}

.btn-premium {
    background: var(--gradient-warm);
}

.promo-banner {
    background: var(--gradient-warm);
    color: var(--white);
    padding: 25px 40px;
    border-radius: 15px;
    text-align: center;
    font-size: 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.promo-banner i {
    font-size: 24px;
}

.destaque-promo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: underline;
}

/* ===== GALERIA SECTION ===== */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.galeria-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

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

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

.sobre-subtitulo {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.sobre-descricao {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #475569;
}

.diferenciais {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.diferencial-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.diferencial-item i {
    font-size: 32px;
    color: var(--primary);
    min-width: 40px;
}

.diferencial-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.diferencial-item p {
    font-size: 15px;
    color: #64748B;
}

.sobre-imagem {
    position: relative;
}

.sobre-imagem img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.sobre-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-numero {
    font-size: 36px;
    font-weight: 800;
}

.badge-texto {
    font-size: 14px;
    margin-top: 5px;
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.depoimento-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.depoimento-stars {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 20px;
}

.depoimento-texto {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    gap: 15px;
    align-items: center;
}

.autor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.autor-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.autor-info p {
    font-size: 14px;
    color: #64748B;
}

/* ===== ORÇAMENTO SECTION ===== */
.orcamento-section {
    background: var(--light);
}

.orcamento-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.orcamento-info h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--dark);
}

.info-lista {
    list-style: none;
    margin-bottom: 30px;
}

.info-lista li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.info-lista i {
    color: var(--primary);
    font-size: 18px;
}

.urgencia-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
}

.urgencia-box i {
    font-size: 32px;
    color: var(--accent);
}

.urgencia-box strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.urgencia-box p {
    font-size: 15px;
    color: #64748B;
}

/* ===== FORMULÁRIO ===== */
.orcamento-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 15px;
}

.form-group label i {
    color: var(--primary);
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.btn-submit {
    width: 100%;
    background: #25D366;
    color: var(--white);
    font-size: 18px;
    padding: 20px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #64748B;
    margin-top: 20px;
}

.form-disclaimer i {
    margin-right: 5px;
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid #E2E8F0;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--dark);
}

.faq-question i {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #475569;
    line-height: 1.8;
    font-size: 15px;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 32px;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    font-size: 14px;
    color: #94A3B8;
    font-style: italic;
}

.footer-descricao {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #CBD5E1;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #CBD5E1;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contato {
    list-style: none;
}

.footer-contato li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #CBD5E1;
}

.footer-contato i {
    color: var(--primary);
    font-size: 18px;
    min-width: 20px;
}

.footer-contato a {
    color: #CBD5E1;
    transition: color 0.3s ease;
}

.footer-contato a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #94A3B8;
    font-size: 14px;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #CBD5E1;
    font-size: 14px;
}

.footer-payments i {
    font-size: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .pacotes-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .orcamento-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .pacote-card {
        padding: 30px 20px;
    }
    
    .promo-banner {
        font-size: 14px;
        padding: 20px;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}