
html{
    scroll-behavior: smooth;
    font-family: "Tenor Sans", serif;
    font-size: 1rem;
    font-weight: 400;
}

/* Estilo general */
body {
    margin: 0;
    font-family: "Tenor Sans", serif;
    color: #fff;
    background-color: #000000e7;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1rem 0rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
    margin: 0 auto;
}

.nav-item {
    color: #fff;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #f39c12;
}
/* Logo */
.logo img {
    height: 50px;
    width: auto;
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.navbar-toggler-icon {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon:nth-child(2) {
    margin: 5px 0;
}

/* Estilo de los enlaces */
.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #f39c12;
}

/* Responsivo */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 1rem;
        border-radius: 8px;
        width: 100px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .navbar-toggler {
        display: flex;
    }
}

/* Estilo adicional para pantallas muy pequeñas (menos de 480px) */
@media (max-width: 480px) {
    .nav-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .logo img {
        height: 50px; /* Logo más pequeño */
    }

    .navbar-toggler {
        align-self: flex-end;
    }

    .nav-links {
        width: 100%; /* Ocupa todo el ancho */
        top: 50px;
        right: 0;
        padding: 1rem;
    }

    .nav-item {
        font-size: 14px; /* Tamaño de fuente más pequeño */
    }
}

 .whatsapp {
      position:fixed;
      width:60px;
      height:60px;
      bottom:40px;
      left:40px;
      background-color:#25d366;
      color:#FFF;
      border-radius:50px;
      text-align:center;
      font-size:30px;
      z-index:100;
    }
    
    .whatsapp-icon {
      margin-top:13px;
    }


.container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    border-radius: 15px;

  
    background: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;

}

.container .slide .item{
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #181818;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}


.slide .item:nth-child(3){
    left: 70%;
}
.slide .item:nth-child(4){
    left: calc(50% + 220px);
}
.slide .item:nth-child(5){
    left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}



.item .content{
    position: absolute;
    top: 55%;
    left: 100px;
    width: 500px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
}


.slide .item:nth-child(2) .content{
    display: block;
}


.content .name{
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
    text-shadow: 4px 0px 2px #181717;
    color: #d2a67a;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    font-size: 18px;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    font-size: 17px;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}





.buttonS{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.buttonS button{
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #e9e6e6;
    transition: 0.3s;
}

.buttonS button:hover{
    background: #ababab;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa toda la altura de la ventana */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;z-index: 999;
    
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.527); /* Fondo negro translúcido */
    z-index: 0; /* Colocado encima de la imagen pero debajo del texto */
    border: none;
  
}

.hero-content {
    position: relative;
    z-index: 3; /* Coloca el contenido encima de la imagen */
    text-align: center;
    color: #fff; /* Texto blanco */
   
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Sombra para mejor visibilidad */
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.hero .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    color: #fff;
    background-color: #cead8c;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero .btn:hover {
    background-color: #b19273;
}

/* Responsividad */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .btn {
        padding: 0.6rem 1rem;
        font-size: 1rem;
    }
}


/* Contenedores */
.contenedor {
    display: flex;
    gap: 2rem;
    background-color: #1c1c1c;
    padding: 2rem 6rem;
    margin: 2rem 39px;
    animation: fadeIn 1.5s ease;
  
   
}
.contenedor2 {
    display: flex;
    gap: 2rem;
    background-color: #1c1c1c;
    padding: 4rem 2rem;
    margin: 1rem 0;
    animation: fadeIn 1.5s ease;
    text-align: left;
}
.contenedor3 {
    display: flex;
    gap: 2rem;
    background-color: #1c1c1c;
    padding: 2rem 6rem;
    margin: 2rem 39px;
    animation: fadeIn 1.5s ease;
}
.contenedor4 {
    display: flex;
    gap: 2rem;
    background-color: #1c1c1c;
    padding: 2rem 6rem;
    margin: 2rem 39px;
    animation: fadeIn 1.5s ease;
}

.left, .right {
    flex: 1;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}


.right {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: #000;
}

.contenedor h2, h3 {
    color: #cead8c;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contenedor h1{
    color: #cead8c;
    margin-bottom: 1rem;
    font-size: 30px;
}

.contenedor p {
    font-size: 19px;
    line-height: 1.6;
}

.contenedor2 h2, h3 {
    color: #cead8c;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contenedor2 h1{
    color: #cead8c;
    margin-bottom: 1rem;
    font-size: 30px;
}

.contenedor2 p {
    font-size: 19px;
    line-height: 1.6;
}
.contenedor3 h2, h3 {
    color: #cead8c;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contenedor3 h1{
    color: #cead8c;
    margin-bottom: 1rem;
    font-size: 30px;
}

.contenedor3 p {
    font-size: 19px;
    line-height: 1.6;
}
.contenedor4 h2, h3 {
    color: #cead8c;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contenedor4 h1{
    color: #cead8c;
    margin-bottom: 1rem;
    font-size: 30px;
}

.contenedor4 p {
    font-size: 19px;
    line-height: 1.6;
}

.aligned-list {
    list-style-position: inside; /* Hace que las viñetas estén dentro y alineadas al texto */
    padding: 0; /* Elimina el espacio adicional de la lista */
    margin: 0; /* Elimina márgenes adicionales */
    
}

.aligned-list li {
    margin: 5px 0; /* Añade un poco de espacio vertical entre los elementos */
    font-size: 19px; /* Ajusta el tamaño del texto según sea necesario */
    line-height: 1.5; /* Espaciado entre líneas para mejor legibilidad */
    text-align: left;
}


/* Contenedor principal */
.content {
    text-align: center;
    padding: 2rem 1rem;
}

/* Estilo del H1 */
.name {
    font-size: 3rem; /* Tamaño grande del texto */
    font-weight: bold;
    font-family: 'Roboto', sans-serif; /* Cambia la fuente a algo moderno */
    color: #fff; /* Color principal */
    text-transform: uppercase; /* Convierte el texto a mayúsculas */
    position: relative; /* Necesario para la animación */
    display: inline-block; /* Para que el texto y el ícono estén juntos */
}
  /* Icono */
.name i {
    font-size: 1.5em; /* Tamaño relativo del icono */
    color: #fff; /* Color del ícono */
    margin-left: 0.5rem;
    transition: transform 0.5s ease, color 0.3s ease;
}

/* Efectos de animación */
.name::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    bottom: -10px;
    left: 0;
    background-color: #d2a67a;
    transition: width 0.5s ease-in-out;
}
.name:hover::after {
    width: 100%; /* Línea animada debajo del texto */
}
  
.name:hover i {
    transform: rotate(360deg); /* Rotación del ícono */
    color: #d2a67a; /* Cambia el color del ícono al pasar el mouse */
}
  
  /* Animación de entrada */
.name {
    animation: fadeIn 2s ease-out;
}
@keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .button-link{
    display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #cead8c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;

  }

  .button-link:hover {
    background-color: #8f7051;
  }

  .btnVision{
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #cead8c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  }

  .btnVision:hover {
    background-color: #8f7051;
  }
  
  
  


/* Carrusel */
.carousel {
    display: flex;
    animation: slide 15s infinite;
    width: 100%;
    height: 100%;
}
.carousel1 {
    display: flex;
    width: 100%;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    transition: transform 2s ease-in-out;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilo de la Galería */
.galeria {
    display: contents;
    padding: 2rem 1rem;
    background-color: #1616169d;
    text-align: center;
    
}

.galeria h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #cead8c
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.galeria-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.1); /* Ampliación suave al pasar el mouse */
}

.galeria-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
    transform: scale(0.8);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.modal .close:hover {
    color: #cead8c;
}

/* Flechas de navegación */
.prev, .next {
    position: absolute;
    top: 50%;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
    z-index: 1100;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    color: #cead8c;
}



/* Caption */
#caption {
    margin-top: 10px;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
}

/* Sección de Contacto */
.contacto-section {
    padding: 2rem 1rem;
    background-color: #1c1c1c;
    text-align: center;
}

.contacto-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #cead8c;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: calc(43% - 1rem); /* 3 columnas en pantallas grandes */
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: "Tenor Sans";
}

.contact-form textarea {
    width: 87%; /* Toma todo el ancho */
    resize: vertical;
    min-height: 100px;
}

.contact-form button.contact-btn {
    width: 90%;
    padding: 0.8rem;
    font-size: 1.2rem;
    color: #fff;
    background-color: #cead8c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button.contact-btn:hover {
    background-color: #b19273;
}

@media (max-width: 768px) {
    .contact-form input,
    .contact-form textarea {
        width: 100%; /* Una columna en pantallas pequeñas */
    }
}


/*======================
	ANIMATION SVG SECTION
========================*/

svg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: block;
 
  
  z-index: -1;
}

/*==================
	END ANIMATION SVG SECTION
====================*/



/* Footer General */
.footer-container {
    background-color: #161616b6;
    color: #fff;
    padding: 0rem 1rem;
    font-size: 0.9rem;
    display: block;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

/* Footer Columnas */
.footer-col {
    flex: 1;
    min-width: 250px;
    
   
}
.mantente{
    font-size: 15px;
    color: #b19273;
    padding: 5px;
    margin: 2px;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
}

.footer-logo {
    max-width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
    padding: 0px 50px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-description {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #bbb;
    font-size: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    font-size: 16px;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin-right: 1rem;
    color: #aaa;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    justify-content: center;
    align-items: center;
    padding: 1px 23px;
}

.social-icons a:hover {
    color: #fff;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 50%;
}

.newsletter-input {
    padding: 0.5rem;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #1c1c1c;
    color: #fff;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-button {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #cead8c;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color:#cead8c;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #aaa;
}

.footer-bottom a {
    color: #0078d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #005bb5;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #cead8c;
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 9;
}

.back-to-top:hover {
    background-color: #005bb5;
}

/* Responsividad */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
    }
}


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

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

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

@keyframes slide {
    0%, 20% {
        transform: translateX(0);
    }
    40%, 60% {
        transform: translateX(-100%);
    }
    80%, 100% {
        transform: translateX(-200%);
    }
}

/* Para pantallas muy pequeñas (hasta 320px) */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .contenedor, .contenedor2, .contenedor3, .contenedor4 {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links {
        width: 90%;
        top: 50px;
        right: 5%;
    }

    .nav-item {
        font-size: 12px;
    }
    .item .content{
        left: 10px;
        width: 100px;
        font-size: 1rem;
    }
    .content.name{
        font-size: 1.5rem;
    }
}

/* Para pantallas pequeñas (hasta 480px) */
@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        top: 86px;
        text-indent: 10px;
    }

    .contenedor, .contenedor2, .contenedor3, .contenedor4 {
        flex-direction: column;
        gap: 1.5rem;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .item .content{
        left: 10px;
        width:250px;
        font-size: 19px;
    }
    .name{
        font-size: 1.5rem;
    }
}

/* Para pantallas medianas (hasta 768px) */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .contenedor, .contenedor2, .contenedor3, .contenedor4 {
        padding: 1rem;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero .btn {
        padding: 0.6rem 1.2rem;
    }
}

/* Para pantallas grandes (desde 1200px) */
@media (min-width: 1200px) {
    .contenedor, .contenedor2, .contenedor3, .contenedor4 {
        padding: 3rem 5rem;
    }

    

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.8rem;
    }

    .hero .btn {
        padding: 1rem 2rem;
        font-size: 1.5rem;
    }
}
