        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', 'Arial', sans-serif;
            /* background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%); */
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        .mobile {
            display: none;
        }

        /* Patrón decorativo de fondo */
        .background-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: repeating-linear-gradient(45deg,
                    transparent,
                    transparent 10px,
                    #ccc 10px,
                    #ccc 20px);
            z-index: -1;
        }

        .swirl-pattern {
            position: absolute;
            top: 30px;
            left: 50px;
            z-index: -1
        }

        /* Elemento amarillo decorativo */
        .yellow-accent {
            position: absolute;
            top: 0;
            right: 0;
            width: 30%;
            height: 100%;
            background: #eecb34;
            z-index: -1;
        }


        .container {
            max-width: 1200px;
            margin: auto;
            height: 100vh;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }



        .contenido {
            grid-column: 1;
            grid-row: 2;
            display: flex;
            flex-direction: row;
            align-items: center;
        }

        .contenido>* {
            flex: 1;
            /* Cada hijo ocupa el 50% del espacio disponible */
        }

        .description {
            font-size: 1.2em;
            line-height: 1.6;
            color: #555;
            max-width: 500px;
        }

        /* Sección central con imagen y redes sociales */
        .center-section {
            grid-column: 2;
            grid-row: 2;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .image-container {
            position: relative;
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Botones de redes sociales posicionados alrededor del círculo */
        .social-btn {
            position: absolute;
            z-index: 10;
        }


        .instagram-btn {
            top: 190px;
            left: 0px;
        }

        .facebook-btn {
            left: -25px;
            top: 310px;
        }

        .whatsapp-btn {
            top: 440px;
            left: 0px;
        }

        /* Contenido lateral derecho */
        .side-content {
            grid-column: 3;
            grid-row: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 40px;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .info-card h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.1em;
        }

        .info-card p {
            color: #666;
            line-height: 1.4;
        }

        /* Footer */

        .contact-info {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .contact-item {
            position: relative;
        }

        .contact-item img {
            width: 100%;
        }

        /* Responsivo */
        /* @media (max-width: 1200px) {
            .container {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto auto auto;
                text-align: center;
            }

            .header,
            .main-content,
            .center-section,
            .side-content,
            .footer {
                grid-column: 1;
            }

            .main-content,
            .side-content {
                padding: 20px;
            }

            .image-container {
                width: 300px;
                height: 300px;
            }

            .footer {
                flex-direction: column;
                gap: 20px;
            }

            .contact-info {
                flex-direction: column;
                gap: 15px;
            }
        } */
        @media (max-width: 1400px) {
            .swirl-pattern {
                top: 20px;
                left: 30px;
                width: 33%;
            }

            .swirl-pattern img {
                width: 100%;
                height: auto;
            }
        }

        @media (max-width: 768px) {
            .desktop {
                display: none;
            }

            .mobile {
                display: block;
            }

            .parent {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                /* grid-template-rows: repeat(2, 1fr); */
                grid-column-gap: 10px;
                grid-row-gap: 10px;
                align-items: end;
            }

            .div1 {
                grid-area: 1 / 1 / 2 / 2;
                text-align: center;
                margin-bottom: 20px;
            }

            .div1 img {
                width: 80%;
                height: auto;
            }

            .div2 {
                grid-area: 1 / 2 / 2 / 3;
                margin-bottom: 10px;
            }

            .div3 {
                grid-area: 2 / 1 / 3 / 3;
                padding: 0 15px;
                margin-top: -30px;
                text-align: center;
                /* line-height: 1; */
            }

            .description {
                font-size: 1.2em;
                line-height: 1.4;
                color: #555;
                max-width: 100%;
                margin-top: 20px;
            }

            .social-icons-mobile {

                display: flex;
                justify-content: center;
                gap: 10px;
                margin-top: 20px;
            }

            .social-icons-mobile img {
                width: 3em;
                height: auto;
            }
        }

        .img-responsive {
            max-width: 100%;
            height: auto;
        }

        /* HOVER CON CAMBIO DE IMAGEN - OPCIÓN 1 */

/* Botones de contacto en desktop */
.contact-item a:hover img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item a {
    position: relative;
    display: inline-block;
}

.contact-item a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-item a:hover::after {
    opacity: 1;
}

/* Específico para cada botón - necesitas crear las imágenes hover */
.contact-item a[href^="tel"]::after {
    background-image: url('img/boton_telefono_hover.png');
}

.contact-item a[href*="maps"]::after {
    background-image: url('img/boton_direccion_hover.png');
}

.contact-item:last-child::after {
    background-image: url('img/boton_horario_hover.png');
}

/* Botones sociales en desktop */
.social-btn:hover img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* .social-btn {
    position: relative;
    display: inline-block;
} */

.social-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.social-btn:hover::after {
    opacity: 1;
}

.instagram-btn::after {
    background-image: url('img/icono_instagram_hover.png');
}

.facebook-btn::after {
    background-image: url('img/icono_facebook_hover.png');
}

.whatsapp-btn::after {
    background-image: url('img/icono_whatsapp_hover.png');
}

/* MOBILE - Botones de contacto */
@media (max-width: 768px) {
    .div3 .contact-item a:hover img {
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .div3 .contact-item a {
        position: relative;
        display: inline-block;
    }
    
    .div3 .contact-item a::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.3s ease;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .div3 .contact-item a:hover::after {
        opacity: 1;
    }
    
    .div3 .contact-item a[href^="tel"]::after {
        background-image: url('img/MOBILE/boton_telefono_hover.png');
    }
    
    .div3 .contact-item a[href*="maps"]::after {
        background-image: url('img/MOBILE/boton_direccion_hover.png');
    }
    
    .div3 .contact-item:last-child::after {
        background-image: url('img/MOBILE/boton_horario_hover.png');
    }
    
    /* Botones sociales mobile */
    .social-icons-mobile a:hover img {
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .social-icons-mobile a {
        position: relative;
        display: inline-block;
    }
    
    .social-icons-mobile a::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.3s ease;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .social-icons-mobile a:hover::after {
        opacity: 1;
    }
    
    .social-icons-mobile a[href*="instagram"]::after {
        background-image: url('img/MOBILE/icono_instagram_hover.png');
    }
    
    .social-icons-mobile a[href*="facebook"]::after {
        background-image: url('img/MOBILE/icono_facebook_hover.png');
    }
    
    .social-icons-mobile a[href*="whatsapp"]::after {
        background-image: url('img/MOBILE/icono_whatsapp_hover.png');
    }
}