/* Hero Section */
.hero-servicos {
    background: linear-gradient(135deg, #004d99 0%, #0066cc 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Efeito de Partículas */
.particles-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.particle {
    position: absolute !important;
    width: 6px !important;
    height: 6px !important;
    background: var(--accent-color) !important;
    border-radius: 50% !important;
    opacity: 0.5 !important;
    pointer-events: none !important;
    animation: particleFloat 8s infinite ease-in-out !important;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(50px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(100px, 0) scale(1);
        opacity: 0.5;
    }
    75% {
        transform: translate(50px, 30px) scale(1.2);
        opacity: 0.8;
    }
}

.particle:nth-child(2n) {
    animation-duration: 12s !important;
    animation-delay: -1s !important;
}

.particle:nth-child(3n) {
    animation-duration: 10s !important;
    animation-delay: -3s !important;
}

.particle:nth-child(4n) {
    animation-duration: 14s !important;
    animation-delay: -2s !important;
}

.hero-servicos .container {
    position: relative;
    z-index: 2;
}

.hero-servicos h1,
.hero-servicos p,
.hero-servicos .btn {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.hero-servicos p {
    animation-delay: 0.2s;
}

.hero-servicos .btn {
    animation-delay: 0.4s;
}

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

/* Seção de Serviços */
.servicos-grid {
    background-color: #f8f9fa;
    position: relative;
}

.linha-destaque {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #004d99, #0066cc);
    margin: 20px 0;
}

.card-servico {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 77, 153, 0.1);
    cursor: pointer;
    transform: translateY(0);
}

.card-servico:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 77, 153, 0.2);
}

.card-servico .icone {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #004d99 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.card-servico:hover .icone {
    transform: scale(1.1) rotate(5deg);
}

.card-servico .icone i {
    font-size: 30px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.card-servico:hover .icone i {
    transform: scale(1.1);
}

.card-servico h3 {
    color: #004d99;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-servico:hover h3 {
    transform: translateY(-3px);
    color: #0066cc;
}

.card-servico p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.lista-beneficios {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista-beneficios li {
    color: #444;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.card-servico:hover .lista-beneficios li {
    transform: translateX(5px);
}

.lista-beneficios li:before {
    content: "✓";
    color: #004d99;
    position: absolute;
    left: 0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.card-servico:hover .lista-beneficios li:before {
    transform: scale(1.2);
    color: #0066cc;
}

/* Remover pointer-events dos elementos internos */
.card-servico *,
.card-servico .icone,
.card-servico h3,
.card-servico p,
.lista-beneficios,
.lista-beneficios li {
    pointer-events: none;
}

/* Seção de Benefícios */
.beneficios {
    background: linear-gradient(135deg, #004d99 0%, #0066cc 100%);
    position: relative;
    overflow: hidden;
}

.beneficios-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.beneficio-item i {
    color: #ffd700;
    font-size: 24px;
}

.beneficio-item span {
    color: #ffffff;
    font-size: 18px;
}

.contador-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(5px);
}

.contador-item {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.contador-item .numero {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffd700, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contador-item .texto {
    font-size: 16px;
    opacity: 0.9;
}

/* Seção de Análise de Conta */
.analise-conta {
    background-color: #ffffff;
}

.form-analise {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    height: 50px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 10px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #004d99;
    box-shadow: none;
}

.upload-area {
    border: 2px dashed #004d99;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8f9fa;
    cursor: pointer;
}

.upload-area.highlight {
    background: rgba(0, 77, 153, 0.1);
    border-color: #0066cc;
}

.file-input {
    display: none;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.upload-label i {
    font-size: 40px;
    color: #004d99;
}

.upload-label span {
    color: #666;
    font-size: 16px;
}

/* Seção CTA */
.cta {
    background-color: #f8f9fa !important;
    position: relative;
    overflow: hidden;
}

.cta-image {
    max-width: 300px !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Botões */
.btn-primary {
    background: linear-gradient(45deg, #004d99, #0066cc);
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 77, 153, 0.3);
}

.btn-light {
    background: #ffffff;
    color: #004d99;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsividade */
@media (max-width: 991px) {
    .hero-servicos {
        min-height: 60vh;
        padding: 60px 0;
    }

    .contador-container {
        margin-top: 40px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .card-servico {
        margin-bottom: 30px;
    }

    .contador-item {
        margin-bottom: 20px;
    }

    .form-analise {
        padding: 20px;
    }
}

/* Animações */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Remover todas as classes antigas dos botões */
.botao-whatsapp {
    display: none;
}

.btn-whatsapp {
    display: none;
}

.botao-subir {
    /* Remover todos os estilos, pois já estão no shared-buttons.css */
} 