html{
    font-family: "Tenor Sans", serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
}
body{
    margin: 0;
    font-family: "Tenor Sans", serif;
    line-height: 1.6;
    color: #000000fd;
}
a {
    text-decoration: none;
    color: inherit;
}

/* 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: 86px;
        right: 20px;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 1rem;
        border-radius: 8px;
        width: 94%;
        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: center;
    }
  
    .nav-links {
        width: 100%; /* Ocupa todo el ancho */
        top: 88px;
        left:0px;
        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;
    }
  

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75vh;
    background: url('/Commercial/Clientes\ felices.webp') center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.281);
}
.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 1;
    padding: 10px;
    align-items: center;
    margin-top: 98px;
}
.hero h1 {
    font-size: 3rem;
    margin: -20px;
    text-shadow: 4px 0px 2px #181717;
    color: #d2a67a;
   
}
.hero h3 {
    letter-spacing: 5px;
}
.hero p {
    margin: 1rem 0;
}
.hero .btn {
    position: relative;
    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);
    z-index: 1222;
    margin-top: 20px;
}

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



.search-container {
    background: rgba(241, 241, 241, 0.116);
    backdrop-filter: blur(10px);
  
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    max-width: 1500px;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.884);
    overflow: hidden;
  
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Permite que las pestañas se ajusten en pantallas pequeñas */
   

}

.tab {
    padding: 0.5rem 1rem;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    transition: color 0.3s ease;
    color: #fff;
}

.tab.active {
    color: #cead8c;
    
}

.tab.active::after {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background-color: #cead8cfd;
    position: absolute;
    bottom: -5px;
    left: 0;
    animation: slide-in 0.3s ease;
}

@keyframes slide-in {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.categories-container {
    display: none; /* Oculta las categorías que no están activas */   
    position: relative;
    padding: 10px 40px; /* Asegura que haya espacio a los lados para los botones */
    overflow: hidden; /* Mantiene los íconos dentro del área visible */

}

.categories-container.active {
    display: block; /* Muestra solo la categoría activa */
}




/* Categories */
.categories {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap; /* Permite que las pestañas se ajusten en pantallas pequeñas */
    width: fit-content; /* Ajusta el ancho al contenido interno */
    transition: transform 0.3s ease; /* Transición suave al cambiar de página */
    will-change: transform;
    gap: 15px;


}

.category {
    
   
    text-align: center;
    padding: 5px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px; /* Asegura que haya espacio entre las categorías en pantallas pequeñas */
    gap: 22px;
}

.category i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
    align-items: center;
}

.navigation {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;   
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none ;
}

button.prev,
button.next {
    pointer-events: all; /* Permite interactuar con los botones */
    background-color: #cead8c;
    border: none;
    color: white;
    padding: 10px 10px;
    cursor: pointer;
    border-radius: 25px;
    font-size: 1rem;
    z-index: 10;
}

button.prev[disabled],
button.next[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Icons (Placeholder Styles) */
.icon-office,
.icon-retail,
.icon-industrial,
.icon-coworking,
.icon-medical {
    width: 50px;
    height: 50px;
    display: flex;
    background-color: #7e7d7d00;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
   
}

/* Asegúrate de que los íconos internos se ajusten correctamente */
.icon-office i {
    font-size: 50px; /* Tamaño del ícono interno */
    color: #ffffff; /* Color del ícono interno */
  
}
.icon-retail i {
    font-size: 50px; /* Tamaño del ícono interno */
    color: #ffffff; /* Color del ícono interno */
  
}.icon-industrial i {
    font-size: 50px; /* Tamaño del ícono interno */
    color: #ffffff; /* Color del ícono interno */
  
}.icon-coworking i {
    font-size: 50px; /* Tamaño del ícono interno */
    color: #ffffff; /* Color del ícono interno */
  
}.icon-medical i {
    font-size: 50px; /* Tamaño del ícono interno */
    color: #ffffff; /* Color del ícono interno */
  
}.icon-office i {
    font-size: 50px; /* Tamaño del ícono interno */
    color: #ffffff; /* Color del ícono interno */
  
}.icon-office i {
    font-size: 50px; /* Tamaño del ícono interno */
    color: #ffffff; /* Color del ícono interno */
  
}.icon-office i {
    font-size: 50px; /* Tamaño del ícono interno */
    color: #ffffff; /* Color del ícono interno */
  
}

/* Media Queries for Responsiveness */

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

    .hero-content h3 {
        font-size: 1.2rem;
    }

    
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h3 {
        font-size: 1rem;
    }

   
   
}
/* RESPONSIVE DESIGN */

/* Large screens (desktops) */
@media (min-width: 1024px) {
    .tabs {
        justify-content: space-around;
        gap: 0;
    }

    .category {
        width: 100px;
    }

    .category i {
        width: 60px;
        height: 60px;
        font-size: 44px;
    }

    .category span {
        font-size: 1rem;
    }
}

/* Medium screens (tablets) */
@media (max-width: 1024px) {
    .tabs {
        justify-content: space-between;
    }

    .category {
        width: 80px;
    }

    .category i {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .category span {
        font-size: 0.9rem;
    }
}

/* Small screens (mobile phones) */
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .categories-container.active {
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 10px;
    }

    .category {
        width: 70px;
    }

    .category i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .category span {
        font-size: 0.8rem;
    }

    .navigation {
        gap: 10px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .search-container {
        width: 100%;          /* Ocupar el ancho completo */
        padding: 0px;        /* Añadir un poco de padding */
        box-sizing: border-box; /* Incluir padding en el ancho */
        overflow: hidden;     /* Evitar desbordamientos */
        height: 45vh; /* 15% del alto de la pantalla */
    }
    .tabs {
        font-size: 0.9rem; /* Tamaño de fuente para las pestañas */
        overflow-x: auto;  /* Permitir scroll horizontal si las pestañas no caben */
        white-space: nowrap; /* Evitar que las pestañas se rompan en varias líneas */
        
    }

    .category {
        width: 60px;       /* Ancho fijo para cada categoría */
        text-align: center; /* Centrar el contenido */
        display: inline-block; /* Mostrar en línea para evitar saltos */
        margin: 5px;       /* Margen entre categorías */
    }

    .category i {
        width: 35px;       /* Ancho del ícono */
        height: 35px;      /* Alto del ícono */
        font-size: 16px;   /* Tamaño del ícono */
        display: flex;     /* Usar flexbox para centrar */
        align-items: center; /* Centrar verticalmente */
        justify-content: center; /* Centrar horizontalmente */
    }

    .category span {
        font-size: 0.7rem; /* Tamaño de fuente para el texto */
        display: block;    /* Mostrar el texto en una línea separada */
        margin-top: 5px;   /* Espacio entre el ícono y el texto */
    }

    .navigation button {
        font-size: 1rem;   /* Tamaño de fuente para los botones de navegación */
        padding: 8px 12px; /* Añadir padding para mejor tacto en móviles */
        margin: 5px;       /* Margen entre botones */
    }
}

/* Estilo general para el contenedor */
.contenedorC {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap; /* Permite que los elementos se adapten en pantallas pequeñas */
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1rem;
    margin: 2rem 31px;
    background-color: #1c1c1c;
   
}

/* Estilo para la sección izquierda */
.contenedorC .left {
    flex: 1 1 40%; /* Ocupa el 40% del ancho en pantallas grandes */
    width: 100px;
    padding: 10px;
}

.contenedorC .left h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #cead8c;
}

.contenedorC .left p {
    font-size: 19px;
    line-height: 1.5;
    color: #fff;
}

/* Estilo para la sección derecha */
.contenedorC .right {
    
    position: relative; /* Necesario para posicionar los botones de control */
    width: 100%;
    max-width: 800px; /* Ancho máximo del carrusel (ajusta según necesites) */
    margin: 0 auto; /* Centrar el carrusel */
    overflow: hidden; /* Oculta el desbordamiento de las imágenes */
    border-radius: 8px; /* Bordes redondeados */
}



/* Carrusel */
.carousel {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out; /* Transición suave entre imágenes */
}

/* Elementos del carrusel */
.carousel-item {
    flex: 0 0 100%; /* Cada imagen ocupa el 100% del contenedor */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ajusta la imagen sin distorsionar */
    border-radius: 8px; /* Bordes redondeados */
}

/* Botones de control del carrusel */
.carousel-control {
    position: absolute;
    top: 50%; /* Alinea verticalmente los botones al centro del carrusel */
    transform: translateY(-50%); /* Centra verticalmente */
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%; /* Botones redondeados */
    font-size: 1.5rem; /* Tamaño del ícono */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Ancho del botón */
    height: 40px; /* Alto del botón */
}

.carousel-control.left {
    left: 10px; /* Posición del botón izquierdo */
}

.carousel-control.right {
    right: 10px; /* Posición del botón derecho */
}

/* Efecto hover para los botones */
.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Fondo más oscuro al pasar el mouse */
}

/* Galería */

.galeria {
    display: block;    
    overflow: hidden;
    background-color: transparent;   
    width: 100%; /* Asegura que el contenedor ocupe todo el ancho */
   
}




.galeria h2{
    margin-left: 42px;
    color: #cead8c;
    text-align: center;
}
.galeria-grid {
    display: flex;
    gap: 10px;
    animation: scroll-infinite 20s linear infinite;
    width: calc(200px * 6 + 10px * 5); /* Calcula el ancho total de los elementos */
}

.galeria-item {
    flex: 0 0 auto;
    width: 200px;
    height: auto;
}

.carousel-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.galeria-item img:hover {
    transform: scale(1.05);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
}

/* Contenido del modal */
.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.modal-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Mantiene la relación de aspecto */
    display: block;
}

/* Botones de navegación */
.modal-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.modal-button:hover {
    background: rgba(255, 255, 255, 0.5);
    color: black;
}

.modal-button.prev {
    left: 10px;
}

.modal-button.next {
    right: 10px;
}

/* Botón de cerrar */
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

@media (max-width: 600px) {
    .galeria h2 {
        margin-left: 10px;
        font-size: 1.5rem; /* Ajusta el tamaño en dispositivos pequeños */
    }
}

/* Hacer el modal más accesible en pantallas pequeñas */
@media (max-width: 600px) {
    .modal-content {
        width: 100%;  /* Ocupar el ancho completo */
        height: 100%; /* Ocupar la altura completa */
        padding: 10px; /* Pequeño margen interno */
    }
    .modal-content img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* Ajustar la imagen sin recortes */
    }

    .modal-button {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .close-modal {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .modal-content {
        width: 100%;          /* Ocupar el ancho completo */
        height: 100%;         /* Ocupar la altura completa */
        padding: 10px;        /* Pequeño margen interno */
        box-sizing: border-box; /* Incluir padding en el ancho/alto */
        overflow: auto;       /* Permitir scroll si el contenido es muy grande */
    }

    .modal-content img {
        max-width: 80%;      /* La imagen no superará el ancho del contenedor */
        max-height: 80vh;     /* Limitar la altura al 80% del viewport */
        object-fit: contain;  /* Ajustar la imagen sin recortes */
        display: block;       /* Evitar espacios no deseados debajo de la imagen */
        margin: 0 auto;       /* Centrar la imagen horizontalmente */
    }

    .modal-button {
        font-size: 1.5rem;    /* Tamaño de fuente */
        width: 40px;          /* Ancho del botón */
        height: 40px;         /* Alto del botón */
        display: flex;        /* Usar flexbox para centrar contenido */
        align-items: center;  /* Centrar verticalmente */
        justify-content: center; /* Centrar horizontalmente */
    }

    .close-modal {
        font-size: 1.5rem;    /* Tamaño de fuente */
        position: absolute;   /* Posicionar de manera absoluta */
        top: 10px;            /* Distancia desde la parte superior */
        right: 10px;          /* Distancia desde la derecha */
        cursor: pointer;      /* Cambiar el cursor al pasar sobre el botón */
    }
}




/* Animación infinita sin espacio en blanco */
@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6 - 10px * 6)); /* Mueve todos los elementos visibles */
    }
}
/* Sección de Contacto */
.contacto-section {
    padding: 2rem 1rem;
    margin: 2rem 39px;
    justify-content: center;
    align-items: center;
    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: 1200px;
    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;
    background-color: #080808;
    background-image: linear-gradient(to bottom, rgb(0, 0, 0), #000000);
    z-index: -1;
  }
  
  /*==================
      END ANIMATION SVG SECTION
  ====================*/



/* Footer General */
.footer-container {
    background-color: #1616169d;
    color: #fff;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}

.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;
    
   
}

.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;
}


.mantente {
    font-size: 15px;
    color: #b19273;
    padding: 5px;
    margin: 2px;
}

/* 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;
}

.back-to-top:hover {
    background-color:#b19273;
    transform: scale(1.1);
}

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

    .footer-col{
        align-items: center;
    }
}
/* Responsiveness */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2rem;
        height: 2rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 1.8rem;
        height: 1.8rem;
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contenedor {
        flex-direction: column;
    }

    .galeria-grid {
        gap: 0px;
    }

    .galeria-item img {
        width: 150px;
    }

    .navbar .nav-links {
        gap: 10px;
    }

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

    .hero-content h3 {
        font-size: 1.2rem;
    }

    .hero-content .btn {
        padding: 8px 15px;
    }

  
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
    }

    .contenedor {
        padding: 10px;
    }

 

    .galeria-item img {
        width: 120px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h3 {
        font-size: 1rem;
    }
}
/* Estilo responsivo */
@media (max-width: 768px) {
    .contenedorC {
        flex-direction: column;
        text-align: center;
    }

    .contenedorC .left,
    .contenedorC .right {
        flex: 1 1 80%; /* Ambos elementos ocupan el 100% en pantallas pequeñas */
        width: 100%;
    }

    .contenedorC .left h2 {
        font-size: 1.5rem;
    }

    .contenedorC .left p {
        font-size: 0.9rem;
    }
}