        /* Contador Animado */
    .counter-section {
        background-color: #0A1828;
        padding: 20px 10px;
    }

    .counter-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }

    .counter-item {
        text-align: center;
        color: white;
    }

    .counter-icon {
        color: #D4A574;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }

    .counter-number {
        font-size: 4rem;
        font-weight: 700;
        color: white;
        margin-bottom: 15px;
        line-height: 1;
        letter-spacing: -2px;
    }

    .counter-label {
        font-size: 1.1rem;
        color: #E8E8E8;
        font-weight: 400;
        letter-spacing: 0.5px;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .counter-container {
            grid-template-columns: 1fr;
            gap: 50px;
        }
    }

    @media (max-width: 768px) {
        .counter-section {
            padding: 60px 20px;
        }

        .counter-number {
            font-size: 3rem;
        }

        .counter-label {
            font-size: 1rem;
        }
    }
    
    /* Seção de Contatos */
    .contacts-section {
        background-color: #E8E8E8;
        padding: 80px 20px;
    }

    .contacts-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.5rem;
        color: #0A1828;
        text-align: center;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: #666;
        text-align: center;
        margin-bottom: 50px;
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .contacts-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contact-card {
        background-color: white;
        padding: 40px 30px;
        border-radius: 12px;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-card:hover {
        transform: translateY(-5px);
        /* border-color: #87CEEB; */
        box-shadow: 0 10px 30px rgba(212, 165, 116, 0.15);
    }

    .contact-icon {
        width: 80px;
        height: 80px;
        background-color: #0A1828;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: all 0.3s ease;
    }

    /* .contact-card:hover .contact-icon {
        background-color: #87CEEB;
    } */

    .contact-icon svg {
        color: white;
    }

    .contact-title {
        font-size: 1.4rem;
        color: #0A1828;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .contact-info {
        font-size: 1.2rem;
        color: #0A1828;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .contact-action {
        font-size: 0.95rem;
        color: #666;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    /* .contact-card:hover .contact-action {
        color: #87CEEB;
    } */

    /* Responsive */
    @media (max-width: 768px) {
        .contacts-section {
            padding: 60px 20px;
        }

        .section-title {
            font-size: 2rem;
        }

        .section-subtitle {
            font-size: 1rem;
            margin-bottom: 40px;
        }

        .contacts-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .contact-card {
            padding: 35px 25px;
        }
    }