/* Main */

    #main {
        padding: 0;
    }

    body.landing #main {
        /*margin-top: -14em;*/
    }

/* Section/Article */

    section {
        padding: 2em 0;
    }

    section.special, article.special {
        background: var(--color-gris-claro);
        text-align: center;
    }

    .gotham {
        font-family: 'Gotham', sans-serif;
    }
    
    article {
        position: relative;
        clear: both;
    }

    article .imagen {
        float: right;
        width: calc(50% + 2.5em);
    }

    article .datos {
        float: right;
        width: calc(50% - 2.5em);
        padding: 4em 4em 0 4em;
        text-align: justify;
    }
    article .datos img {
        position: relative;
        clear: both;
        width: 100%;
        margin-bottom: 1.5em;
    }
    
    .datos span {
        padding-left: 5px;
        padding-right: 5px;
    }

    article.alt .imagen, article.alt .datos {
        float: left;
    }

    article p {
        font-size: 1.25em;
        margin: 0 0 1em 0;
        line-height: 1.8em;
    }

    article h3 {
        text-align: center;
        color: var(--color-negro);
        font-family: 'Gotham', sans-serif;
        text-transform: uppercase;
        font-size: 1.5em;
        line-height: 1.25em;
        letter-spacing: -0.025em;
    }

    article ul.action {
        margin: 0.5em 0 0 0;
        padding: 0;
    }

        article ul.action li {
            font-family: 'Gotham', sans-serif;
            display: inline-block;
            list-style: none;
            margin: 0 calc(1em - 8px) 0 0;
            padding: 0 1em 0 0;
            border-right: solid 2px;
        }

        article ul.action li:last-child {
            border-right: 0;
            margin-right: 0;
            padding-right: 0;
        }

            article ul.action li a {
                font-size: 1.25em;
                line-height: 1em;
                color: inherit;
            }

            article ul.action li:nth-child(2) a {
                color: var(--color-verde);
                font-weight: 700;
            }

    article .img-contenedor {
        height: 27.5em;
    }

/* Promociones */

    #promociones {
        padding: 0;
    }

        .promociones.img-contenedor {
            height: 20em;
        }

        .promociones.img-contenedor .container {
            height: 100%;
            z-index: 1;
            position: relative;
        }

        .promociones.img-contenedor .flex {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }
        
/* Introduccion */

    #introduccion {
        text-align: center;
        padding: 4em 0;
    }

    #introduccion h2 {
        text-transform: none;
        font-size: 1.75em;
        font-weight: 600;
        color: var(--color-verde);
        margin: 0;
        line-height: 1.5em;
    }

    #introduccion p,  #salones p, #galeria p {
        font-size: 1.5em;
        margin: 0;
        line-height: 1.5em;
    }

/* Habitaciones / Restaurantes */

    #habitaciones {
        padding-bottom: 0;
    }

    #restaurantes {
        padding-top: 0;
    }

    #restaurantes .btn-rest {
        font-size: 22px;
    }

    #habitaciones > *:last-child, #restaurantes > *:last-child {
        clear: both;
    }

    #habitaciones h2 {
        color: var(--color-verde);
        padding: 1em 0 2.5em 0;
    }

/* Servicios */

    #servicios {
        padding: 5em 0;
    }

    #servicios img {
        display: block;
        width: 4em;
        margin: 1.5em auto 1em auto;
    }

    #servicios h4 {
        height: 3em;
        text-transform: uppercase;
        font-weight: 100 !important;
    }

    #servicios ul {
        list-style: none;
    }

    #servicios ul li {
        font-family: 'Gotham', sans-serif !important;
        font-weight: 450;
    }

    #servicios ul li::before {
        content: "•";
        padding-right: 8px;
    }

    #servicios p {
        font-size: 0.9em;
        text-align: left;
        color: var(--color-gris);
        line-height: 1.25em;
    }

/* Galeria */

    #galeria {
        text-align: center;
    }

        #galeria p {
            margin-bottom: 1em;
        }

        #galeria a {
            font-family: 'Gotham', sans-serif;
            color: var(--color-verde);
            text-transform: uppercase;
            font-size: 1.25em;
        }

        #galeria .galeria {
            display: grid;
            grid-template-columns: repeat(5,1fr);
            column-gap: 0.75em;
            row-gap: 0.75em;
            margin-bottom: 2em;
        }

            #galeria .galeria > div {
                position: relative;
                width: 100%;
                background: #eee;
                overflow: hidden;
                display: none;
                cursor: pointer;
            }

                #galeria .galeria > div:nth-child(1) {
                    grid-column: 1 / span 2;
                    grid-row: 1 / span 2;
                }

                #galeria .galeria > div:nth-child(-n+7) {
                    display: block;
                }

                #galeria .galeria.visible > div {
                    display: block !important;
                }

                #galeria .galeria > div:before {
                    content: '';
                    display: block;
                    padding-top: 90%;
                }

            #galeria .galeria img {
                position: absolute;
                height: 100%;
                object-fit: cover;
                object-position: 50% 50%;
                top: 0; left: 0; bottom: 0; right: 0;
            }

/* Salones */
            
    #salones {
        text-align: center;
    }

        #salones p {
            margin-bottom: 2em;
        }

        #salones h2 {
            color: var(--color-verde);
        }
        
        #salones .salon {
            width: 100%;
            display: block;
        }        

    #contacto-evento {
        padding: 4em 0;
    }
    
        #contacto-evento h3 {
            height: fit-content;
            height: -moz-fit-content;
            font-size: 35px;
            font-style: oblique !important;
            font-weight: 600 !important;
            text-transform: uppercase;
            line-height: 2em;
        }
    
            #contacto-evento hr {
                display: block;
                content: '';
                width: 64px;
                margin-left: 8px;
                margin-bottom: 0.5em;
                padding-bottom: 0.5em;
                border-bottom: solid 10px;
                color: var(--color-verde);
            }
    
        #contacto-evento .titulo {
            display: flex;
            justify-items: center;
            align-items: center;
            border-right: solid 1px var(--color-gris);   
            height: 100%;  
        }
    
        #contacto-evento a {
            color: var(--color-verde);
            font-size: 1.25em;
        }

/* Tabla */

    .tabla {
        display: block;
        width: 100%;
        height: 100%;
    }

        .tabla .head {
            height: 8em;
        }

        .tabla h3 {
            color: #ffffff;
            opacity: 0.6;
            font-size: 1.5em;
            margin: 0;
        }

        .tabla h4 {
            color: #ffffff;
            text-transform: none;
            font-style: italic;
        }

        .tabla img {
            width: 60%;
        }

        .tabla hr {
            width: calc(100% - 2em);
            opacity: 0.6;
        }

        .tabla .titulos {
            background: var(--color-verde);
            width: 33.3334%;
            height: 100%;
            float: left;
            padding: 0 0.5em;
        }

            .tabla .titulos ul {
                list-style: none;
                color: #ffffff;
                text-align: center;
                margin: 2em 0 0 0 !important;
                font-size: 1.3em;
            }

                .tabla .titulos ul li {
                    font-family: 'Gotham', sans-serif;
                    font-style: italic;
                    line-height: 1.25em;
                    height: 1.5em;
                    padding-left: 3px;
                    padding-right: 3px;
                }

            .tabla .titulos .head {
                padding: 2em 0;
            }
        
        .tabla .datos {
            width: 66.6666%;
            height: 100%;
            float: left;
        }

            .tabla .datos ul {
                list-style: none;
                text-align: center;
                margin-top: 2em;
                font-size: 1.3em;
            }

                .tabla .datos ul li {
                    font-style: italic;
                    line-height: 1.25em;
                    height: 1.5em;
                }

            .tabla .datos .head > div {
                width: 25%;
                height: 100%;
                padding: 1em 0;
                float: left;
                background-color: var(--color-gris);
                border-left: solid 2px #ffffff;
            }

            .tabla .datos .body > div {
                width: 25%;
                height: 100%;
                float: left;
            }

    @media screen and (max-width: 1280px) {

        /* Section/Article */

        article .imagen {
            width: 50%;
        }

        article .datos {
            width: 50%;
        }
    }

    @media screen and (max-width: 840px) {
        /* Servicios */

        #servicios {
            padding-top: 2em;
        }

        #servicios h4 {
            height: auto;
        }

        #servicios .row.gtr-200.gtr-uniform > *:nth-child(2), #servicios .row.gtr-200.gtr-uniform > *:nth-child(3) {
            padding-top: 0em;
        }

        #galeria .galeria {
            grid-template-columns: repeat(4,1fr);
        }

            #galeria .galeria > div:nth-child(-n+7) {
                display: none;
            }

            #galeria .galeria > div:nth-child(-n+5) {
                display: block;
            }

    }

    @media screen and (max-width: 736px) {
        
        /* Main */

			#main {
				padding: 0 0 0 0;
			}

				#main > header {
					margin: 0 2em 1.5em 2em;
				}
        
        /* Introduccion */

            #introduccion h2 {
				font-size: 1.25em;
			}

			#introduccion p {
				font-size: 1em;
				padding-bottom: 1em;
			}

			body.landing #main {
				padding: 0;
				margin-top: 0;
			}

        /* Section/Article */

            article .imagen, article .datos, article.alt .imagen, article.alt .datos {
                width: 100%;
                float: none;
            }

            article .datos {
                padding: 3em 4em;
            }

            article .imagen {
                display: block;
                margin: 0 auto;
                max-width: 35em;
            }

            article .imagen .img-contenedor {
                height: 20em;
            }

        /* Salones */

            .tabla .titulos ul li, .tabla .datos ul li {
                height: 3em;
            }

            .tabla .datos ul li {
                line-height: 2.5em;
            }

            #contacto-evento .titulo {
                border-right: 0;
            }

            #contacto-evento .row.gtr-200.gtr-uniform > *:nth-child(2){
                padding-top: 0em;
            }
    }

    @media screen and (max-width: 480px) {
        
        /* Main */

			#main > .box:first-child {
				margin-top: 0;
			}

        /* Section/Article */

            article .datos {
                padding: 3em 2em;
            }
            
        /* Servicios */

            #servicios .row.gtr-200.gtr-uniform > *:nth-child(2), #servicios .row.gtr-200.gtr-uniform > *:nth-child(3) {
                padding-top: 0em;
            }
            
        /* Salones */

            .tabla .head {
                height: 4.5em;
            }

            .tabla h3 {
                font-size: 1em;
            }

            .tabla h4 {
                font-size: 0.6em;
            }

            .tabla .titulos .head {
                padding: 1em 0;
            }

            .tabla .datos .head > div {
                padding-top: 0.5em;
            }

            .tabla .titulos ul, .tabla .datos ul {
                margin-top: 0;
            }

            .tabla ul li {
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 0.8em;
            }


            #galeria .galeria {
                grid-template-columns: repeat(2,1fr);
            }
    
                #galeria .galeria > div:nth-child(1) {
                    grid-column: 1 / 1;
                    grid-row: 1 / 1;
                }
    
                #galeria .galeria > div:nth-child(-n+6) {
                    display: block;
                }
    }

    .balloon {
        position: relative;
        background: transparent;
        /* padding: 2em; */
        margin-bottom: 2.5em;
        border-bottom: 2px solid #3b7e42;
        /* width: calc(5em + 60px); */
    }
    
    .balloon:before {
        content: "";
        position: absolute;
        right: 0;
        bottom: -25px;
        left: 0;
        width: 0px;
        height: 0px;
        margin: auto;
        border-style: solid;
        border-color: #3b7e42 transparent transparent transparent;
        border-width: 25px 50px 0 50px;
    }
    
    .balloon:after {
        content: "";
        position: absolute;
        right: 0;
        bottom: -23px;
        left: 0;
        width: 0px;
        height: 0px;
        margin: auto;
        border-style: solid;
        border-color: #fff transparent transparent transparent;
        border-width: 25px 50px 0 50px;
    }
    
    .recorte {
        content: "";
        position: relative;
        top: 2.5em; 
        left: -18em;
        right: 0;
        bottom: -23px;
        width: 0px;
        height: 0px;
        margin: auto;
        border-style: solid;
        border-color: white transparent transparent transparent;
        border-width: 60px 120px 0 120px;
    }
    
    .balloon-hr {
        position: relative;
        background: transparent;
        /* padding: 2em; */
        margin-bottom: 2.5em;
        border-bottom: 2px solid var(--color-gris-oscuro);
        /* width: calc(5em + 60px); */
    }
    
    .balloon-hr:before {
        content: "";
        position: absolute;
        top: 0em; 
        right: 0;
        bottom: -25px;
        left: 10em;
        width: 0px;
        height: 0px;
        /* margin: auto; */
        border-style: solid;
        border-color: var(--color-gris-oscuro) transparent transparent transparent;
        border-width: 60px 120px 0 120px;
    }
    
    .balloon-hr:after {
        content: "";
        position: absolute;
        top: -0.15em; 
        right: 0;
        bottom: -23px;
        left: 10em;
        width: 0px;
        height: 0px;
        /* margin: auto; */
        border-style: solid;
        border-color: #fff transparent transparent transparent;
        border-width: 60px 120px 0 120px;
    }