/* Estilos base */
body {
    font-family: sans-serif;
    margin: 0;
}

.fc{font-weight:bolder;}

.hero {
    position: relative; /* Para posicionar el contenido encima de la imagen */
    color: #fff;
    text-align: center;
    padding: 80px 20px; /* Ajustar padding base */
    overflow: hidden; /* Para que la imagen no sobresalga si es necesario */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Coloca la imagen detrás del contenido */
}



.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre todo el espacio manteniendo la proporción */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Capa oscura para legibilidad */
    z-index: -1; /* También detrás del contenido */
}

.hero-content {
    position: relative; /* Asegura que el texto esté encima de la capa oscura */
    max-width: 960px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-content h4 {
	font-weight: 600;
    font-size: 40px;
	text-transform: uppercase;
    margin-bottom: 15px;
	text-align:left;
}

.hero-content h5 {
    font-weight: 400;
    font-size: 70px;
	text-transform: uppercase;
    margin: 0px;
	text-align:left;
}

.hero-content .button {
    display: inline-block;
    background-color: #a0c45e;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
}

/* Estilos para el header de escritorio (oculto por defecto) */
.main-header {
    display: none;
    color: #fff;
    padding: 20px 0;
	display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.logo-desktop {
    display: flex;
    align-items: center;
}

.logo-desktop img {
    height: 60px;
    margin-right: 10px;
}

.logo-desktop p {
    font-size: 1em;
    line-height: 1.1;
    margin: 0;
}

.desktop-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.desktop-nav li {
    margin-left: 25px;
}

.desktop-nav li:first-child {
    margin-left: 0;
}

.desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}

/* Estilos para el header de tablet (oculto por defecto) */
.tablet-header {
    display: none;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    flex-direction: column; /* Para centrar logo y poner menú abajo */
    align-items: center;
}

.logo-tablet {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.logo-tablet img {
    height: 50px;
    margin-bottom: 5px;
}

.logo-tablet p {
    font-size: 1.2em;
    line-height: 1.1;
    margin: 0;
}

.tablet-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.tablet-nav li {
    margin: 0 15px;
}

.tablet-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}

/* Estilos para el header móvil */
.mobile-header {
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.logo-mobile-container {
    display: flex;
    align-items: center;
}

.logo-mobile-container img {
    height: 30px;
    margin-right: 10px;
}

.logo-mobile-container p {
    font-size: 0.9em;
    line-height: 1.1;
    margin: 0;
}

.hamburger-menu {
  display: block;
  width: 40px; /* Aumenta el ancho */
  height: 35px; /* Aumenta la altura */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute; /* Cambia a absolute para posicionar */
  right: 70px; /* Ajusta la distancia desde la izquierda */
  top: 20px; /* Ajusta la distancia desde la parte superior según necesites */
  z-index: 10;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.bar:last-child {
    margin-bottom: 0;
}

.hamburger-menu.open .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.mobile-nav {
    position: absolute;
    top: 100%;
    right: 10px;
    width: 80%;
    background-color: #394632;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    z-index: 5;
	border-radius:20px;
	margin: 5% 10%;
}

.mobile-nav.open {
    max-height: 200px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}

.act{background:#8BA57A;}

/* Media Queries */

/* Móviles (hasta 480px) */
@media (max-width: 480px) {
    .main-header, .tablet-header {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    .hero {
        padding: 60px 20px; /* Ajustar padding para móvil */
    }
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content h2 {
        font-size: 1.3em;
    }
}

/* Tablets (desde 481px hasta 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .main-header, .mobile-header {
        display: none;
    }
    .tablet-header {
        display: flex;
    }
    .hero {
        padding: 80px 20px; /* Ajustar padding para tablet */
    }
    .hero-content h1 {
        font-size: 2.8em;
    }
    .hero-content h2 {
        font-size: 1.6em;
    }
}

/* Escritorio (desde 769px) */
@media (min-width: 769px) {
    .mobile-header, .tablet-header {
        display: none;
    }
    .main-header {
        display: flex;
    }
    .hero {
        padding: 120px 20px; /* Ajustar padding para escritorio */
    }
    .hero-content h1 {
        font-size: 3em;
    }
    .hero-content h2 {
        font-size: 1.8em;
    }
}



.freedom {
    padding: 40px 20px;
    text-align: center;
    background-color: #9FB293;
}

.freedom h2 {
    font-size: 2em;
    margin-bottom: 30px;
	color: #242B1F;
	
}

.freedom-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1320px;
    margin: 0 auto;
}

.freedom-cards .card {
    background:#242B1F;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
	border: 20px solid #242B1F;
}

.freedom-cards .card img {
    width: 100%;
    height: auto;
    display: block;
}

.freedom-cards .card h3 {
    padding: 15px;
    margin: 0;
    font-size: 1.2em;
    text-align: center;
	background:#242B1F;
	color: white;
}

.freedom-cards .card a {
    display: block;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    color: #242B1F;
    border: 2px solid #fff;
	border-radius: 15px;
	background:#242B1F;
	color: white;
}


.button1 {
    margin-top:50px;
	padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    color: #242B1F;
    border: 2px solid #fff;
	border-radius: 15px;
	color: white;
}


/* Media Queries */

/* Móviles (hasta 480px) */
@media (max-width: 480px) {
    .freedom-cards {
        flex-direction: column;
        align-items: center;
    }

    .freedom-cards .card {
        width: 90%;
        margin-bottom: 20px;
    }

    .freedom-cards .card:last-child {
        margin-bottom: 0;
    }
}

/* Tablets (desde 481px hasta 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .freedom-cards {
        justify-content: space-around;
    }

    .aventura-card,
    .cultura-card {
        width: calc(50% - 10px); /* Dos columnas con espacio entre ellas */
        margin-bottom: 20px;
    }

    .relajacion-card {
        width: 100%; /* La tercera ocupa toda la fila */
    }
}

/* Escritorio (desde 769px) */
@media (min-width: 769px) {
    .freedom-cards {
        justify-content: center; /* Vuelve a la disposición original de tres en línea */
    }

    .freedom-cards .card {
        width: 300px; /* O el ancho que tenías originalmente */
        margin-bottom: 0; /* Elimina el margen inferior adicional */
    }
}


.places {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    margin: 0 auto;
    align-items: center;
    background-color: #B4CAA7;
	color:#242B1F;
}

.places-image {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.places-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.places-content {
    flex: 1;
    min-width: 300px;
	
}

.places-content h2 {
    font-size: 100px;
    margin-bottom: 15px;
}

.places-content p {
    line-height: 1.6;
    margin-bottom: 15px;
	font-size: 22px;
}

.places-content .button {
    display: inline-block;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    border: 2px solid #242B1F;
	border-radius: 15px;
	color:#242B1F;

}


/* Media Queries para Tablets y Móviles */

/* Móviles (hasta 768px) - Se incluye tablets también inicialmente para apilar */
@media (max-width: 768px) {
    .places {
        flex-direction: column; /* Apila imagen y contenido */
        text-align: center; /* Centra el texto en pantallas pequeñas */
    }

    .places-image {
        margin-right: 0; /* Elimina el margen derecho */
        margin-bottom: 20px; /* Agrega espacio debajo de la imagen */
    }

    .places-content {
        text-align: left; /* Restaura la alineación izquierda del texto */
    }
}

/* Tablets (desde 769px hasta un ancho mayor si lo deseas) - Ajusta el ancho según necesites */
@media (min-width: 769px) and (max-width: 1024px) { /* Ejemplo de rango para tablets */
    .places {
        flex-direction: column; /* Apila imagen y contenido */
        text-align: center; /* Centra el texto en tablets */
    }

    .places-image {
        margin-right: 0; /* Elimina el margen derecho */
        margin-bottom: 20px; /* Agrega espacio debajo de la imagen */
    }

    .places-content {
        text-align: left; /* Restaura la alineación izquierda del texto */
    }
}

/* Escritorio (ancho mayor a tablets) - Restaura la disposición lado a lado */
@media (min-width: 1025px) {
    .places {
        flex-direction: row;
        text-align: left; /* Restaura la alineación izquierda del texto */
        align-items: center; /* Alinea verticalmente imagen y texto */
    }

    .places-image {
        margin-right: 20px; /* Restaura el margen derecho */
        margin-bottom: 0; /* Elimina el margen inferior */
    }
}

.about-us {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    margin: 0 auto;
    align-items: center;
    background-color: #3F4C37;
    text-align: left; /* Alineación de texto por defecto */
	color: white;
}

.about-title {
    flex-basis: 100%; /* Ocupa todo el ancho inicialmente */
    margin-bottom: 20px;
}

.about-title h2 {
     font-size: 100px;
    margin-top: 0;
	
}

.about-image {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block; /* Evita espacio extra debajo de la imagen */
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-content .button {
    display: inline-block;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    border: 2px solid #fff;
	border-radius: 15px;

}

.about-content .button:hover {
    background-color: #8bb54b;
}

/* Media Queries para Tablets y Móviles */

/* Móviles (hasta 768px) */
@media (max-width: 768px) {
    .about-us {
        flex-direction: column; /* Apila los elementos */
        text-align: center; /* Centra el texto en pantallas pequeñas */
    }

    .about-image {
        margin-right: 0; /* Elimina el margen derecho */
        margin-bottom: 20px; /* Agrega espacio debajo de la imagen */
		order: 2;
    }

    .about-title {
        margin-bottom: 10px; /* Reduce el margen inferior del título */
		order: 1;
    }

    .about-content {
        text-align: left; /* Restaura la alineación izquierda del texto */
		order: 3;
    }
}

/* Tablets (desde 769px hasta un ancho mayor si lo deseas) - Ajusta el ancho según necesites */
@media (min-width: 769px) and (max-width: 1024px) { /* Ejemplo de rango para tablets */
    .about-us {
        flex-direction: column; /* Apila los elementos */
        text-align: center; /* Centra el texto en tablets */
    }

    .about-image {
        margin-right: 0; /* Elimina el margen derecho */
        margin-bottom: 20px; /* Agrega espacio debajo de la imagen */
		order: 2;
    }

    .about-title {
        margin-bottom: 10px; /* Reduce el margen inferior del título */
		order: 1;
    }

    .about-content {
        text-align: left; /* Restaura la alineación izquierda del texto */
		order: 3;
    }
}

/* Escritorio (ancho mayor a tablets) - Restaura la disposición lado a lado */
@media (min-width: 1025px) {
    .about-us {
        flex-direction: row;
        text-align: left; /* Restaura la alineación izquierda del texto */
        align-items: center; /* Alinea verticalmente imagen y texto */
    }

    .about-title {
        flex-basis: auto; /* Permite que el título vuelva a su ancho natural */
        margin-bottom: 0; /* Elimina el margen inferior adicional */
        text-align: left; /* Restaura la alineación izquierda del título */
        margin-right: 20px; /* Agrega margen derecho para separarlo de la imagen */
    }

    .about-image {
        margin-right: 20px; /* Restaura el margen derecho */
        margin-bottom: 0; /* Elimina el margen inferior */
    }
}



.testimonials-slider-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #242B1F; /* Fondo similar a la imagen */
}

.testimonials-slider-section h2 {
    font-size: 50px;
    margin-bottom: 30px;
    color: #fff;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative; /* Para posicionar los botones */
}

.testimonial {
    padding: 20px;
    background-color: #242B1F;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: none; /* Ocultar todos por defecto */
}

.testimonial.active {
    display: block; /* Mostrar el slide activo */
}

.testimonial p {
    line-height: 1.6;
    margin-bottom: 10px;
    color: #fff;
}

.testimonial .author {
    font-style: italic;
    color: #fff;
    display: block;
    margin-top: 10px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.dots-container {
    display: flex;
    gap: 15px; /* Aumentar el espacio entre los dots */
}

.dot {
    height: 15px; /* Aumentar la altura del dot */
    width: 15px; /* Aumentar el ancho del dot */
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Transición suave para el cambio de color */
}

.dot.active {
    background-color: #a0c45e; /* Color activo similar al botón principal */
}

/* Estilos Responsive */
@media (max-width: 768px) {
    .testimonials-slider-section {
        padding: 40px 15px;
    }

    .testimonials-slider-section h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .testimonial {
        padding: 15px;
        margin-bottom: 15px;
    }

    .dots-container {
        gap: 10px; /* Ajustar el espacio en pantallas pequeñas */
    }

    .dot {
        height: 12px; /* Ajustar el tamaño en pantallas pequeñas */
        width: 12px;
    }
}


.instagram {
    padding: 40px 20px;
    text-align: center;
	background-color:#9DB290;
	color:#343E2D;
}

.instagram h2 {
    font-size: 60px;
    margin-bottom: 20px;
}

.instagram-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 960px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.instagram-gallery a {
    display: block; /* Para que los márgenes funcionen correctamente en modo columna */
    width: 100%; /* Ocupar todo el ancho disponible en modo columna */
    max-width: 300px; /* Mantener un ancho máximo en pantallas más grandes */
    margin-bottom: 10px; /* Espacio entre imágenes en modo columna */
}

.instagram-gallery a:last-child {
    margin-bottom: 0; /* Eliminar el margen inferior de la última imagen */
}

.instagram-gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    display: block; /* Evitar espacio extra debajo de la imagen */
}

.inst2 .button {
    display: inline-block;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    border: 2px solid #242B1F;
	border-radius: 15px;
	color:#242B1F;

}



/* Media Query para Móviles (hasta 768px) */
@media (max-width: 768px) {
    .instagram-gallery {
        flex-direction: column; /* Apilar las imágenes una debajo de la otra */
        align-items: center; /* Centrar las imágenes horizontalmente */
    }

    .instagram-gallery a {
        max-width: 100%; /* Las imágenes ocupan todo el ancho en móviles */
    }
}

/* Media Query para Tablets (desde 769px) - Puedes ajustar el ancho máximo según necesites */
@media (min-width: 769px) {
    .instagram-gallery {
        flex-direction: row; /* Volver a la disposición horizontal */
        justify-content: center; /* Centrar las imágenes en la fila */
        align-items: flex-start; /* Alinear las imágenes en la parte superior */
    }

    .instagram-gallery a {
        width: auto; /* Volver al ancho automático para la disposición horizontal */
        max-width: 300px; /* Mantener un ancho máximo para cada imagen */
        margin-bottom: 0; /* Eliminar el margen inferior en la disposición horizontal */
    }
}
.main-footer {
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    text-align: center; /* Centrado por defecto */
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%; /* Ajusta la altura del degradado */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)); /* Degradado de oscuro a claro */
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* Para estar encima del overlay */
    padding: 140px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Asegura que el contenido ocupe la altura del footer para el bottom */
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px; /* Espacio entre la info y la parte inferior */
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 300px;
    height: auto;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.9em;
    line-height: 1.1;
    margin: 0;
}

.contact-info {
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 5px;
    font-size: 0.9em;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Alinear al final verticalmente */
    width: 100%;
}

.social-links {
    text-align: left;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
}

.social-links img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

.social-links a:last-child {
    margin-right: 0;
}

.copyright {
    text-align: right;
    font-size: 0.8em;
}

/* Media Queries para Responsive */

/* Móviles (hasta 768px) - Todo centrado */
@media (max-width: 768px) {
    .footer-content {
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links {
        margin-bottom: 15px;
        text-align: center;
    }

    .copyright {
        text-align: center;
    }
}

/* Escritorio (desde 769px) - Logos izquierda inferior, copyright derecha inferior, resto centrado */
@media (min-width: 769px) {
    .footer-content {
        align-items: center; /* Centrar el contenido verticalmente */
        text-align: center; /* Centrar el texto principal */
    }

    .footer-info {
        margin-bottom: 30px; /* Más espacio para separar */
    }

    .footer-bottom {
        justify-content: space-between; /* Espacio entre logos y copyright */
        align-items: flex-end;
    }

    .social-links {
        text-align: left;
    }

    .copyright {
        text-align: right;
    }
}




.explore-magical-places {
    background-color: #242B1F; /* Fondo oscuro similar */
    color: #fff; /* Texto claro similar */
    padding: 60px 20px;
    text-align: center;
}

.explore-magical-places .icon {
    font-size: 2em; /* Ajusta el tamaño del icono */
    margin-bottom: 20px;
    color: #a0c45e; /* Color del icono similar */
}

.explore-magical-places h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.explore-magical-places p {
    font-size: 24px;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .explore-magical-places {
        padding: 40px 15px;
    }

    .explore-magical-places h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .explore-magical-places p {
        font-size: 1em;
        line-height: 1.6;
    }
}


/* Estilos base (ya incluyen algo de centrado para el formulario) */
.contact-section {
    background-color: #38413a; /* Fondo oscuro similar */
    color: #f0ead6; /* Texto claro similar */
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 0 auto;
}

.contact-info,
.contact-form {
    flex: 1 1 300px; /* Mínimo 300px de ancho, crecen igual */
}

.contact-info h2,
.contact-form h2,
.contact-info h3 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: left; /* Alineación por defecto a la izquierda */
}

.contact-info p {
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center; /* Alineación por defecto a la izquierda */
	font-size: 40px;
	font-weight:bold;
	
}

.contact-info a {
    color: #a0c45e; /* Color de enlace similar */
    text-decoration: none;
	font-size: 40px;
	font-weight:bold;
	
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: left; /* Alineación por defecto a la izquierda */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555;
    background-color: #4a5e4d;
    color: #f0ead6;
    border-radius: 5px;
    box-sizing: border-box; /* Evita que el padding aumente el ancho */
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button[type="submit"] {
    background-color: #a0c45e; /* Color del botón similar */
    color: #38413a;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background-color: #8bb54b;
}

/* Responsive Design para Tablets y Móviles */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column; /* Apilar la información y el formulario */
        text-align: center; /* Centrar el texto general de la sección */
    }

    .contact-info {
        width: 100%;
        text-align: center; /* Centrar el texto de la información de contacto */
    }

    .contact-info h2,
    .contact-info h3,
    .contact-info p {
        text-align: center; /* Asegurar que los elementos de texto estén centrados */
    }

    .contact-form {
        width: 100%;
        /* El formulario se mantiene con alineación izquierda de etiquetas e inputs */
    }

    .contact-form h2 {
        text-align: center; /* Centrar el título del formulario */
    }

    .contact-form button[type="submit"] {
        width: 100%; /* Hacer que el botón ocupe todo el ancho */
    }
}

.mission-vision-values-responsive {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centrar las tarjetas en pantallas grandes */
    gap: 20px;
    padding: 40px 20px;
    background-color: #38413a; /* Fondo oscuro similar */
}

.mission-vision-values-responsive .card {
    background-color: #4a5e4d; /* Fondo de las tarjetas similar */
    color: #f0ead6; /* Texto claro similar */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-sizing: border-box;
    width: calc(33.33% - 40px); /* Aproximadamente un tercio del ancho con márgenes */
    margin-bottom: 20px; /* Espacio entre las tarjetas en pantallas grandes */
}

.mission-vision-values-responsive .card h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.mission-vision-values-responsive .card p {
    font-size: 1em;
    line-height: 1.6;
}

/* Estilos para Tablets (ancho máximo de 768px) */
@media (max-width: 768px) {
    .mission-vision-values-responsive .card {
        width: calc(50% - 30px); /* Dos tarjetas por línea */
        margin-bottom: 20px;
    }

    .mission-vision-values-responsive .card:last-child {
        width: calc(100% - 20px); /* La última tarjeta ocupa una línea completa si hay un número impar */
    }
}

/* Estilos para Móviles (ancho máximo de 480px) */
@media (max-width: 480px) {
    .mission-vision-values-responsive .card {
        width: calc(100% - 20px); /* Una tarjeta por línea */
        margin-bottom: 20px;
    }
}


.ocultar-en-grande {display: none !important;}

@media (max-width: 1024px) {
    /* Mostrar en pantallas pequeñas (tablets y móviles) */
    .ocultar-en-grande {
        display: block !important; /* O el tipo de display que necesites: inline, inline-block, flex, grid, etc. */
    }
}

.ocultar-en-pequeno {
    display: none !important;
}

@media (min-width: 1025px) {
    /* Mostrar en pantallas grandes (escritorio y laptops) */
    .ocultar-en-pequeno {
        display: block !important; /* O el tipo de display que necesites */
    }
}

