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-image: url('https://zerati.mx/img/textura-02.png');
            background-repeat: no-repeat;
            background-size: contain;
            background-position: left center;
        }

        .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: 1.5fr 2fr;
            align-items: center;
            justify-content: center;
        }

        .sideImage{
            display: grid;
            grid-template-columns: 1fr;
            align-items: center;
            justify-content: center;
        }

        .sideImage img.lugar{
                width: 60%;
                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 p{
            color: #606060;
            font-family: "Barlow", sans-serif;
            width: 80%;
        }

        .sociales{
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            justify-content: center;
        }

        .sociales .icon{
            background: #DA754F;
            padding: 10px 0px;
            text-align: center;
            border-radius: 10px;
        }

        .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;
        }


        @media only screen and (max-width: 992px) {
            .wrap {
            background-image: url('https://zerati.mx/img/bottom-02.png');
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center bottom;
            }

            .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;
            }

             .sideImage img.lugar{
               display: none;
            }

            .sociales{
                margin-top: 30px;
                grid-template-columns: repeat(3, 1fr);
                padding: 0 15px;
            }
            
        }