/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #334155;
    overflow-x: hidden;
}

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

/* Cabeçalho */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.6rem 0;
}


.header.scrolled .nav-menu a:hover {
    color: #10b981;
}

.header.scrolled .hamburger span {
    background: #1e3a8a;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.whatsapp-btn {
    display: inline-flex; /* Garante alinhamento do ícone e texto */
    align-items: center;
    gap: 8px; /* Espaço entre o ícone e o texto */
    background: #10b981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.whatsapp-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;

}

        /* Botão de Emoji para ativar */
        #show-notification-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #3366FF;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            transition: transform 0.2s ease-in-out, background-color 0.2s;
             animation: pulse-animation 2s ease-in-out infinite;
        }

        #show-notification-btn:hover {
            animation-play-state: paused;
            transform: scale(1.1);
            background-color: #00ff88;
        }
        
        @keyframes pulse-animation {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        /* SEU CSS DA NOTIFICAÇÃO */
        .notification-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            border-radius: 11px;
            padding: 3px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            max-width: 320px;
            background: linear-gradient(45deg, #00ff88, #3366FF, #00ff88, #3366FF);
            background-size: 400% 400%;
            animation: lightsaber 4s ease-in-out infinite;
            transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
        }

        .notification-container.hidden {
            opacity: 0;
            transform: translateY(50px);
            pointer-events: none;
        }

        .notification-inner {
            background: white;
            color: #333;
            padding: 15px 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        @keyframes lightsaber {
            0%, 100% { background-position: 0% 50%; }
            25% { background-position: 100% 0%; }
            50% { background-position: 100% 100%; }
            75% { background-position: 0% 100%; }
        }

        .notification-content { display: flex; align-items: center; }
        .notification-icon { font-size: 1.8em; margin-right: 10px; color: #3366FF; }
        .notification-text h3 { margin: 0; font-size: 1.1em; font-weight: bold; color: #3366FF; }
        .notification-text p { margin: 2px 0 12px; /* Aumentamos a margem inferior para dar espaço ao botão */ font-size: 0.9em; opacity: 0.8; color: #666; }
        .notification-close { background: none; border: none; color: #666; font-size: 1.5em; cursor: pointer; margin-left: 15px; }

        /* ===== NOVO: CSS PARA O BOTÃO WHATSAPP ===== */
        .whatsapp-button {
            display: inline-flex;
            align-items: center;
            background-color: #25D366;
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9em;
            transition: background-color 0.2s ease;
        }

        .whatsapp-button:hover {
            background-color: #1DA851;
        }

        .whatsapp-button svg {
            width: 16px;
            height: 16px;
            margin-right: 8px;
            fill: white; /* Cor do ícone */
        }

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #10b981;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #10b981;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Menu Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 1rem;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1e3a8a;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* Seção Hero */
.hero {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6, #10b981);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* Coloca o fundo de partículas atrás do conteúdo */
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero::before {
    content: \'\';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='grain' width='100' height='100' patternUnits='userSpaceOnUse'><circle cx='50' cy='50' r='1' fill='white' opacity='0.1'/></pattern></defs><rect width='100' height='100' fill='url(%23grain)'/></svg>");
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #10b981;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: \'\';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* Seções gerais */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e3a8a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #10b981;
    border-radius: 2px;
}

/* Seção de Serviços */
.services {
    padding: 5rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {

    content: '';
    position: absolute;
    top: 0;
    left: 50%; /* Começa no centro */
    transform: translateX(-50%); /* Centraliza de fato */
    width: 0; /* Começa com largura zero (invisível) */
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #10b981);
    transition: width 0.4s ease; /* Animação para a largura */
}


.service-card:hover::before {
    width: 100%; 
}
.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.1); /* Ícone gira um pouco e aumenta */
}

.service-card:hover .service-btn {
    background: #10b981; /* Botão muda para a cor verde do tema */
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: transform 0.4s ease;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1.5rem;

}
.card-footer {
    margin-top: auto; /* EMPURRA TODO O RODAPÉ PARA O FUNDO */
    padding-top: 1rem; /* Adiciona um respiro entre a descrição e o preço */
}
.service-btn {
    width: 180px;           /* Defina uma largura fixa. Ajuste este valor! */
    min-height: 70px;       /* Garante que todos tenham pelo menos esta altura. */
    transition: all 0.3s ease;
    /* BÔNUS: Melhora o alinhamento do texto dentro do botão */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* Importante para o texto que quebra a linha */

    background: #1e3a8a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.service-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Seção de Portfólio */
.portfolio {
    padding: 5rem 0;
    background: white;
}

.portfolio-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.portfolio-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #10b981;
}

.portfolio-placeholder h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-placeholder p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 2rem;
}

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

.portfolio-info {
    text-align: center;
    color: white;
}

.portfolio-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.portfolio-tags span {
    background: #10b981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fafc;
    border-radius: 20px;
    margin-top: 2rem;
}

.portfolio-cta p {
    font-size: 1.2rem;
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Seção Por que escolher */
.why-choose {
    padding: 5rem 0;
    background: #e2e8f0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.feature p {
    color: #64748b;
    font-weight: 500;
}

/* Call-to-Action Final */
.final-cta {
    padding: 5rem 0;
    background: #1e3a8a;
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #10b981;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.cta-btn-large:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

/* Rodapé */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 2rem 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #94a3b8;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #10b981;
}

/* Responsividade */
@media (max-width: 768px) {
    .header .container {
        padding: 0 15px;
    }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 1100; 
    }
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .navbar {
        order: 2;
        display: flex;
        align-items: center;

        flex-grow: 1; 
        justify-content: flex-end;
    }
    
    .nav-menu {
        position: fixed;
        top: 55px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(30, 58, 138, 0.98);
        flex-direction: column;
        justify-content: s;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 1.5rem;
        z-index: 1050;
    }
    
    .nav-menu.active {
        left: 0;
        z-index: 1000;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
        color: white;
    }
    
    .whatsapp-btn {
        display: none;
    }


        .whatsapp-btn .whatsapp-text {
        display: none;
    }


    .hamburger {
        display: flex;
    }
    
    .header-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        order: 3;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }

    .portfolio-info {
        padding: 15px; 
    }

    .portfolio-info h3 {
        font-size: 1.3rem; 
        margin-bottom: 8px;
    }

    .portfolio-info p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .portfolio-tags span {
        font-size: 0.75rem;
        padding: 3px 8px;
        margin-top: 8px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .portfolio-item {
        margin-bottom: 1rem;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-cta {
        padding: 2rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .portfolio-info h3 {
        font-size: 1.1rem;
    }

    .portfolio-info p {
        font-size: 0.85rem;
    }
    
    .portfolio-tags {
        flex-wrap: wrap;
        gap: 5px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-btn, .cta-btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Animações suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .feature {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}



/* Animações de fade-in ao scrollar */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }


/* Animação de texto para o título */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px);
    animation: slideInUp 0.8s ease forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.3s; }
.hero-title .word:nth-child(3) { animation-delay: 0.5s; }
.hero-title .word:nth-child(4) { animation-delay: 0.7s; }
.hero-title .word:nth-child(5) { animation-delay: 0.9s; }

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

/* Animação de digitação para o subtítulo */
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Animação do botão CTA */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #10b981;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.5s;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}



/* Estilos para os novos cards de serviço detalhados */
.service-details {
    margin: 20px 0;
    text-align: left;
}

.service-details h4 {
    color: #1e3a8a;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #64748b;
}

.service-details li i {
    color: #10b981;
    margin-right: 8px;
    width: 16px;
    font-size: 0.8rem;
}

.price-breakdown {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.price-main {
    font-size: 1.1rem;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.price-main strong {
    color: #10b981;
    font-weight: 700;
}

.price-extra {
    font-size: 0.9rem;
    color: #64748b;
}

.ideal-for {
    margin: 15px 0;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #064e3b;
    text-align: left;
}

.ideal-for strong {
    color: #065f46;
}

/* Ajustes responsivos para os novos cards */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-details li {
        font-size: 0.85rem;
    }
    
    .price-breakdown {
        padding: 12px;
    }
    
    .price-main {
        font-size: 1rem;
    }
}


/* Estilos para a seção de Pacotes */
.packages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.package-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #10b981);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #10b981;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.package-card:hover .package-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
    transform: scale(1.1);
}

.package-icon i {
    font-size: 2rem;
    color: white;
}

.package-card h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-weight: 700;
}

.package-card > p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

/* Ajustes responsivos para pacotes */
@media (max-width: 768px) {
    .packages {
        padding: 60px 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .package-card {
        padding: 30px 20px;
    }
    
    .package-icon {
        width: 70px;
        height: 70px;
    }
    
    .package-icon i {
        font-size: 1.8rem;
    }
    
    .package-card h3 {
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

/* Ajustes para o grid de serviços para acomodar 7 cards */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

