@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

/*=============== BASE STYLES ===============*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0; /* Asegúrate de que --header-height esté definido */
  font-family: var(--body-font, "Roboto Condensed", sans-serif); /* Fallback font */
  font-size: var(--normal-font-size);
  background: black;
  color: var(--text-color);
  width: 100vw;
  height: 100vh;
  /* Las siguientes propiedades son redundantes si ya se definieron margin y padding en el reset global o en la primera línea de body */
  /* margin: 0; */
  /* padding: 0; */
  overflow-x: hidden; /* Evitar scroll horizontal si no es necesario */
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section,
.container {
  max-width: 100%;
  margin-left: auto; /* Centrar elementos */
  margin-right: auto; /* Centrar elementos */
  box-sizing: border-box;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  text-align: center;
}

.grid {
  display: grid;
}

.main {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden; /* Asegura que el contenido no se desborde del main */
}

.divider {
  height: 120px;
  background: transparent;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*=============== LOADER STYLES ===============*/
.loading-wrapp {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background-color: #000000;
  z-index: 1000;
}

.loading-wrapp .inner {
  display: block;
  margin: 0 auto;
  position: relative;
  top: 45%;
  width: 4.2rem;
  height: 4.5rem;
  border: 4px solid #fff;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background-color: #4e4e4e;
}

.loading-wrapp .inner:after {
  content: "";
  position: absolute;
  right: -28px;
  top: 4px;
  display: block;
  width: 20px;
  height: 40px;
  border: 4px solid #fff;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.loading-wrapp .inner:before {
  content: "";
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background-image: linear-gradient(
    to right,
    rgba(190, 190, 190, 0.7254901961),
    transparent
  );
  border-top-left-radius: 0;
  border-bottom-left-radius: 10px;
}

.loading-wrapp .inner .fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background-color: #6e3013;
  animation: load 2.59s infinite;
}

.loading-wrapp .inner .fill:after {
  content: "";
  left: 0;
  display: block;
  position: absolute;
  top: 0;
  height: 1px;
  background-color: #d1b094;
}

@keyframes load {
  0% {
    top: 4.5rem;
  }
  70% {
    top: 1.125rem;
  }
  90%,
  95%,
  100% {
    top: 0;
  }
}

/*=============== HEADER STYLES ===============*/
.header {
  width: 100%;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
}

.header nav {
  background-color: rgb(24, 24, 24);
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 500; /* Se mantiene aquí por si lo necesita el contexto del nav */
}

@media (max-width: 768px) {
  .header nav {
    height: 8rem; /* Esto es redundante si ya está definido fuera del media query */
  }
}

.header nav .container-logo {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.header nav .container-logo .nav__logo {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(14, 4%, 95%);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header nav .container-logo .nav__logo-img {
  width: 12rem;
  height: auto;
  margin-right: 0.5rem;
}

.header nav .nav__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed; /* Esto es para el estado móvil, considera moverlo a la media query */
  width: 100%;
  height: 8rem; /* Esto es para el estado móvil, considera moverlo a la media query */
  top: 0; /* Esto es para el estado móvil, considera moverlo a la media query */
  left: 0; /* Esto es para el estado móvil, considera moverlo a la media query */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header nav .nav__menu .nav__list {
  display: flex;
  gap: 1.5rem;
}

/* Unificado para enlaces, logo, toggle y close */
.header nav .nav__menu .nav__list .nav__link,
.header nav .nav__menu .nav__list .nav__logo,
.header nav .nav__menu .nav__list .nav__toggle,
.header nav .nav__menu .nav__list .nav__close {
  color: hsl(14, 4%, 100%);
}

.header nav .nav__menu .nav__list li {
  list-style: none;
}

.header nav .nav__menu .nav__list li .nav__link {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 400;
  transition: 0.4s;
}

.header nav .nav__menu .nav__list li .nav__link:hover {
  color: hsl(14, 91%, 54%);
}

.header nav .nav__menu .nav__list li .nav__link.active-link {
  color: hsl(14, 4%, 100%);
  border-bottom: 2px solid hsl(14, 91%, 54%);
}

.header nav .nav__menu .nav__close,
.header nav .nav__menu .nav__img,
.header nav .nav__toggle {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  display: none; /* Estos son generalmente para móvil y deben ser `display: block` solo en la media query */
}
.header nav .nav__toggle i{
  font-size: 60px;
}

/*=============== HOME SECTION & SWIPER STYLES ===============*/
.home {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.swiper {
  padding-top: 120px;
  width: 100%;
  height: 100%;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: #fafafa;
  &:hover {
    color: #fafafa; /* Redundante si es el mismo color */
  }
}

.swiper .swiper-pagination-bullet {
  background-color: #fafafa;
}

.swiper .swiper-pagination-bullet-active {
  background-color: #fafafa; /* Redundante si es el mismo color */
}

.swiper .swiper-slide {
  margin: 0;
  padding: 0%;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.swiper .swiper-slide.sldOne {
  background-color: rgb(10, 10, 10);
  background-image: url("../images/espacio6.png");
}

.swiper .swiper-slide.sldTwo {
  background-color: #222222;
  background-image: url("../images/Webdesign.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home_content.grid {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  text-align: left;
  box-sizing: border-box;
}

.home_content.grid .home_group {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: grid;
  place-items: center;
}

.home_content.grid .home_data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 90%;
  height: 100%;
  margin: 0;
  padding: 2rem;
  animation: fadeInRight 0.6s ease-out forwards;
  opacity: 0;
  transform: translateX(50%);
}

.home_content.grid .home_title {
  font-weight: bold;
  margin-bottom: 1rem;
  text-warp: balance;
}

/* Unificado para los títulos de las diapositivas */
.home_content.grid .tsldOne,
.home_content.grid .tsldTwo {
  display: block;
  color: #ffffff;
  font-size: 3rem;
  padding-bottom: 20px;
  width: 100%;
}

.home_content.grid .slideTwoA {
  font-size: 3rem;
}

.home_content.grid .slideTwoB {
  font-size: 5rem;
}

.home_content.grid .home_description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  text-warp: balance;
}

/* Unificado para descripciones */
.home_content.grid .hdescriptionA,
.home_content.grid .hdescriptionB {
  color: #ffffff;
}

.home_content.grid .button {
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.8rem;
  height:90px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home_content.grid .btnOne {
  color: #fff;
  background-color: rgb(26, 115, 232);
  &:hover {
    background-color: rgba(15, 87, 196);
  }
}

.home_content.grid .btnTwo {
  color: #fff;
  background-color: #ff5733;
  &:hover {
    background-color: #c33d1a;
  }
}

.home_img {
  max-width: 100%;
  height: auto;
  animation: swing 2s ease-in-out infinite;
}

.home_img2 {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

@keyframes swing {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*=============== HERO SECTION STYLES ===============*/
.hero-section {
  position: relative;
  background: url("../images/background-tecno-blue.webp") no-repeat center/cover;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 40px; 
  max-width: 1400px;
  box-sizing: border-box;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin-left: auto;
  padding-right: 0;
  text-warp: balance;
}

.hero-text h2{
    color:white;
    text-warp:balance;
    font-size:1.5rem;
    margin-bottom:2rem;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  text-align: justify;
}

.hero-title {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-image {
  width: 90%;
  max-width: 400px;
  height: auto;
  transform: translateY(30px);
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/*=============== PROYECTOS SECTION STYLES ===============*/
.proyectos-bg {
  width: 100%;
  background-image: url("../images/background bannerb.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.proyectos-bg .bannerTecnologies,
.regProyectos.container {
  max-width: 1366px;
  padding-left: 14px;
  padding-right: 14px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.proyectos-bg .bannerTecnologies {
  display: flex;
  justify-content: center;
  align-items: center;
}

.proyectos-bg .bannerTecnologies .col {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* .cleft y .cright compartidas */
.cleft,
.cright {
  max-width: 669px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 14px;
  margin-bottom: 14px;
  box-sizing: border-box;
}

.cleft {
  padding: 2rem;
  margin-right: 7px;
   backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cright {
  padding: 0;
  margin-left: 7px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.cright img {
  border-bottom-right-radius: 16px;
}

.regProyectos {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-card {
  max-width: 669px;
  background: rgba(255, 255, 255, 0.23);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 16px;
  border: 1px solid rgba(247, 249, 251, 0.397);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.905);
  transition: transform 0.2s;
  min-height: 200px;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  &:hover {
    transform: scale(1.02);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.905);
  }
}

.project-card .descripcion-card .title-project {
  font-size: 20px !important;
  font-weight: 700;
}

.project-card .descripcion-card p {
  padding: 0.5rem;
}

.project-img {
  width: 190px;
  height: 190px;
  margin: 0;
  padding: 0;
  object-fit: cover;
  border-radius: 50%;
  box-sizing: border-box;
}

/*==== Contacto ===*/
.content-form {
    background-color: #0f0f1c; /* Un azul muy oscuro, casi negro, para el contenedor del formulario */
    padding: 30px;
    border-radius: 15px; /* Bordes redondeados para el contenedor principal */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Sombra sutil para profundidad */
    width: 100%; /* Ancho adaptable */
    height:600px;
    box-sizing: border-box; /* Incluye padding y borde en el ancho/alto */
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
}
   
.content-form .contentTitleContacto{
    width:100vw;
    height:auto;
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
}
    
.content-form .contentTitleContacto #contactTitle{
    color:white;
    font-size:25px;
    font-weight:200;
    margin-bottom:2rem;
}

.contact-form {
    width: 50%;
    height: 300px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.contact-form .form-group.row div{
  width:50%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #000000; /* Fondo negro para los campos de texto */
    color: #ffffff; /* Texto blanco */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borde elegante blanco de 1px, semitransparente */
    border-radius: 8px; /* Bordes redondeados para los campos */
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Transición suave para el enfoque */
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5); /* Color de placeholder más claro */
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #4a90e2; /* Borde azul rey al enfocar */
    outline: none; /* Quita el contorno por defecto del navegador */
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.5); /* Sombra azul al enfocar */
}

.contact-form textarea {
    resize: vertical; /* Permite redimensionar verticalmente */
    min-height: 120px; /* Altura mínima para el área de texto */
}

.contact-form button#btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #4169E1; /* Azul rey para el botón */
    color: #ffffff; /* Texto blanco */
    border: none;
    border-radius: 8px; /* Bordes redondeados para el botón */
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Transición suave */
}

.contact-form button#btn-submit:hover {
    background-color: #315ce8; /* Un azul rey un poco más oscuro al pasar el ratón */
    transform: translateY(-2px); /* Efecto ligero de "levantamiento" */
}

.contact-form button#btn-submit:active {
    transform: translateY(0); /* Vuelve a su posición original al hacer clic */
}

/*=============== FOOTER / COPYRIGHT STYLES ===============*/
.copy-right {
  min-height: 60px;
  background: radial-gradient(black 15%, transparent 16%) 0 0,
    radial-gradient(black 15%, transparent 16%) 8px 8px,
    radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 0 1px,
    radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 8px 9px;
  background-color: #282828;
  background-size: 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.copy-right span,
.copy-right a {
  color: white;
  text-align: center;
  font-size: large;
  font-family: "Roboto Condensed", sans-serif;
}

.copy-right span {
  font-weight: 200;
}

.copy-right a {
  text-decoration: none;
  font-weight: 400;
}




/* ===== Responsive Styles for Mobile (Unificado) ===== */
@media screen and (max-width: 768px) {
    /* Estilos del header */
    #header {
        width: 100%;
        background-color: #000000;
        position: relative;
        z-index: 9999;
    }

    /* Menú de navegación principal (unificando .nav_menu y .header nav .nav__menu) */
    .nav_menu,
    .header nav .nav__menu { 
        background-color: black; 
        display: flex; 
        flex-direction: column;
        align-items: center;
        padding-bottom: 0; 
        padding: 2rem 0; 
        width: 100%;
        z-index: 9999; 
        position: fixed; 
        left: 0;
        top: -100%;
        transform: translateY(-100%); 
        transition: 0.4s;
        height: auto; 
        border-radius: 0 0 1.5rem 1.5rem; 
        margin-top: 50px;
    }

    .header nav .nav__menu.show-menu {
        transform: translateY(0);
        top: 78px;
    }

    /* Iconos y enlaces del menú */
    .nav_menu #nav-close,
    .header nav .nav__menu .nav__close {
        display: block;
        text-align: right; 
        margin: 1rem 20px; 
        cursor: pointer;
        color: hsl(14, 4%, 95%); 
        font-size: 1.8rem; 
        position: absolute; 
        top: 0.2rem; 
        right: 0.7rem; 
    }

    /* Estilos de la lista de navegación */
    .nav_menu .nav_list,
    .header nav .nav__menu .nav__list {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0; 
        row-gap: 1rem; /* Del segundo bloque, combina o elige */
        padding-top: 12px; 
        padding-bottom: 6px; 
    }

    /* Estilos para los elementos de la lista */
    .nav_menu li,
    .header nav .nav__menu li {
        width: 100%; 
        text-align: center; 
        padding-top: 6px; 
        padding-bottom: 6px; 
    }

    /* Estilos para los enlaces */
    .nav_menu a,
    .header nav .nav__menu li .nav__link {
        display: block; 
        padding: 4px; 
        font-size: 20px; 
        color: #ffffff; 
        text-decoration: none; 
        transition: background-color 0.3s ease; 
        
        /* Estilos específicos del segundo bloque */
        font-family: "Roboto Condensed", sans-serif;
        text-transform: uppercase;
        font-weight: 900;
    }

    .nav_menu a:hover,
    .header nav .nav__menu li .nav__link:hover {
        background-color: #666666; 
        color: hsl(14, 91%, 54%);
    }

    .header nav .nav__menu li .nav__link.active-link {
        color: hsl(14, 4%, 100%);
        border-bottom: 2px solid hsl(14, 91%, 54%);
    }

    .header nav .nav__menu .nav__img {
        display: none; /* Se mantiene */
    }

    .header nav .nav__toggle {
        display: block;
        color: hsl(14, 4%, 95%);
        font-size: 1.25rem;
        cursor: pointer;
        margin-right: 1rem;
    }

    /* Swiper Container */
    .swiper {
        margin-top: 0px;
        padding-top: 0px;
        width: 100vw;
        height: 100vh;
    }
    .swiper .swiper-slide {
        margin: 0px;
        padding:0px;
        width: 100vw;
        height: 100vh;
    }
    .swiper .swiper-slide.sldOne {
        margin: 0px;
        padding:0px;
        width: 100%;
        height: 100%;
        background-color: #222222;
        background-image: url("../images/espacio6.png");
    }
    .swiper .swiper-slide.sldTwo {
        margin: 0px;
        padding:0px;
        width: 100%;
        height: 100%;
        background-color: #222222;
        background-image: url("../images/Webdesign.webp");
    }

    /* Ajuste del contenido Home en móviles */
    .home_content.grid {
        width: 100%;
        height: 100%;
        margin: 0px;
        padding-left: 2rem;
        padding-right: 2rem;
        display: flex;
        flex-direction:column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .home_content.grid .home_data {
        width: 100%;
        height: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
        display: flex;
        flex-direction:column;
        justify-content: center;
        align-items: center;
        /* Estilos del segundo bloque que pueden sobrescribir */
        padding:3rem;
        width: 100vw;
        height: 60vh;
    }


    .home_content.grid .home_title {
        font-weight: bold;
        margin-bottom: 1rem;
    }


    .home_content.grid .home_description {
        line-height: 1.6;
        margin-bottom: 2rem;
        font-family: "Roboto Condensed", sans-serif;
    }

    .home_content.grid .hdescriptionA {
        color: #ffffff;
    }

    .home_content.grid .hdescriptionB {
        color: #ff5733;
    }

    .home_content.grid .button {
        padding: 0.8rem 2rem;
        border-style: solid;
        border-radius: 20px;
        text-transform: uppercase;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
        text-decoration: none;
        font-family: "Roboto Condensed", sans-serif;
        font-size: 1.2rem;
    }

    .home_content.grid .btnOne {
        color: #fff;
        background-color: rgba(26, 115, 232, 0.431372549);
    }
    .home_content.grid .btnOne:hover {
        background-color: rgba(15, 87, 196, 0.4235294118);
    }

    .home_content.grid .btnTwo {
        color: #fff;
        background-color: #ff5733;
    }
    .home_content.grid .btnTwo:hover {
        background-color: #c33d1a;
    }

    /*en revision*/
    .home_content.grid .home_group {
        margin:0px;
        padding:0px;
        width: 100vw;
        height: 40vh;
    }

    .home_content.grid .home_group .home_img {
        display: block;
        width: 90%;
        height: auto;
        margin: 0;
        padding: 0;
    }

    /* Estas reglas son las últimas en el primer bloque y sobrescriben las anteriores */
    .home_content.grid .tsldOne,
    .home_content.grid .slideTwoA,
    .home_content.grid .slideTwoB {
        font-size: 2.0rem;
    }

    .home_content.grid .home_description {
        font-size: 1rem;
    }

    /* Sección Hero */
    .hero-content {
        flex-direction: column;
        padding: 20px;
        height: auto;
        box-sizing: border-box;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        margin-top:4rem;
        margin-bottom:2rem;
        max-width: 90%;
    }

    .hero-description {
        text-align: center;
    }

    .floating-image {
        margin-top:2rem;
        padding-bottom:4rem;
        transform: translateY(0);
        max-width: 300px;
        width: 90%;
    }

    .hero-section .divider {
        height: 28px;
        margin: 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-section .divider img {
        height: 28px;
        margin: 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    /*=====proyectos======*/
    /* .cleft y .cright compartidas */
    .proyectos-bg .bannerTecnologies .cleft,
    .cright {
      max-width: 100%;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 0px;
      margin-left: 0px;
      margin-right: 0px;
      margin-top: 0px;
      margin-bottom: 1rem;
      box-sizing: border-box;
    }
    
    /*======contacto========*/
    .content-form {
        width:100vw;
        height:100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
   .content-form .contentTitleContacto {
        width:100vw;
        height:10vh;
        text-align: center;
    }
        
    .content-form .contentTitleContacto #contactTitle {
        color: white;
        font-size:28px;
        font-weight:400;
        margin-bottom:2rem;
        text-warp:balance;
    }
        
    .contact-form {
        width: 100vw;
        height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left:2rem;
        padding-right:2rem;
    }
    
    .contact-form .form-group.row {
        width:100%;
        height:160px;
        display: flex;
        flex-direction: column; /* Por defecto, apilados en móvil */
        justify-content: center;
        align-items: center;
        gap: 20px; /* Espacio entre los campos */
    }
    
    .contact-form .form-group.row div{
        width:100%;
        height:100%;
        margin:0px;
        padding:0px;
    }
    
    .contact-form .form-group{
        width: 100%;
        height: auto;
    }

    .contact-form .form-group.row > div {
        flex: 1; /* Distribuye el espacio equitativamente */
    }
    
      .contact-form .form-group #btn-submit{
        display:block;
        width: 100%;
        height: 80px;
    }
}


