.visitantes-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e1e8ef;
    border-bottom: 1px solid #e1e8ef;
}

.visitantes-container {
    max-width: 500px;
    margin: 0 auto;
}

.visitantes-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #f1f3f6;
    position: relative;
    overflow: hidden;
}

.visitantes-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1a5fb4 0%, #6d327c 100%);
}

.visitantes-icon {
    font-size: 3rem;
    color: #1a5fb4;
    margin-bottom: 1.5rem;
}

.visitantes-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.visitantes-message {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contador {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a5fb4;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(26, 95, 180, 0.1);
    font-family: 'Montserrat', sans-serif;
}

.visitantes-subtitle {
    color: #6d327c;
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
}

/* Animación del contador */
.contador.animando {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Efecto de partículas (opcional) */
.particulas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particula {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #1a5fb4;
    border-radius: 50%;
    animation: flotar 3s infinite linear;
    opacity: 0;
}

@keyframes flotar {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .visitantes-section {
        padding: 2rem 1rem;
    }
    
    .visitantes-card {
        padding: 2rem 1.5rem;
    }
    
    .contador {
        font-size: 2.8rem;
    }
    
    .visitantes-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .visitantes-icon {
        font-size: 2.5rem;
    }
    
    .contador {
        font-size: 2.2rem;
    }
    
    .visitantes-message {
        font-size: 1rem;
    }
}