/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

/* Componentes */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Tarjetas de servicio */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contador de estadísticas */
.stat-counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2563eb;
}

/* Botones flotantes y sociales */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #2563eb;
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.float-button:hover {
    transform: scale(1.1);
}

/* Botones de redes sociales */
.social-buttons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.social-button:hover {
    transform: scale(1.1);
}

/* Colores de redes sociales */
.social-button.facebook { background-color: #3b5998; }
.social-button.instagram { background-color: #e4405f; }
.social-button.twitter { background-color: #1da1f2; }
.float-button.bg-green-500 { background-color: #25d366; }
.float-button.bg-green-500:hover { background-color: #1ebc59; }

/* Mapa */
.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    width: 100%;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #f0f0f0;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Media queries */
@media (max-width: 768px) {
    .float-button {
        width: 70px;
        height: 70px;
    }

    .floating-buttons {
        right: 10px;
        bottom: 10px;
    }

    .social-buttons {
        left: 10px;
    }
}
