body {
            font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            background-color: #f5f7fa;
            padding: 0;
            margin: 0;
            background: #ECDBC0;
        }

        .wrap {
            height: 100dvh;
            width: 100%;
            background: #6b7254;
        }

        .center {
            margin: auto;
            width: 50%;
            padding: 10px;
            padding-top: 10vh;
        }

        h1 {
            color: #202123;
            letter-spacing: 0.5px;
        }

        p {
            font-size: medium;
            color: #646e78;
            font-weight: 400;
            line-height: 1.5;
        }

        .btn {
            text-align: center;
            font-size: small;
            color: white;
            background-image: linear-gradient(#1654d1, #07439e);
            padding: 12px 20px;
            text-decoration: none;
            border-radius: 4px;
        }

        .breaker {
            margin-top: 4em;
        }

        .footer {
            position: absolute;
            margin: 0 auto;
            bottom: 12px;
            font-size: 12px;
            color: #aaa;
            margin-left: auto;
            margin-right: auto;
            left: 0;
            right: 0;
            text-align: center;
        }

        .text-center {
            text-align: center;
        }
        .container{
            height: 100%;
            display: grid;
            grid-template-columns: 1fr 2fr;
            align-items: center;
            justify-content: center;
        }

        .sideImage{
            display: grid;
            grid-template-columns: 1fr;
            align-items: center;
            justify-content: start;
            height: 100%;
            background-color: #f36f35;
            padding: 0 10px;
        }

        .sideImage img.lugar{
                width: 90%;
                text-align: center;
                margin: 0 auto;
                display: block;
                border-radius: 20px;
        }

        .sideImage img.frase{
                width: 200px;
                position: absolute;
                top: 75%;
                left: 4%;
        }

        .contenido img{
            width: 300px;
        }

        .contenido{
            padding: 0 30px;
            color: #FFF;
        }

        .contenido p{
            color: #fff;
            font-family: "Poppins", sans-serif;
            text-align: justify;
            width: 80%;
        }

        .sociales{
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            justify-content: space-evenly;
        }

        .sociales .icon{
            background: #6b7254;
            padding: 10px 0px;
            text-align: center;
            border-radius: 10px;
        }
        
        .sociales .icon:nth-child(1),
        .sociales .icon:nth-child(6){
            background: none;
        }

        .sociales .icon:hover{
            background: #5B8981;
        }

        .sociales i{
            color: #FFF;
        }

        .sociales a{
            height: 100%;
            width: 100%;
        }

        .whats{
            height: 45px;
            width: 45px;
            display: grid;
            align-items: center;
            justify-content: center;
            position: fixed;
            top: 88%;
            right: 20px;
            background: #25D366;
            padding: 10px;
            border-radius: 50%;
            transition: background .3s ease-in;
            z-index: 9999;
        }

        .whats i{
            font-size: 40px;
            color: #FFF;
        }

        .whats:hover{
            background: #075e54;
        }

        .horario-container{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            align-items: stretch;
            justify-content: stretch;
            justify-items: center;
            gap: 20px;
        }

        .horario{
            background-color: #FFF;
            width: 100%;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
        }

        .horario > p{
            color: #000;
            text-align: center;
            border-bottom: solid 0.5px #EFEFEF;
            width: 100%;
            margin: 0;
            padding: 10px 0;
        }

        .horario > p:hover{
            background: #e0e0e0;
        }

        .horario-container .clock{
            background: #f36f35;
            text-align: center;
            padding: 10px 0;
        }

        .mapa{
            overflow: hidden;
            border-radius: 15px;
        }

        .footer{
            text-align: center;
        }

        .contenido h2{
            font-size: 30px;
        }

        .img-mobile{
            display: none;
        }

        @media only screen and (max-width: 992px) {
            .container {
                display: grid; /* Asegura que esté usando grid */
                grid-template-columns: 1fr !important; /* Una sola columna */
            } 

            .sideImage img.frase{
                display: none;
            }

            .container .sideImage{
                grid-row: 2/3;
            }

            .contenido{
                text-align: center;
            }

            .contenido p{
                width: 90%;
                margin: 0 auto;
                margin-bottom: 20px;
            }

             .sideImage img.lugar{
               display: none;
            }

            .sociales{
                margin-top: 30px;
                grid-template-columns: repeat(2, 1fr);
                padding: 0 15px 20px 15px;
            }

            .segundo-p{
                display: none;
            }
            .wrap{
                height: 100%;
            }

            .sociales .icon:nth-child(1),
            .sociales .icon:nth-child(6){
                display: none;
            }
            .img-mobile{
                display: block;
            }
        }