/********** Template CSS **********/
:root {
    --primary: #FD5D14;
    --secondary: #FDBE33;
    --light: #F4F6F8;
    --dark: #040F28;
    --letrasmenu:#737F66;
    --menu: #DBDAB8;
    --letramenuactiva: #808285;
    --letraverde : #5B6D49;
}
custom-height { 
    height: 50vh; /* 50% de la altura de la ventana */ 
    background-color: lightblue; /* Color de fondo para visualización */ }

.bgcontenido {
    background-image: url('../img/hoja.png'); /* Reemplaza con la ruta de tu imagen */
    background-repeat: repeat; /* Repite la imagen a lo largo y ancho de la página */
    background-position: center; /* Centra la imagen en la página */
    background-attachment: fixed; /* Fija la imagen en su posición */
    /*opacity: 0.3;  Ajusta la opacidad para obtener el efecto de marca de agua */
    z-index: -1;
   /* position: relative;
   
    color: #000;  Color del texto para asegurar que sea legible */
}
.bgcontenidohistoria {
    height: 100vh; 
    background-image: url('../img/somos.jpg'); /* Reemplaza con la ruta de tu imagen */
    background-size: cover;
    background-repeat: no-repeat; /*Repite la imagen a lo largo y ancho de la página */
    background-position: center; /* Centra la imagen en la página */
    /*background-attachment: fixed;  Fija la imagen en su posición */
    /*opacity: 0.3;  Ajusta la opacidad para obtener el efecto de marca de agua */
    z-index: -1;
   /* position: relative;
   
    color: #000;  Color del texto para asegurar que sea legible */
}
.bgcontenidocontacto {
    height: 100vh; 
    background-image: url('../img/contacto.jpg'); /* Reemplaza con la ruta de tu imagen */
    background-size: cover;
    background-repeat: no-repeat; /*Repite la imagen a lo largo y ancho de la página */
    background-position: center; /* Centra la imagen en la página */
    /*background-attachment: fixed;  Fija la imagen en su posición */
    /*opacity: 0.3;  Ajusta la opacidad para obtener el efecto de marca de agua */
    z-index: -1;
   /* position: relative;
   
    color: #000;  Color del texto para asegurar que sea legible */
}
.contenido {
    z-index: 1;
    opacity: 1;
    background-color: transparent;
    padding: 20px;

}  
#map {
    height: 100vh;
    width: 100%;

}
.sectionini {
    height: 100vh;
    
    transition: opacity 1s ease-out, transform 1s ease-out;

}
.hidden {
    opacity: 0;
    transform: translateY(100px);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ajuste del contenedor */
.text-containerini {
    padding: 20px 40px; /* Mayor espacio alrededor del texto */
}
.containeriniI {
    display: flex;
    align-items: center; /* Centra el contenido verticalmente */
    justify-content: space-between; /* Asegura buen espacio entre imagen y texto */
    padding: 50px 0;
}

.image-containerini img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Opcional, agrega bordes redondeados */
}

/* En pantallas pequeñas, apila los elementos */
@media (max-width: 768px) {
    .containerini {
        flex-direction: column;
        text-align: center;
    }

    .text-containerini {
        padding: 20px;
    }
}
section {
    background: linear-gradient(135deg, #f2f2f2 0%, #ffffff 100%);
}
.image-containerini img {
    transition: transform 0.3s ease-in-out;
}

.image-containerini img:hover {
    transform: scale(1.05); /* Hace zoom al pasar el cursor */
}
/* Estilo para el botón */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff; /* Azul, ajustable según la marca */
    color: white;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #0056b3; /* Oscurece el botón al pasar el cursor */
}
@font-face {
    font-family: 'Audrey';
    src: url('../fonts/Audrey-Normal.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }

}
    /* Aplicar animaciones */
.animate-text {
    animation: fadeIn 2s ease-in-out;
}

.animate-image {
    animation: slideIn 2s ease-out;
}
/* Contenedor de la imagen */
.image-container {
    overflow: hidden;
}

/* Definir la animación */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%); /* Comienza fuera de la vista a la izquierda */
        opacity: 0;
    }
    to {
        transform: translateX(0); /* Llega a su posición original */
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%); /* Comienza fuera de la vista a la derecha */
        opacity: 0;
    }
    to {
        transform: translateX(0); /* Llega a su posición original */
        opacity: 1;
    }
}

/* Aplicar la animación a la imagen */
.slide-in-image-left {
    animation: slideInFromLeft 1s ease-out; /* Cambia a slideInFromRight si quieres que venga de la derecha */
    max-width: 100%;
    height: auto;
}
/* Asegúrate de que el contenedor del banner ocupe el ancho completo */
.banner {
    width: 100%;
    height: 100%; /* Ajusta la altura automáticamente */
    overflow: hidden; /* Oculta cualquier contenido que se desborde */
}

/* Ajusta la imagen para que se adapte al tamaño de la pantalla */
.banner-image {
    width: 100%;
    height: 50%; /* Mantiene la proporción de la imagen */
    /*object-fit: cover; /* Asegura que la imagen cubra completamente el contenedor */
}


.slide-in-image-righ {
    animation: slideInFromRight 1s ease-out; /* Cambia a slideInFromRight si quieres que venga de la derecha */
    max-width: 100%;
    height: auto;
}

.letraverde {
    color: var(--letraverde);
}
.letraclara {
    color: var(--menu);
}
.menu {
    background-color: var(--menu);
   

}
.footerH {
    background-color: var(--letraverde);
   

}
.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    transition: .5s;
}

.btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
}

.btn.btn-primary::after {
    background: var(--dark);
}

.btn:hover::after,
.btn.active::after {
    width: 50%;
    left: 25%;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 50%;
    bottom: 0;
    margin-left: -22px;
    border-radius: 0;
    z-index: 99;
}

.bg-dark-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.bg-light-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    padding: 35px 15px;
    font-family: 'Audrey', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--letraverde);
    outline: none;
    transition: .5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--menu);
    background-color: var(--letraverde)
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 15, 40, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.page-header {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
    background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../img/mproductos.jpg) center center no-repeat;
    background-size: cover;
}
.page-headerLinea {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
    background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../img/linea.jpg) center center no-repeat;
    background-size: cover;
}
.page-headerhistoria {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
    background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../img/historia.jpg) center center no-repeat;
    background-size: cover;
}
.page-headersede {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
    background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../img/sede.jpg) center center no-repeat;
    background-size: cover;
}
.page-headercontacto {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
    background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../img/bannercontacto.webp) center center no-repeat;
    background-size: cover;
}
.page-headerclientes {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
    background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../img/clientes.jpg) center center no-repeat;
    background-size: cover;
}
.fontpage-header{
    font-family: 'Audrey', sans-serif;
}

.service-item .service-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.service-item .service-icon i {
    transition: .2s;
}

.service-item:hover .service-icon i {
    font-size: 60px;
}

.portfolio-item {
    margin-bottom: 60px;
}

.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 200px;
    padding: 0 30px;
    right: 30px;
    left: 30px;
    bottom: -60px;
    background: #f8f7ee;
    z-index: 3;
}

.portfolio-btn {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    font-size: 120px;
    line-height: 0;
    transition: .1s;
    transition-delay: .3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: .5s;
    z-index: 1;
    background: rgba(4, 15, 40, .7);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}

@media (min-width: 992px) {
    .testimonial,
    .contact-form {
        margin-left: -90px;
    }
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--primary)
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--letraverde);
    transform: skew(40deg);
}
/********** CSS CARD  **********/
.card {
    border: 1px solid #ddd; /* Línea del marco */
    border-radius: 15px; /* Bordes redondeados */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra */
    padding: 20px;
    transition: transform 0.2s; /* Efecto hover */
    background-color: #fff;
}

.card img {
    border-radius: 10px; /* Bordes redondeados en las imágenes */
    width: auto;
    height: auto;
}

.card:hover {
    transform: scale(1.05); /* Ligeramente agranda el card al pasar el cursor */
}

.business-line {
    margin-bottom: 30px; /* Espacio entre tarjetas */
}

/********** CSS INICIO  **********/
/* Centrar todo el contenido en la pantalla */
/* Centrar todo el contenido en el medio de la pantalla */
.containerini {
    display: flex;
    justify-content: center;
    align-items: center;
     /*height: 100vh; Ocupar toda la altura de la pantalla */
    gap: 50px; /* Espacio entre los dos contenedores */
    padding: 0 20px; /* Margen interno */
}

/* Estilos para las imágenes */
.image-containerini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Espacio entre las imágenes */
}

.tilted-image {
    width: 250px;
    /*transform: rotate(10deg);  Inclina la imagen hacia la derecha */
    transition: transform 0.3s ease; /* Efecto de animación al pasar el ratón */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Agrega sombra a las imágenes */
}

.tilted-image:hover {
    transform: rotate(0deg); /* Endereza la imagen al pasar el ratón */
}

/* Contenedor del texto y el logo */
.text-containerini {
    max-width: 500px;
    text-align: center; /* Alinear texto al centro */
}

.company-logo {
    width: 150px;
    height: auto;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .containerini {
        flex-direction: column;
        justify-content: center;
    }

    .image-containerini, .text-containerini {
        align-items: center;
        text-align: center;
    }

    .tilted-image {
        width: 200px;
    }
}
.circle {
    width: 400px; /* Ajusta el tamaño según tus necesidades */
    height: 400px; /* Asegúrate de que el ancho y la altura sean iguales para formar un círculo */
    border-radius: 50%; /* Hace que el contenedor tenga bordes redondeados */
    overflow: hidden; /* Oculta cualquier parte de la imagen que se desborde del contenedor */
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra completamente el contenedor */
}

.vertical-band {
    width: 100px;
    background-color: #215323; /* Banda de color verde */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff; /* Borde blanco alrededor de la imagen */
}
/* sedes*/
/* Estilo general para centrar el contenido */
.containerini-sede {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px; /* Espacio entre cada sección */
    padding: 20px;
}

/* Estilo para los contenedores de cada sección */
.content-container-sede {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.reverse-sede {
    flex-direction: row-reverse;
}

/* Estilo para las imágenes */
.circle-sede {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.circle-sede img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-effect-sede:hover {
    transform: scale(1.1); /* Efecto hover en la imagen */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Estilo para los textos */
.text-right-sede, .text-left-sede {
    max-width: 500px;
    padding: 20px;
    transition: all 0.5s ease;
}

.text-right-sede {
    text-align: left;
}

.text-left-sede {
    text-align: right;
}

/* Estilo para los títulos */
.title-sede {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

/* Estilo para los párrafos */
.description-sede {
    font-size: 18px;
    color: #7f8c8d;
}

/* Estilo para las direcciones */
.address-sede {
    font-size: 14px;
    color: #95a5a6;
    text-align: center;
    margin-top: 10px;
}

/* Animación de aparición */
.animate-text-sede {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-text-sede.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive design para pantallas pequeñas */
@media (max-width: 768px) {
    .content-container-sede {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .text-right-sede, .text-left-sede {
        max-width: 100%;
        text-align: center;
    }
}

/* Estilo para el botón MODAL */
.btnmodal {
    cursor: pointer;
}

/* Estilo para el modal */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed; /* Fijo en la pantalla */
    z-index: 9999; /* Por encima de otros elementos */
    left: 0;
    top: 0;
    width: 100%; /* Ancho completo */
    height: 100%; /* Alto completo */
    overflow: auto; /* Habilita el scroll */
    background-color: rgba(0, 0, 0, 0.4); /* Fondo oscuro */
}

/* Estilo del contenido del modal */
.modal-content {
    background-color: var(--light);
    margin: 15% auto; /* Centrado vertical y horizontal */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Ancho del contenido */
    border-radius: 10px;
}

/* Estilo para el botón de cierre */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.logo-container {
    display: flex;
    align-items: center;
}
.product-image {
    
    object-fit: cover;
  }

.logo-horizontal,
.logo-vertical {
    max-width: 100%;
    height: auto;
}

.logo-horizontal {
    display: block; /* Show horizontal logo by default */
}

.logo-vertical {
    display: none; /* Hide vertical logo by default */
}

@media (max-width: 600px) {
    .logo-horizontal {
        display: none; /* Hide horizontal logo on smaller screens */
    }
    .logo-vertical {
        display: block; /* Show vertical logo on smaller screens */
    }
    .modal-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
  
      .product-image {
        margin-bottom: 10px;
      }
}

/* pagina CLIENTES*/

 /* Estilos de la sección de clientes */
 .clientes-section {
    padding: 50px;
    background-color: #f7f7f7;
    text-align: center;
  }

  .clientes-title {
    font-size: 2em;
    color: #07410c;
    margin-bottom: 20px;
  }
  .clientes-subtitle {
    font-size: 1.1em;
    color: #bbbbbb;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }


  .clientes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Tres columnas para dividir las filas */
    gap: 20px;
    justify-items: center;
  }

  .clientes-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
  }

  /* Desplazamiento en la segunda fila */
  .clientes-card:nth-child(4),
  .clientes-card:nth-child(5) {
    margin-top: 30px;
  }

  .clientes-logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }

  .clientes-description {
    
    font-size: 0.9em;
    color: #666;
  }
   /* Media Queries para diseño responsivo */
   @media (max-width: 992px) {
    .clientes-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .clientes-container {
      grid-template-columns: 1fr;
    }
  }

  /* Animación de desvanecimiento */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Efecto de hover en el logotipo */
  .clientes-card:hover .clientes-logo {
    transform: scale(1.1);
  }

  .clientes-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }

  /* INDEX */
  /* Contenedor principal */
/* Contenedor principal */
/* Contenedor principal */
.containerindex {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: #f9f9f9;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Estilos para la imagen */
.image-content {
    max-width: 35%;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 2s ease;
}

/* Estilos para el texto */
.text-content {
    max-width: 60%;
    color: #333;
}

.text-content h1 {
    font-size: 4em;
    font-weight: bold;
    color: #2f6d5f; /* Verde oscuro que refleja sostenibilidad */
    margin: 0;
    padding-bottom: 10px;
    animation: fadeIn 1s ease;
}

.text-content h2 {
    font-size: 1.8em;
    font-style: italic;
    color: #5f8b79; /* Verde oliva claro */
    margin: 0;
    padding-bottom: 15px;
    animation: fadeIn 1.5s ease;
}

.text-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividad */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .image-content, .text-content {
        max-width: 100%;
    }

    .text-content h1 {
        font-size: 2.5em;
    }

    .text-content h2 {
        font-size: 1.5em;
    }
}
