

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Garet', sans-serif;
    font-size: 20px;
}

@font-face {
    font-family: 'Garet';
    src: url('../fonts/Garet-Book.woff') format('woff'), /* Prioridad más alta */
         url('../fonts/Garet-Book.woff2') format('woff2'),
         url('../fonts/Garet-Heavy.woff') format('woff'), /* Prioridad más alta */
         url('../fonts/Garet-Heavy.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Garet', sans-serif; /* Fallback a una fuente genérica por si acaso */
}

body{
    background-color: #EFEDE9;
}

.header{
    background-color: #7F9A9F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 140px;
    padding: 7px 10%;
    
    
}

.h1, .h2, .h3{
    color:#7F9A9F;
}

.header .logo{
    cursor: pointer;
}

.header .logo img{
    height: 80px;
    width: auto;
    transition: all 0.3s;
}

.header .logo img:hover{
    transform: scale(1.2);
}

.header .nav-links{
    list-style: none;
}

.header .nav-links li{
    display: inline-block;
    padding: 0 40px;
    padding-bottom: 10px;
    justify-content: end;

}

.header .nav-links li:hover{
    transform: scale(1.1);
}

.header .nav-links a{
    font-size: 700;
    color: #EFEDE9;
    text-decoration: none;    
}


  

.header .nav-links li a:hover{
    color: #ffbc0e;
}

.header .btn button{
    font-weight: 700;
    color: black;
    padding: 9px 25px;
    background: #eceff1;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    max-width: 100%; /* Asegura que el botón no sea más ancho que su contenedor */
    box-sizing: border-box; /* Asegura que el padding y border están incluidos en el ancho total */
}

@media (max-width: 600px) {
    .header .btn button {
        padding: 6px 15px; /* Reduce el padding en pantallas pequeñas */
        font-size: 14px; /* Reduce el tamaño de la fuente para pantallas pequeñas */
    }
}

.header .btn button:hover{
    background-color: #e2f1f8;
    color: #ffbc0e;
    transform: scale(1.1);
}

html {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}


#banner {
    background-color: black;
    color: #f2a3a5;
    padding: 13em 0 11em 0;
    background-color: #7F9A9F;
    background-image: url("../images/FOTO5.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 15% left;
    text-align: left;
    position: relative;
    z-index: 9999;
    
}

    #banner input, #banner select, #banner textarea {
        color: #EFEDE9;
    }

    #banner a {
        color: #EFEDE9;
    }

    #banner strong, #banner b {
        color: #EFEDE9;
    }

    #banner h1, #banner h2, #banner h3, #banner h4, #banner h5, #banner h6 {
        color: #EFEDE9;
    }

    #banner blockquote {
        border-left-color: #EFEDE9;
    }

    #banner code {
        background: none;
        border-color: #EFEDE9;
    }

    #banner hr {
        border-bottom-color: #EFEDE9;
    }

    #banner input[type="submit"],
    #banner input[type="reset"],
    #banner input[type="button"],
    #banner button,
    #banner .button {
        background-color: #5a5a5a;
        color: #EFEDE9 !important;
    }

        #banner input[type="submit"]:hover,
        #banner input[type="reset"]:hover,
        #banner input[type="button"]:hover,
        #banner button:hover,
        #banner .button:hover {
            background-color: #676767;
        }

        #banner input[type="submit"]:active,
        #banner input[type="reset"]:active,
        #banner input[type="button"]:active,
        #banner button:active,
        #banner .button:active {
            background-color: #4d4d4d;
        }

        #banner input[type="submit"].alt,
        #banner input[type="reset"].alt,
        #banner input[type="button"].alt,
        #banner button.alt,
        #banner .button.alt {
            background-color: transparent;
            box-shadow: inset 0 0 0 2px #EFEDE9;
            color: #EFEDE9 !important;
        }

            #banner input[type="submit"].alt:hover,
            #banner input[type="reset"].alt:hover,
            #banner input[type="button"].alt:hover,
            #banner button.alt:hover,
            #banner .button.alt:hover {
                background: rgba(255, 255, 255, 0.25);
            }

            #banner input[type="submit"].alt:active,
            #banner input[type="reset"].alt:active,
            #banner input[type="button"].alt:active,
            #banner button.alt:active,
            #banner .button.alt:active {
                background-color: rgba(255, 255, 255, 0.2);
            }

            #banner input[type="submit"].alt.icon:before,
            #banner input[type="reset"].alt.icon:before,
            #banner input[type="button"].alt.icon:before,
            #banner button.alt.icon:before,
            #banner .button.alt.icon:before {
                color: #f8d1d2;
            }

        #banner input[type="submit"].special,
        #banner input[type="reset"].special,
        #banner input[type="button"].special,
        #banner button.special,
        #banner .button.special {
            background-color: #EFEDE9;
            color: black !important;
        }

    #banner:after {
        -moz-transition: opacity 4s ease;
        -webkit-transition: opacity 4s ease;
        -ms-transition: opacity 4s ease;
        transition: opacity 4s ease;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        display: block;
        top: 0;
        left: 0;
        background-color: #0c0c0c;
        opacity: 0.25;
    }

    #banner .inner {
        max-width: 65em;
        width: calc(100% - 6em);
        margin: 0 auto;
        position: relative;
        z-index: 10000;
        line-height: 1.5;
    }

        @media screen and (max-width: 480px) {

            #banner .inner {
                max-width: 90%;
                width: 90%;
            }

        }

    #banner h1 {
        font-size: 2em;
        margin: 0 0 1em 0;
        padding: 0;
        letter-spacing: 3px;
        font-weight: 700;
    }

        #banner h1 span {
            font-weight: 400;
        }

    body.is-loading #banner:after {
        opacity: 1;
    }

    @media screen and (max-width: 1680px) {

        #banner {
            padding: 10em 0 8em 0;
        }

    }

    @media screen and (max-width: 1280px) {

        #banner {
            padding: 8em 0 6em 0;
        }

    }

    @media screen and (max-width: 980px) {

        #banner {
            padding: 12em 0 10em 0;
        }

            #banner br {
                display: none;
            }

    }

    @media screen and (max-width: 736px) {

        #banner {
            padding: 4em 0 2em 0;
        }

            #banner h1 {
                font-size: 1.75em;
            }

    }

    @media screen and (max-width: 480px) {

        #banner {
            padding: 5em 0 3em 0;
        }

            #banner ul {
                margin-top: 1em;
            }

    }

    section .inner {
		max-width: 65em;
		width: calc(100% - 6em);
		margin: 0 auto;
	}

		@media screen and (max-width: 480px) {

			section .inner {
				max-width: 90%;
				width: 90%;
			}

		}
        
        #main {
            padding: 4em 0 2em 0;
        }
    
        #one {
            padding: 3em 0 4em 0;
        }
    
            @media screen and (max-width: 980px) {
    
                #one {
                    padding: 2em 0 2em 0;
                }
    
            }
    
            @media screen and (max-width: 736px) {
    
                #one {
                    padding: 1em 0 0.1em 0;
                }
    
            }
    
footer{
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--dark);
    color: white;
    background-color: #7F9A9F;
}

.copyright-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.content-wrapper { /* Asume que agregas esta clase a tu div contenedor */
    flex: 1;
}


.copyright{
    font-size: 12px;
    opacity: 0.7;
    font-weight: 400;
    padding: 10px 0;
}

.footer-menus{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 40%;
}

.footer-container{
    height: fit-content;
    width: 100%;
    padding: 3rem 6rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-content-container{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.footer-content-container img {
    max-width: 100%; /* Asegura que el logo no sea más ancho que su contenedor */
    height: auto; /* Mantiene la proporción de aspecto */
}

@media (max-width: 600px) {
    .footer-content-container img {
        max-width: 50%; /* Reduce el tamaño del logo en pantallas pequeñas */
    }
}

.footer-info, .menu-item-footer{
    margin: 0.2rem 0;
    opacity: 0.7;
    color: white;
    text-decoration: none;
    transition: 0.5s;
}

.menu-item-footer:hover{
    opacity: 1;
}

.menu-title{
    font-size: var(--medium-text-font);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.social-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 100%;
}



.social-link:hover{
    opacity: 0.7;
}

.social-link{
    height: 70px;
    width:70px;
    background-size: 70%;
    background-position: center;
    margin-right: 1rem;
    background-repeat: no-repeat;
}

.social-link:nth-of-type(1){
    background-image: url('../images/FacebookBlanco.png'); /* Ajusta la ruta según sea necesario */
}

.social-link:nth-of-type(2){
    background-image: url('../images/InstagramBlanco.png'); /* Ajusta la ruta según sea necesario */
}

.social-link:nth-of-type(3){
    background-image: url('../images/tkt.webp'); /* Ajusta la ruta según sea necesario */
}


/*MEDIA QUERY*/
@media (max-width: 768px){
    
    .footer-container{
        padding: 2rem;
        flex-direction: column;
    }

    .footer-content-container{
        width: 100%;
        padding: 2rem 0;
        border-bottom: 1px solid #2A2A2A;
        justify-content: center;
        align-items: center;
    }

    .footer-content-container:nth-of-type(1){
        align-items: flex-start;
    }
    .footer-content-container:nth-of-type(3){
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-menus{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border-bottom: 1px solid #2A2A2A;
    }

    .footer-menus .footer-content-container:nth-of-type(1){
        width: 45%;
        align-items: flex-start;
        border-bottom: none;
    }
    .footer-menus .footer-content-container:nth-of-type(2){
        width: 45%;
        align-items: flex-start;
        border-bottom: none;
    }
}


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.contenedor {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.columna {
    flex: 50%; /* Las columnas ocupan el 50% del ancho del contenedor */
    padding: 10px;
    
}

.columna.foto img {
    width: 100%; /* Hace que la imagen sea completamente responsiva */
    height: auto; /* Mantiene la proporción de aspecto de la imagen */

   
}

/* Estilos para pantallas de menos de 600px de ancho */
@media (max-width: 600px) {
    .columna {
        width: 100%; /* Hace que la imagen sea completamente responsiva */
    height: auto; /* Mantiene la proporción de aspecto de la imagen */
        flex: 100%; /* Las columnas ocupan el 100% del ancho del contenedor en pantallas pequeñas */
    }
}


/* Estilos básicos */
.imagen-contenedor {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #D9D2C5; /* Color de fondo por defecto */
}

.imagen-contenedor img {
    max-width: 50%; /* Tamaño predeterminado de la imagen */
    height: auto;
}

/* Media query para pantallas de hasta 600px (generalmente móviles) */
@media (max-width: 600px) {
    .imagen-contenedor {
        background-color: transparent; /* Elimina el fondo en móviles */
    }

    .imagen-contenedor img {
        max-width: 100%; /* Permite que la imagen ocupe todo el ancho disponible */
    }
}



/* Estilos básicos */
.imagen-contenedor2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #F1D59D; /* Color de fondo por defecto */
}

.imagen-contenedor2 img {
    max-width: 50%; /* Tamaño predeterminado de la imagen */
    height: auto;
}/* Media query para pantallas de hasta 600px (generalmente móviles) */
@media (max-width: 600px) {
    .imagen-contenedor2 {
        background-color: transparent; /* Elimina el fondo en móviles */
    }

    .imagen-contenedor2 img {
        max-width: 100%; /* Permite que la imagen ocupe todo el ancho disponible */
    }
}


.nav-bar {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: #7F9A9F;
    padding: 12px 20px;
}
.logo img {width: 150px;}
.menu {display: flex;}
.menu li {padding-left: 30px;}
.menu li a {
    display: inline-block;
    text-decoration: none;
    color: #EFEDE9;
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
}
.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #EFEDE9;
    transition: 0.15s ease-in-out;
}
.menu li a:hover:after {width: 100%;}
.open-menu , .close-menu {
    position: absolute;
    color: #EFEDE9;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}
.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.close-menu {
    top: 20px;
    right: 20px;
}
#check {display: none;}
@media(max-width: 610px){
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10000;
        background-color: #EFEDE9;
        
        opacity: 1;
        transition: all 0.2s ease-in-out;
    }
    .menu li {margin-top: 40px;}
    .menu li a {padding: 10px; color: #7F9A9F;}
    .open-menu , .close-menu {display: block;}
    #check:checked ~ .menu {right: 0;}
}







.contact-container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.form-container, .map-container {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 1000px;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box; /* Asegura que padding no aumente el ancho */
}

button {
    background-color: #7F9A9F;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    display: inline-block; /* Permite que el botón se ajuste al texto */
    width: auto; /* Autoajuste según el contenido */
}

button:hover {
    background-color: #5e7779;
}

.map-container iframe {
    width: 100%;
    height: 400px; /* Ajusta según necesidad */
}

@media (max-width: 768px) {
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea,
    button {
        width: 100%; /* Asegura que los elementos ocupen todo el ancho disponible */
    }
    
    .map-container iframe {
        height: 300px; /* Altura más pequeña para dispositivos móviles */
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 10px;
    }

    .form-group label {
        margin-bottom: 5px; /* Espacio reducido entre etiquetas y campos */
    }

    button {
        width: 100%; /* Hace que el botón ocupe todo el ancho en móviles */
        padding: 12px 0; /* Mayor área de toque para mejorar accesibilidad */
    }

    .map-container iframe {
        height: 200px; /* Altura ajustada para pantallas muy pequeñas */
    }
}


body {
	margin: 0;
}

.image-grid {
	--gap: 16px;
	--num-cols: 4;
	--row-height: 300px;

	box-sizing: border-box;
	padding: var(--gap);

	display: grid;
	grid-template-columns: repeat(var(--num-cols), 1fr);
	grid-auto-rows: var(--row-height);
	gap: var(--gap);
}

.image-grid>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-grid-col-2 {
	grid-column: span 2;
}

.image-grid-row-2 {
	grid-row: span 2;
}

/* Anything udner 1024px */
@media screen and (max-width: 1024px) {
	.image-grid {
		--num-cols: 2;
		--row-height: 200px;
	}
}