:root {
    --primary-color: #0066cc;
    --secondary-color: #004d99;
    --accent-color: #ffd700;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --dark-gray: #666666;
    --white: #ffffff;
}

body {
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    padding-top: 80px;
}

/* Navbar */
.navbar {
    background: white;
    height: 80px;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    display: flex;
    align-items: center;
}

.navbar > .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 65px;
    max-height: 90%;
}

/* Hero Section */
.hero-section {
    margin-top: 0; /* Removido pois já temos padding-top no body */
    position: relative;
}

.carousel-item {
    height: calc(100vh - 140px); /* Ajustado para o novo espaço total */
    min-height: 500px;
}

/* Ajustes responsivos */
@media (max-width: 767.98px) {
    body {
        padding-top: 80px;
    }

    .navbar {
        top: 0;
        height: 80px;
    }
    
    .carousel-item {
        height: calc(100vh - 80px);
        min-height: 400px;
    }
}

/* Carousel Styles */
.carousel {
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.carousel-item img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    filter: brightness(0.8);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
    left: 0;
    right: 0;
    padding: 0;
    z-index: 2;
}

.carousel-caption h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.carousel-caption .lead {
    color: var(--white);
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 0.2s;
}

.carousel-caption .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 0.4s;
}

/* Botões do carousel */
.carousel-caption .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

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

.carousel-caption .btn-accent {
    background-color: #fff;
    border-color: var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
}

.carousel-caption .btn-accent:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Controles do Carousel */
.carousel-control-prev,
.carousel-control-next {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--primary-color);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-color: transparent !important;
    filter: brightness(0) invert(1);
}

/* Garantir que o overlay não interfira com os controles */
.carousel-item::before {
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
}

.carousel-indicators {
    z-index: 5;
}

/* Indicadores do Carousel */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Botões de Ação */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #fff;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.carousel-item.active h1,
.carousel-item.active .lead,
.carousel-item.active .btn {
    animation: fadeInUp 0.5s ease forwards;
}

/* Responsividade do Carousel */
@media (max-width: 991.98px) {
    .carousel-item {
        height: 500px;
        min-height: auto;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .carousel-item {
        height: calc(100vh - 80px);
        min-height: 400px;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption .lead {
        font-size: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Services Section */
.services-section {
    background-color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    height: 100%;
    border: 1px solid rgba(7, 64, 103, 0.1);
    cursor: pointer !important;
    transform: translateY(0) !important;
}

.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(7, 64, 103, 0.15) !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(7, 64, 103, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease !important;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg) !important;
    background: var(--primary-color) !important;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease !important;
}

.service-card:hover .service-icon i {
    color: var(--white) !important;
    transform: scale(1.1) !important;
}

.service-content {
    position: relative;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: all 0.3s ease !important;
}

.service-card:hover .service-content h3 {
    color: var(--secondary-color) !important;
    transform: translateY(-3px) !important;
}

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    transition: all 0.3s ease !important;
}

.service-card:hover .service-features li {
    transform: translateX(5px) !important;
}

.service-features li i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 0.875rem;
    transition: all 0.3s ease !important;
}

.service-card:hover .service-features li i {
    transform: scale(1.2) !important;
}

/* Remover pointer-events dos elementos internos */
.service-card *,
.service-icon,
.service-content,
.service-features {
    pointer-events: none !important;
}

/* Partículas de Serviços */
.services-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.services-particles::before,
.services-particles::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: particleFloat 15s infinite linear;
}

.services-particles::before {
    top: 10%;
    left: 5%;
    animation-delay: -5s;
}

.services-particles::after {
    bottom: 20%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 100px) rotate(90deg);
    }
    50% {
        transform: translate(200px, 0) rotate(180deg);
    }
    75% {
        transform: translate(100px, -100px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 3rem 0;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.feature-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(7, 64, 103, 0.1);
    height: 100%;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

/* Contact Section */
.contact-section {
    background: var(--light-gray);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-floating {
    margin-bottom: 1rem;
}

.form-control, .form-select {
    border: 2px solid rgba(7, 64, 103, 0.1);
    border-radius: 10px;
    padding: 1rem;
    height: calc(3.5rem + 2px);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(252, 177, 60, 0.25);
}

.form-floating label {
    padding: 1rem;
    color: var(--dark-gray);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
    opacity: 1;
}

textarea.form-control {
    min-height: 150px;
}

/* Animação para os inputs */
@keyframes focusIn {
    from {
        transform: scale(0.95);
        opacity: 0.5;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.form-control:focus, .form-select:focus {
    animation: focusIn 0.2s ease-out forwards;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-heading {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info i {
    width: 24px;
    color: var(--accent-color);
    margin-right: 1rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

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

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

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Botão WhatsApp */
.botao-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 6px rgba(7, 64, 103, 0.1);
    transition: transform 0.3s ease;
    z-index: 1000;
    text-decoration: none !important;
}

.botao-whatsapp:hover {
    transform: scale(1.1);
    color: var(--white);
    text-decoration: none !important;
}

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

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

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .service-card,
    .feature-card {
        margin-bottom: 2rem;
    }

    .footer {
        text-align: center;
    }

    .social-icons,
    .social-links {
        justify-content: center;
    }
}

/* Efeitos de Hover */
.service-card,
.feature-card {
    transition: all 0.3s ease;
}

.service-card:hover,
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Utilitários */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
}

.shadow-lg {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
}

/* Ajustes de fonte e estilos gerais */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.display-4 {
    font-weight: 700;
    line-height: 1.2;
}

.lead {
    font-weight: 400;
}

.btn {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accent {
    background-color: var(--accent-color);
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(252, 177, 60, 0.3);
}

.btn-accent:hover {
    background-color: #ffc107;
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(252, 177, 60, 0.4);
}

.nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Contadores Section */
.counters-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.counters-section::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"><rect fill="rgba(255,255,255,0.05)" x="0" y="0" width="100" height="100"/></svg>') repeat;
    opacity: 0.1;
}

.counter-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.counter-circle {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 2rem;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.progress-ring-circle {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 8;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 1s ease;
}

.counter-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.plus {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 2rem;
    margin-left: 0.25rem;
}

.counter-info {
    text-align: center;
}

.counter-info h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.counter-detail {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.detail-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.detail-value {
    font-weight: 600;
    color: var(--accent-color);
}

.progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    background: var(--accent-color);
    border-radius: 3px;
    transition: width 1.5s ease;
}

.counter-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

/* Partículas de fundo */
.counter-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.counter-particles::before,
.counter-particles::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s infinite;
}

.counter-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.counter-particles::after {
    top: 60%;
    right: 10%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, 50px);
    }
    50% {
        transform: translate(100px, 0);
    }
    75% {
        transform: translate(50px, -50px);
    }
}

/* Responsividade dos Contadores */
@media (max-width: 991.98px) {
    .counter-box {
        margin-bottom: 2rem;
    }

    .counter-circle {
        width: 140px;
        height: 140px;
    }

    .counter {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .counters-section {
        padding: 4rem 0;
    }

    .counter-circle {
        width: 120px;
        height: 120px;
    }

    .counter {
        font-size: 1.75rem;
    }

    .counter-info h3 {
        font-size: 1.1rem;
    }
}

/* Partículas */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    animation: particleFloat 8s infinite ease-in-out;
}

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

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

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

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

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--accent-color);
}

.carousel-indicators [data-bs-target] {
    background-color: var(--accent-color);
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(7, 64, 103, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(7, 64, 103, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(7, 64, 103, 0.15);
}

.benefit-icon {
    position: relative;
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc, #004d99);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    border: 2px dashed var(--accent-color);
    border-radius: 20px;
    animation: rotate 20s linear infinite;
}

.benefit-content h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefit-stats {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
}

.benefit-card:hover .benefit-stats {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(7, 64, 103, 0.1);
}

.benefit-card:hover .icon-wrapper {
    transform: scale(1.05);
}

.benefit-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Did You Know Section */
.did-you-know-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.fact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.fact-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.fact-icon i {
    font-size: 2rem;
    color: var(--accent-color);
    z-index: 2;
}

.fact-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fact-particles::before,
.fact-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 4s infinite linear;
}

.fact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.fact-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.fact-tag {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.fact-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.fact-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-fact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-fact i {
    transition: transform 0.3s ease;
}

.btn-fact:hover {
    color: var(--white);
}

.btn-fact:hover i {
    transform: translateX(5px);
}

.icon-wrapper:hover + .icon-ring {
    border-color: var(--primary-color);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, 10px);
    }
    50% {
        transform: translate(20px, 0);
    }
    75% {
        transform: translate(10px, -10px);
    }
}

/* Removendo pointer-events */
.service-card .service-icon,
.service-card .service-features,
.service-card h3,
.service-card p {
    pointer-events: auto;
}

/* Botão Saiba Mais Grande */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 177, 60, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(252, 177, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(252, 177, 60, 0);
    }
}

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

.btn-saiba-mais-grande {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--accent-color);
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(252, 177, 60, 0.3);
}

.btn-saiba-mais-grande:hover {
    background-color: #ffc107;
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(252, 177, 60, 0.4);
}

.btn-saiba-mais-grande i {
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.btn-saiba-mais-grande:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    background: var(--white);
    padding: 5rem 0;
}

.cta-section h2 {
    color: var(--text-color);
}

.cta-section p {
    color: var(--dark-gray);
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 177, 60, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(252, 177, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(252, 177, 60, 0);
    }
}

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

.btn-accent {
    background-color: var(--accent-color);
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(252, 177, 60, 0.3);
}

.btn-accent:hover {
    background-color: #ffc107;
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(252, 177, 60, 0.4);
}

.btn-accent i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-accent:hover i {
    transform: translateX(5px);
}

/* Partículas da seção Você Sabia */
.did-you-know-particles,
.footer-particles,
.counter-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

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

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

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

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

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

/* Partículas do Footer */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.footer-particles::before,
.footer-particles::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s infinite;
}

.footer-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.footer-particles::after {
    top: 60%;
    right: 10%;
    animation-delay: -4s;
}

/* Ajuste para garantir que o conteúdo fique acima das partículas */
.footer .container {
    position: relative;
    z-index: 1;
}
