/* CONTACTO - Botón flotante de WhatsApp */
/* Solo visible en Desktop (primeros 3 media queries) */

/* 1. Large Screens (> 1367px) */
@media (min-width: 1367px) {
    .contacto {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 999;
    }

    .modulo-c1 {
        display: flex;
    }

    .bloque-c11 {
        display: flex;
    }

    .contenido-c111 {
        display: flex;
        width: 120px;
        height: 120px;
        background-color: #213242;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contenido-c111:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .icono-c1111 {
        width: 70px;
        height: 70px;
    }
}

/* 2. Desktop (1281px - 1366px) */
@media (min-width: 1281px) and (max-width: 1366px) {
    .contacto {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 999;
    }

    .modulo-c1 {
        display: flex;
    }

    .bloque-c11 {
        display: flex;
    }

    .contenido-c111 {
        display: flex;
        width: 100px;
        height: 100px;
        background-color: #213242;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contenido-c111:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .icono-c1111 {
        width: 50px;
        height: 50px;
    }
}

/* 3. Laptop (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .contacto {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 999;
    }

    .modulo-c1 {
        display: flex;
    }

    .bloque-c11 {
        display: flex;
    }

    .contenido-c111 {
        display: flex;
        width: 70px;
        height: 70px;
        background-color: #213242;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contenido-c111:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .icono-c1111 {
        width: 30px;
        height: 30px;
    }
}

/* 4. Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .contacto {
        display: none;
    }
}

/* 5. Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .contacto {
        display: none;
    }
}

/* 6. Mobile Small (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
    .contacto {
        display: none;
    }
}