html {
  scroll-behavior: smooth;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Crimson Pro', serif; 
  font-weight: 200;
  background-color: #181818;
  height: calc(var(--vh, 1vh) * 100);
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type:y mandatory;
  scrollbar-width: none;
}

h1 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background: transparent;
  z-index: 100;
}

.logo {
  height: 2.5vh;
  opacity: 0;
  margin-top: 2vh;
  animation: fadeSlideIn 1.5s ease forwards;
  animation-delay: 0.5s;
}

.menu-toggle {
  position: fixed;
  top: 10px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 1100;
  padding: 10px;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 25%;
  height: 100%;
  background: linear-gradient(to left, rgba(0,0,0,0.5), rgba(0,0,0,0));
  transition: right 1s ease;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 810px) {
  .side-menu {
  width: 100%;
}
}

.side-menu ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.side-menu ul li {
  margin: 20px 0;
}

.side-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 25px;
  font-weight: 300;
}

.side-menu.open {
  right: 0;
}

.blur {
  filter: blur(5px);
  transition: filter 1s ease;
  pointer-events: none;
}





/* aparece logo en la esquina */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inicio {
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

body.inicio .navbar-logo {
  display: none;
}

/* Fondo animado Vanta.js */
#vanta-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  z-index: -10;
  pointer-events: none;
}

/* Asegurar contenido por encima del fondo */
body.inicio,
section.inicio,
.overlay,
nav {
  position: relative;
  z-index: 1;
}

.overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.main-logo {
  width: 35vw;
  opacity: 0;
  margin: 0;
  animation: fadeSlideIn 3s ease forwards;
}
@media (max-width: 810px) {
  .main-logo {
  width: 85vw;
}
}

.subtext {
  position: relative;
  color: white;
  font-size: 1.5vw;
  font-weight: 100;
  opacity: 0;
  animation: fadeSlideIn 3s ease forwards;
}
@media (max-width: 810px) {
  .subtext {
  font-size: 1.2rem;
}
}

section{
  width: 100%;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* imagen portada de cada pestaña */
.page {
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  scroll-snap-align: start;
  transition: all 0.5s ease;
  
}

.page_fondo{
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  bottom: 0px;
  z-index: 0;
  
}

.shadow{
  position: absolute;
  bottom: 100%;
  height: 50vh;
  width: 100%;
  left: 0;
  z-index: 2;
  background: linear-gradient(to top, #181818, transparent);
}

.opacidad{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #18181820;
  z-index: 1;
}

.flecha{
  width: 15vw;
  z-index: 5;
  position: absolute;
  bottom: 0px;
}
@media (max-width: 810px) {
  .flecha{
    width: 40vw;
    left: 50vw;
    transform: translateX(-50%);
}
}


/* texto portada */
.titulo-pagina{
  position: absolute;
  z-index: 30;
  line-height: 5vh;
  width: 100%;
  text-align: center;
  font-size: 5vw;
  font-weight: 600;
  color: white;
  animation: fadeInUp 2s ease forwards;
}
@media (max-width: 810px) {
  .titulo-pagina{
  font-size: 15vw;
}
}

.subtitulo-pagina {
  position: absolute;
  z-index: 30;
  line-height: 5vh;
  margin-top: 15vh;
  width: 100%;
  text-align: center;
  font-size: 1.5vw;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeInUp 2s ease forwards;
}
@media (max-width: 810px) {
  .subtitulo-pagina {
  font-size: 4vw;
  margin-top: 13vh;
}
}

/* pantallas dentro de pestaña */
.section {
  height: calc(var(--vh, 1vh) * 100);
  scroll-snap-align: start;
  display:grid;
  grid-template-columns: 1fr 1fr ;
  column-gap: 100px;
  align-items: center;
  margin: 0 200px; 
  
}

/* COLUMNAS */
.imagen-seccion{
  width: 650px;
  height: 650px;
  object-fit: cover;
  border-radius: 70px;
  margin: auto;
  z-index: 5;
}

.titulo-seccion{
  text-align:start;
  font-size: 4.5rem;
  font-weight: 300;
  color: white;
  padding: 0;
  margin-bottom: 10px;
  z-index: 10;
  
}

hr { /* linea divisoria */
  height: 1px;
  background-color: rgb(255, 255, 255);
  border: none;
}

.texto-seccion{
  font-size: 1.3rem;
  margin: 0 auto;
  line-height: 1.6;
  text-align: justify;
  color: white;
}

/* CENTRADO */
.contacto {
  height: calc(var(--vh, 1vh) * 100);
  scroll-snap-align: start;
  display:flex;
  justify-content: center;
  align-items: center;
}

.subtitulo-seccion{
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: white;
}

.texto-contacto{
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1;
  text-align: center;
  color: white;
  margin-bottom: 60px;
}

/* GRILLA */

.grilla-proyectos {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(var(--vh, 1vh) * 100);
  padding: 0 10vw;
  box-sizing: border-box;
}

@media (max-width: 1000px) {
  .grilla-proyectos {
  padding: 0 2vw;
}
}

@media (max-width: 810px) {
  .grilla-proyectos {
  padding: 0 10vw;
}
}

.contenedor-grilla {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1vw;
  align-self: center;
  margin-top: 25vh;
  margin-bottom: 50px;
}

@media (max-width: 810px) {
  .contenedor-grilla {
  grid-template-columns: 1fr;
}
}

/* contenedor individual */
.item-proyecto {
  position: relative;
  transition: filter 0.3s ease;
}

.imagen-proyecto {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: filter 0.3s ease, transform 0.3s ease;
  border-radius: 15%;
  z-index: 0;
}

.imagen-proyecto:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.overlay-proyecto {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: rgba(0, 0, 0, 0); /* negro con opacidad 20% */
  border-radius: 15%;
  z-index: 1;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  color: white;
  z-index: 2;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  pointer-events: none;
  width: 90%;
}

.overlay-text h1 {
  font-size: 2.5vw;
  font-weight: 100;
  margin: auto;
}

@media (max-width: 810px) {
  .overlay-text h1 {
  font-size: 6vw;
}
}

.overlay-text p {
  font-size: 1.5vw;
  font-weight: 100;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (max-width: 810px) {
  .overlay-text p {
  font-size: 4vw;
}
}

/* cuando pasás el mouse sobre un item: */

.item-proyecto:hover .imagen-proyecto {
  transform: scale(1.03);
}

.item-proyecto:hover .overlay-proyecto {
  transform: scale(1.03);
  background-color: rgba(0, 0, 0, 0.4);
}

.contenedor-grilla:hover .overlay-text {
  opacity: 0;
}

.item-proyecto:hover .overlay-text {
  opacity: 1;
}

.item-proyecto:hover .overlay-text p {
  opacity: 0.8;
}

/* al hacer hover sobre cualquier .item-proyecto,
   desaturamos todas las demás */
.contenedor-grilla:hover .item-proyecto:not(:hover) .imagen-proyecto {
  filter: grayscale(70%);
  opacity: 0.7;
}

.contenedor-grilla:hover .item-proyecto:not(:hover) .overlay-proyecto {
  background-color: #181818d5;
}


/* FILOSOFÍA*/
.filosofía {
  height: calc(var(--vh, 1vh) * 100);
  scroll-snap-align: start;
  display:grid;
  grid-template-columns: 1fr 1fr ;
  column-gap: 100px;
  align-items: center;
  margin: 0 200px; 
}

.titulo-seccionfilo{
  text-align: start;
  font-size: 4.5rem;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
  z-index: 10;
  position: relative;
}

.filosofía hr { /* linea divisoria */
  height: 1px;
  background-color: rgb(255, 255, 255);
  position: relative;
  margin:auto;
  z-index: 5;
}

.texto-seccionfilo{
  font-size: 1.3rem;
  margin: 0 auto;
  line-height: 1.6;
  text-align: justify;
  color: white;
  z-index: 5;
  position: relative;
}






/* Degradado superior */
.bg-gradient {
    position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  pointer-events: none;
  
  height: 50vh;
  width: 100%;
  z-index: 2;
  background: linear-gradient(to bottom, #181818, transparent);
}



@keyframes fadeInUpTitulo {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpSubtitulo {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}





.page-proyectos {
  display: grid;
  background: url(/images/background\ proyectos.jpg) no-repeat center center/cover;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background-color: rgb(228, 228, 228);
  padding: 60px 0;
  gap: 20px;
  min-height: calc(var(--vh, 1vh) * 100);
  align-items: start;
}

.grid-proyectos {
  grid-column: 2 / span 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.grid-proyectos a img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
}







/* PROYECTOS */
.page_fondo-proyecto{
  position: absolute;
  top: 0px;
  object-fit: cover;
  width: 100vw;
  height: 70%;
  z-index: 0;
  transition: transform 0.2s ease-out;
  transform-origin: center center;
}


.titulo-page-proyecto{
  position: absolute;
  top: 70%;
  z-index: 30;
  width: 100%;
  
  font-size: 2.4vw;
  font-weight: 300;
  color: white;
  animation: fadeInUp 2s ease forwards;
}

@media (max-width: 810px){
  .titulo-page-proyecto{
   font-size: 6vw;
   top: 75%;
}
}

@media screen and (max-width: 810px) and (min-height: 840px) {
  .titulo-page-proyecto{
   font-size: 6vw;
   top: 75%;
}
}

.categoria-proyecto{
  position: absolute; 
  top: 80%;
  font-size: 1vw;
  font-weight: 100;
  color: white;
  opacity: 0.5;
  z-index: 20;
}
@media (max-width: 810px) {
  .categoria-proyecto{
  font-size: 4vw;
}
}

.proyecto{
  height: calc(var(--vh, 1vh) * 100);
  scroll-snap-align: start;
  display:flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 810px) {
  .proyecto{
  flex-direction: column;
}
}




.imagen-proyectoind-izq {
  height: calc(var(--vh, 1vh) * 100);
  width: 70vw;
  object-fit: cover;
  
  border-radius: 50px 0 0 50px;
}
@media (max-width: 810px) { /*arriba*/
  .imagen-proyectoind-izq {
  height: 35vh;
  width: 100vw;
  border-radius: 0px 0px 50px 50px;
  position: absolute;
  top: 0;
}
}

.imagen-proyectoind-der {
  height: calc(var(--vh, 1vh) * 100);
  width: 70vw;
  object-fit: cover;
  border-radius: 0 50px 50px 0;
}
@media (max-width: 810px) { /*abajo*/
  .imagen-proyectoind-der {
  height: 35vh;
  width: 100vw;
  border-radius: 0px 0px 50px 50px;
  position: absolute;
  top: 0;
  
}
}

.titulo-proyecto{
  position: relative; 
  text-align:start;
  line-height: 2.8vw;
  font-size: 2.5vw;
  font-weight: 600;
  color: white;
  z-index: 20;
  margin: 0 3vw;
}
@media (max-width: 810px) {
  .titulo-proyecto{
  font-size: 6vw;
  line-height: 7vw;
  margin: 0 10vw;
  top: 12vh;
}
}

.proyecto hr { /* linea divisoria */
  position: relative;
  z-index: 200;
  height: 0.05vh;
  background-color: rgb(255, 255, 255);
  border: none;
  margin: 2vh 3vw;
}
@media (max-width: 810px) {
  .proyecto hr {
  margin: 2vh 10vw ;
  top: 12vh;
}
}
.texto-proyecto{
  position: relative;
  color: white;
  opacity: 0.9;
  font-size: 1vw;
  font-weight: lighter;
  text-align: justify;
  margin: 2vh 3vw ;
  z-index: 10;
}
@media (max-width: 810px) {
  .texto-proyecto{
    font-size: 4vw;
    margin: 2vh 10vw;
    top: 12vh;
   
}
}

.subtitulo-proyecto{
  position: relative; 
  text-align:start;
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  z-index: 20;
  margin: 50px 75px 0px;
}
.titulo-memoria{
  position: relative; 
  text-align: center;
  font-size: 2.5vw;
  font-weight: 600;
  color: white;
  margin-bottom: auto;
  z-index: 20;
}
@media (max-width: 810px) {
  .titulo-memoria{
  font-size: 6vw;
  
  
}
}

.datos-memoria{
  position: relative;
  color: rgba(255, 255, 255, 0.5);
  
  font-size: 0.9vw;
  font-weight: lighter;
  text-align: center;
  margin: auto;
  z-index: 10;
}
@media (max-width: 810px) {
  .datos-memoria{
    font-size: 4.2vw;
    margin: 1vh 10vw;
}
}

.texto-memoria{
  position: relative;
  justify-self: center;
  color: white;
  opacity: 0.9;
  font-size: 1vw;
  font-weight: lighter;
  text-align: justify;
  margin: 0 30vw 2vh;
  z-index: 10;
}
@media (max-width: 810px) {
  .texto-memoria{
    font-size: 4vw;
    margin: 0 10vw 2vh;
}
}
.contacto hr { /* linea divisoria */
  position: relative;
  z-index: 200;
  height: 0.05vh;
  background-color: rgb(255, 255, 255);
  border: none;
  margin: 2vh 30vw;
}
@media (max-width: 810px) {
  .contacto hr {
  margin: 2vh 10vw ;
  
}
}





 

.imagen-proyecto-solo {
  height: 90vh;
  width: 95vw;
  object-fit:cover;
  position: absolute;
  border-radius: 5vh;
  }

  @media (max-width: 810px) {
  .imagen-proyecto-solo {
  width: 100vw;
  height: auto;
}
}

/* SERVICIOS GENERAL*/
/*<-- VIRTUAL -->*/
.metodologia-subtitulo {
  color: white;
  font-size: 3.5rem;
  margin: auto;
  font-weight: 100;
  position: relative;
  z-index: 30;
}
@media (max-width: 810px) {
  .metodologia-subtitulo {
  font-size: 1.5rem;
}
}

.metodologia-titulo {
  color: white;
  font-size: 5.5rem;
  font-weight: 600;
  margin: auto;
  position: relative;
  z-index: 30;
}
@media (max-width: 810px) {
  .metodologia-titulo {
  font-size: 3.5rem;
}
}

.fondo {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -100;
  opacity: 50%;
}

.contenedor-grillavirtual {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  justify-content: center;
  margin: 0 200px;
  --grid-gap: 10vw;
  gap: var(--grid-gap);
  position: absolute;
  bottom: 10vh;
  z-index: 10;
  transform: translateY(200px); /* Comienza desplazada hacia abajo */
  transition: transform 0.4s ease-out; /* transición suave */
}
@media (max-width: 810px) {
  .contenedor-grillavirtual {
  margin: 0 10vw;
  --grid-gap: 8vw;
  width: 50%;
}
}

.item-virtual {
  width: auto;
  justify-items: center;
}
@media (max-width: 810px) {
  .item-virtual {
    width: max-content;

}
}

.imagen-virtual {
  width: 6vh;
  object-fit: cover;
  z-index: 10;
  pointer-events: none; 
  opacity: 0.7;
}
@media (max-width: 810px) {
  .imagen-virtual {
  width: 10vw;
}
}

.titulo-virtual {
  color: white;
  z-index: 2;
  width: min-content;
  pointer-events: none; 
  font-size: 1.2rem;
  font-weight: 100;
  opacity: 0.7;
  text-align: center;
}
@media (max-width: 810px) {
  .titulo-virtual {

  font-size: 2vw;
  
}
}

.linea-vertical {
  background-color: white;
  height: 100%;
  width: 1px;
  position: absolute;
  bottom: 0;
  transform: translateX(calc(var(--grid-gap)/ -2));
  opacity: 0.7;
}

/*<-- FASES -->*/
.metodologia {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(var(--vh, 1vh) * 100);
  padding: 0;
  
  
}
@media (max-width: 810px) {
  .metodologia {
    flex-direction: column;
    width: 100%
}
}

.contenedor-grillafases {
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  align-content: center;
  gap: 1vw;

  margin: 20px;
}
@media (max-width: 810px) {
  .contenedor-grillafases {
    grid-template-columns: 1fr;
    width: 90%;
    height: 20%;
    gap: 1vh;
    margin: 0;
    
}
}

.item-fase {
  position: relative;
  transition: filter 0.3s ease;
  
}


.imagen-fase {
  width: 100%;
  height: 95vh;
  object-fit: cover;
  transition: filter 0.3s ease, transform 0.3s ease;
  border-radius: 5vh;
  z-index: 0;
  pointer-events: none; 
}
@media (max-width: 810px) {
  .imagen-fase {
  height: 18vh;
}
}

.item-fase:hover .imagen-fase {
  transform: scale(1.03);
}


.overlay-fase {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 95vh;
  aspect-ratio: 1 / 1;
  background-color: rgba(0, 0, 0, 0.6); /* negro con opacidad 20% */
  border-radius: 5vh;
  z-index: 1;
  transition: filter 0.3s ease, transform 0.3s ease;
}
@media (max-width: 810px) {
  .overlay-fase {
  height: 18vh;
}
}

.item-fase:hover .overlay-fase {
  transform: scale(1.03);
  background-color: rgba(0, 0, 0, 0.4);
}


.numero-fase {
  position: absolute;
  
  left: 50%;
  top: 15vh;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: rgb(139, 139, 139);
  font-size: 12.5vw;
  font-weight: 500;
  pointer-events: none;
  transition: filter 0.3s ease, font-size 0.3s ease;
}
@media (max-width: 810px) {
  .numero-fase {
    align-self: center;
    left: 20%;
    top: 10%;
    font-size: 20vw;
}
}

.item-fase:hover .numero-fase {
  color: white;
  
}


.titulo-fase {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  color: white;
  z-index: 2;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  pointer-events: none; 
  font-size: 2vw;
}
@media (max-width: 810px) {
  .titulo-fase {
    font-size: 6vw;
    width: 50%;
    top: 15%;
    margin-left: 60px;
}
}

.item-fase:hover .titulo-fase {
  opacity: 1;
}

.subtitulo-fase {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  
  color: white;
  z-index: 2;
  text-align: justify;
  
  width: 80%;
  font-size: 1.4vw;
  font-weight: 100;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media (max-width: 810px) {
  .subtitulo-fase {
    font-size: 4vw;
    top: 35%;
    width: 50%;
    margin-left: 60px;
    
}
}

.item-fase:hover .subtitulo-fase {
  opacity: 1;
}

/*<-- CATEGORÍAS -->*/
.categorias {
  position: relative;   /* necesario para que los absolute internos se 'anclen' aquí */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(var(--vh, 1vh) * 100);
}

.contenedor-grillacategoria {
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  overflow: hidden;
  align-items: stretch;
}


.item-categoría {
  color: transparent;
  position: relative;
  
  align-content: center;
  background-color: rgba(255, 255, 255, 0);
  justify-content: center;
  z-index: 30;
}

.fondoblanco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -10;
}




.c01{
 border-right: 0.5px solid rgb(255, 255, 255, 0.8);
 border-bottom: 0.5px solid rgb(255, 255, 255, 0.8);
}

.c02{
 border-right: 0.5px solid rgb(255, 255, 255, 0.8);
 border-left: 0.5px solid rgb(255, 255, 255, 0.8);
 border-bottom: 0.5px solid rgb(255, 255, 255, 0.8);
}

.c03{
 border-left: 0.5px solid rgb(255, 255, 255, 0.8);
 border-bottom: 0.5px solid rgb(255, 255, 255, 0.8);
}

.c04{
 border-right: 0.5px solid rgb(255, 255, 255, 0.8);
 border-bottom: 0.5px solid rgb(255, 255, 255, 0.8);
 border-top: 0.5px solid rgb(255, 255, 255, 0.8);
}

.c05{
 border: 0.5px solid rgb(255, 255, 255, 0.8);
}

.c06{
 border-left: 0.5px solid rgb(255, 255, 255, 0.8);
 border-bottom: 0.5px solid rgb(255, 255, 255, 0.8);
 border-top: 0.5px solid rgb(255, 255, 255, 0.8);
}

.c07{
 border-right: 0.5px solid rgb(255, 255, 255, 0.8);
 border-top: 0.5px solid rgb(255, 255, 255, 0.8);
}

.c08{
 border-right: 0.5px solid rgb(255, 255, 255, 0.8);
 border-left: 0.5px solid rgb(255, 255, 255, 0.8);
 border-top: 0.5px solid rgb(255, 255, 255, 0.8);
}

.c09{
 border-left: 0.5px solid rgb(255, 255, 255, 0.8);
 border-top: 0.5px solid rgb(255, 255, 255, 0.8);
}

.item-categoría:hover .fondoblanco  {
  background-color: rgba(255, 255, 255, 0.8);
  transition: 0.3s ease-in-out;
} 


.categoria-subtitulo {
  color: white;
  font-size: 1.5vw;
  margin: auto;
  font-weight: 100;
  position: relative;
  z-index: 30;
  pointer-events: none;
  text-align: center;
}
@media (max-width: 810px) {
  .categoria-subtitulo {
  font-size: 3vw;
}
}

.categoria-titulo {
  color: white;
  font-size: 2.3vw;
  font-weight: 100;
  margin: auto;
  position: relative;
  z-index: 30;
  pointer-events: none;
  text-align: center;
}
@media (max-width: 810px) {
  .categoria-titulo {
  font-size: 5vw;
  margin: 0;
  text-align: center;
}
}

.titulo-categoria {
  color: white;
  justify-self: center;
  font-size: 1.5vw;
  font-weight: 100;
  z-index: 35;
}
@media (max-width: 810px) {
  .titulo-categoria {
  font-size: 4vw;
  text-align: center;
}
}

.item-categoría:hover .titulo-categoria {
  color: black;
}


  
  







/* SERVICIOS INDIVIDUAL*/
/* <--PORTADA--> */
.destinatario-servicio{
  position:absolute;
  top: 80%;
  color: white;
  opacity: 0.7;
  font-size: 2vh;
  font-weight: lighter;
  text-align: center;
  margin: 2vh 20vw 0;
  z-index: 10;
}
@media (max-width: 810px) {
  .destinatario-servicio{
  font-size: 3vw;
  margin: 2vh 5vw 0;
}
}

.categoria-servicio{
  position: absolute; 
  top: 85vh;
  justify-self: center;
  font-size: 1.8vh;
  font-weight: 100;
  color: white;
  opacity: 0.5;
  z-index: 20;
}
@media (max-width: 810px) {
  .categoria-servicio{
  top: 85%;
  font-size: 3vw;
}
}

/* <--DESCRIPCIÓN--> */
.descripcion-servicio{
  position: relative;
  color: white;
  opacity: 0.9;
  font-size: 1.2vw;
  font-weight: lighter;
  text-align: justify;
  margin: 0 3vw 0;
  z-index: 10;
}

.linea-descripcion-servicio {
  position: absolute;
  top: 20vh;
  z-index: 200;
  height: 2px;
  width: 100vw;
  background-color: rgb(255, 255, 255);
  opacity: 0.5;
  border: none;
  margin: 0;
}

/* <--QUÉ INCLUYE--> */

.servicios{
  position: relative;   /* necesario para que los absolute internos se 'anclen' aquí */
  overflow: hidden;
  display: flex;
  align-content: center;
  justify-content: center;
  min-height: calc(var(--vh, 1vh) * 100);
}
@media (max-width: 810px) {
  .servicios {
  flex-direction: column;
}
}



.contenedor-grillaincluye {
  height: calc(var(--vh, 1vh) * 100);
  margin: 0 5vw;
  position: relative;
  top: 20vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5vw;
  overflow: hidden;
}
@media (max-width: 810px) {
  .contenedor-grillaincluye {
  top: 5vh;
  display: block;
}
}

.item-incluye {
  position: relative;
  z-index: 30;
}
@media (max-width: 810px) {
  .item-incluye {
  margin-top: 3vh;
}
}
@media screen and (max-width: 810px) and (min-height: 840px) {
  .item-incluye {
  margin-top: 2vh;
}
}

.servicios .contenedor-grillaincluye hr { /* linea divisoria */
  position: relative;
  z-index: 200;
  height: 0.1vh;
  background-color: rgb(255, 255, 255, 0.5);
  border: none;
  margin: 0;
}

.titulo-incluye{
  position: relative; 
  text-align:center;
  font-size: 5vh;
  font-weight: 600;
  color: white;
  z-index: 20;
  margin: 0;
}
@media (max-width: 810px) {
  .titulo-incluye{
  font-size: 3vh;
}
}

.renglon {
  display: flex;
  align-items: center;  /* Centra verticalmente el texto con el ícono */
  gap: 20px;            /* Espacio entre el ícono y el texto */
  padding: 2vh;
}
@media (max-width: 810px) {
  .renglon {
  padding: 1vh;
}
}

.texto-incluye{
  color: white;
  opacity: 0.9;
  font-size: 2vh;
  font-weight: lighter;
  text-align: justify;
  margin: 0;
  z-index: 10;
}
@media (max-width: 810px) {
  .texto-incluye{
  margin-right: 3vwpx;
  font-size: 3vw;
}
}

.icono-incluye{
  opacity: 0.8;
  height: 2vh;
  flex-shrink: 0; /* Evita que el ícono se deforme */
  z-index: 10;
}

.contenedor-cotizar{
  position: absolute;
  bottom: 5vh;
  height: 6vh;
  width: max-content;
  padding: 0 8vw;
  align-self: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5vh;
  z-index: 10;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 810px) and (min-height: 840px) {
  .contenedor-cotizar {
  height: 5vh;
  bottom: 3vh;
}
}

.contenedor-cotizar:hover{
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 1);
}

a.boton-cotizar,
button.boton-cotizar {
  text-decoration: none;
  color: black;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
}

.texto-boton {
  text-align: center;
  color: black;
  font-size: 2.5vh;
  font-weight: 600;
  transition: color 0.3s ease;
}

@media screen and (max-width: 810px) and (min-height: 840px) {
  .texto-boton {
  font-size: 2vh;
}
}


/* <--FAQ--> */
.preguntas-frecuentes {
  height: calc(var(--vh, 1vh) * 100);
  margin: 0 25vw;
  
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  align-content: center;
}
@media (max-width: 810px) {
  .preguntas-frecuentes {
  margin: 0 5vw;
}
}

.renglon-faq {
  display: flex;
  align-items: center;  /* Centra verticalmente el texto con el ícono */
  gap: 1vw;            /* Espacio entre el ícono y el texto */
  padding: 2vh;
}
@media (max-width: 810px) {
  .renglon-faq {
  padding: 1vh;
  gap: 3vw;  
}
}

.titulo-faq{
  position: relative; 
  text-align:center;
  font-size: 5vh;
  font-weight: 600;
  color: white;
  z-index: 20;
  margin: 0 0 1vh 0;
}
@media (max-width: 810px) {
  .titulo-faq{
  font-size: 6vw;
}
}

.pregunta-faq{
  color: white;
  opacity: 0.9;
  font-size: 3vh;
  font-weight: normal;
  text-align: justify;
  margin: 0;
  z-index: 10;
}
@media (max-width: 810px) {
  .pregunta-faq{
  font-size: 4vw;  
}
}

.respuestas-faq {
  color: white;
  opacity: 0.6;
  font-size: 2vh;
  font-weight: lighter;
  text-align: justify;
  margin: 0 3vw 3vh;
  z-index: 10;
}
@media (max-width: 810px) {
  .respuestas-faq {
  font-size: 3vw;  
}
}

.servicios .preguntas-frecuentes hr { /* linea divisoria */
  position: relative;
  z-index: 200;
  height: 0.1vh;
  background-color: rgb(255, 255, 255, 0.5);
  border: none;
  margin: 0;
}

.imagen-proyecto {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: filter 0.3s ease, transform 0.3s ease;
  border-radius: 15%;
  z-index: 0;
}

.imagen-proyecto:hover {
  transform: scale(1.05);
  cursor: pointer;
}


/* <--COTIZADOR--> */
.contenedor-cotizador {
  position: relative;
  height: 80vh;
  width: 50vw;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgb(255, 255, 255, 0.2);
  border-left: 1px solid rgb(255, 255, 255, 0.2);
  box-shadow: 10px 10px 25px #00000044, -10px -10px 25px #00000044;
  border-radius: 5vh;
  opacity: 0;
  animation: fadeSlideIn 1.5s ease forwards;
  z-index: 30;
}
@media (max-width: 810px) {
  .contenedor-cotizador {
   max-height: 650px;
   width: 90vw;
   
}
}

.titulo-cotizacion {
  position: relative;
  color: rgb(255, 255, 255);
  font-size: 3vh;
  font-weight: 100;
  margin: 4vh 0;
}
@media (max-width: 810px) {
  .titulo-cotizacion {
   font-size: 5vw;
}
}

@media screen and (max-width: 810px) and (min-height: 1000px) {
  .titulo-cotizacion {
   font-size: 3vh;
}
}

.texto-cotizacion{
  color: rgb(255, 255, 255);
  opacity: 0.9;
  font-size: 1.1vw;
  font-weight: 100;
  text-align: justify;
  margin: 0;
  z-index: 10;
}
@media (max-width: 810px) {
  .texto-cotizacion{
   font-size: 4vw;
   width: 35vw;
}
}

@media screen and (max-width: 810px) and (min-height: 1000px) {
  .texto-cotizacion {
   font-size: 2.5vw;
}
}


.numero-pregunta-cotizacion {
  color: rgb(255, 255, 255);
  opacity: 1;
  font-size: 4.5vh;
  font-weight: 600;
  margin: 0 0.5vw;
  z-index: 10;
}

@media (max-width: 810px) {
  .numero-pregunta-cotizacion{
   font-size: 6vw;
   margin: 0;
}
}

@media screen and (max-width: 810px) and (min-height: 1000px) {
  .numero-pregunta-cotizacion{
   font-size: 2vh;
}
}

.icono-pregunta{
  cursor: pointer;
  opacity: 0.8;
  height: 2vh;
  position: absolute;
  right: 1vw;
  z-index: 60; /* por encima del wrapper */
}
@media (max-width: 810px) {
  .icono-pregunta{
   margin-right: 0.5vw;
}
}

.contenedor-cotizador hr { /* linea divisoria */
  position: relative;
  z-index: 200;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  margin: 0;
}

.contenedor-cotizar-02{
  position: absolute;
  bottom: 12vh;
  height: 5vh;
  width: 12vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4vh;
  z-index: 30;
  animation: fadeSlideIn 1.5s ease forwards;
  transition:  background-color 0.3s ease;
}
@media (max-width: 810px) {
  .contenedor-cotizar-02 {
    bottom: 12vh;  
    width: 40vw;
}
}

@media screen and (max-width: 810px) and (min-height: 800px) {
  .contenedor-cotizar-02 {
   bottom: 16vh;
}
}

@media screen and (max-width: 810px) and (min-height: 1000px) {
  .contenedor-cotizar-02 {
   bottom: 20vh;
}
}

.contenedor-cotizar-02:hover{
  transform: scale(1.05);
  background-color: rgb(0, 0, 0);
}

.texto-boton-02 {
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 1.8vh;
  font-weight: 600;
  transition: color 0.3s ease;
  animation: fadeSlideIn 1.5s ease forwards;
}
@media (max-width: 810px) {
  .texto-boton-02 {
   font-size: 4vw;
}
}

/* Estilos para los select de las preguntas */
.select-cotizacion {
  position: absolute;
  right: 3vw;
  height: 4vh;
  width: 10vw;
  
  border-radius: 4vh;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 1.1vw;
  font-family: 'Crimson Pro', serif;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 810px) {
  .select-cotizacion {
   font-size: 4vw;
   width: 25vw;
   margin-right: 4vw;
}
}

@media screen and (max-width: 810px) and (min-height: 1000px) {
  .select-cotizacion {
   font-size: 2.5vw;
}
}

.select-cotizacion:hover {
  background-color: rgba(255, 255, 255, 1);
}

/* BOX: fixed para que no se mueva con transforms del wrapper */
.box-pregunta {
  position: fixed;
  left: 80vw;
  height: fit-content;
  width: 20vw;
  max-width: 360px;
  min-width: 220px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 3vh;
  padding: 2vw;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 9999;
  pointer-events: none;
}
@media (max-width: 810px) {
  .box-pregunta {
   width: 60vw;
   padding: 5vw;
}
}

/* Cuando está activo */
.box-pregunta.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.titulo-info {
  color: rgb(0, 0, 0);
  font-size: 2.5vh;
  font-weight: 600;
  margin-bottom: 0.5vh;
}
@media (max-width: 810px) {
  .titulo-info {
   font-size: 5vw;
}
}

.texto-info {
  color: rgb(0, 0, 0);
  font-size: 2vh;
  font-weight: 100;
  text-align: justify;
}
@media (max-width: 810px) {
  .texto-info {
   font-size: 4vw;
}
}

.icono-info {
  width: 18vw;
  margin-top: 0.5vh;
}
@media (max-width: 810px) {
  .icono-info {
   width: 60vw;
}
}

.mensaje-error {
  color: red;
  font-size: 1.1vw;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-top: 12px;
  height: 1.4em;        /* mantiene el espacio para evitar "saltos" del layout */
  display: block;
}
@media (max-width: 810px) {
  .mensaje-error {
   font-size: 3vw;
}
}

@media screen and (max-width: 810px) and (min-height: 1000px) {
  .mensaje-error {
   font-size: 2vw;
}
}

.mensaje-error.visible {
  opacity: 1;
}

/* RESULTADOS */
.presupuesto {
  height: calc(var(--vh, 1vh) * 100);
  width: 50vw;
  background-color: beige;
  border-radius: 5vh;
}

.contenedor-cotizar-03{
  position: absolute;
  bottom: 3.5vh;
  left: 6vh;
  height: 5vh;
  padding: 0 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5vh;
  z-index: 30;
  animation: fadeSlideIn 1.5s ease forwards;
  transition:  background-color 0.3s ease;
}
@media (max-width: 810px) {
  .contenedor-cotizar-03{
   padding: 0 5vw;
   left: 2.5vh;
   bottom: 2.5vh;
}
}
@media screen and (max-width: 810px) and (min-height: 1000px) {
  .contenedor-cotizar-03{
    padding: 0 3vw;
    height: 3vh;
}
}

.contenedor-cotizar-03:hover{
  transform: scale(1.05);
  background-color: rgb(0, 0, 0);
}

.contenedor-cotizar-04{
  position: absolute;
  bottom: 3.5vh;
  right: 6vh;
  height: 5vh;
  padding: 0 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5vh;
  z-index: 30;
  animation: fadeSlideIn 1.5s ease forwards;
  transition:  background-color 0.3s ease;
}
@media (max-width: 810px) {
  .contenedor-cotizar-04{
   padding: 0 5vw;
   right: 2.5vh;
   bottom: 2.5vh;
}
}

@media screen and (max-width: 810px) and (min-height: 1000px) {
  .contenedor-cotizar-04{
    padding: 0 3vw;
    height: 3vh;
}
}


.contenedor-cotizar-04:hover{
  transform: scale(1.05);
  background-color: rgb(0, 0, 0);
}

.texto-boton-03 {
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 1.8vh;
  font-weight: 600;
  transition: color 0.3s ease;
  animation: fadeSlideIn 1.5s ease forwards;
}
@media (max-width: 810px) {
  .texto-boton-03 {
   font-size: 4vw;
}
}

@media screen and (max-width: 810px) and (min-height: 1000px) {
  .texto-boton-03 {
   font-size: 1.5vh;
}
}

.titulo-grilla-presupuesto {
  position: relative;
  color: rgb(255, 255, 255);
  margin: 0;
  font-size: 2vh;
  font-weight: 100;
}
@media (max-width: 810px) {
  .titulo-grilla-presupuesto {
   font-size: 1.8vh;
   
}
}

.contenedor-grilla-presupuesto {
  width: 100%;
  position: absolute;
  top: 12vh;
  display: grid;
  grid-template-columns: 25% 1fr;
  grid-template-rows: min-content;
  overflow: hidden;
  align-items: stretch;
}
@media (max-width: 810px) {
  .contenedor-grilla-presupuesto {
   grid-template-columns: min-content 1fr;
   top: 11vh;
}
}

.item-presupuesto {
  position: relative;
  align-content: center;
  padding: 1.5vh;
  z-index: 30;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 1200px) and (min-height: 700px) {
  .item-presupuesto {
   padding: 1vh;
}
}

@media (max-width: 810px) {
  .item-presupuesto {
   padding: 0.7vh;
}
}

.texto-presupuesto {
  color: rgb(255, 255, 255);
  opacity: 0.9;
  font-size: 2vh;
  font-weight: 100;
  text-align: justify;
  margin: 0;
  z-index: 10;
}

@media (max-width: 810px) {
  .texto-presupuesto {
   font-size: 3.5vw;
}
}

@media screen and (max-width: 810px) and (min-height: 1000px) {
  .texto-presupuesto {
   font-size: 1.8vh;
}
}

@media (max-height: 650px) {
  .texto-presupuesto {
   font-size: 2vh;
}
}

.texto-detalle-presupuesto {
  color: rgb(255, 255, 255);
  opacity: 0.7;
  font-size: 1.8vh;
  font-weight: 100;
  text-align: justify;
  margin: 0;
  z-index: 10;
}
@media (max-width: 810px) {
  .texto-detalle-presupuesto {
   font-size: 3.5vw;
}
}

@media screen and (max-width: 810px) and (min-height: 1000px) {
  .texto-detalle-presupuesto {
   font-size: 1.6vh;
}
}

@media (max-height: 650px) {
  .texto-detalle-presupuesto {
   font-size: 1.8vh;
}
}

.contenedor-precio {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16vh;
  height: 4vh;
  width: max-content;
  padding: 0 3vh;
  gap: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1.5vh;
  z-index: 30;
}
@media (max-width: 810px) {
  .contenedor-precio {
   bottom: 13vh;
}
}

@media screen and (max-width: 810px) and (min-height: 1000px) {
  .contenedor-precio {
   bottom: 9vh;
   height: 3.5vh;
}
}

.texto-precio {
  text-align: center;
  color: rgb(0, 0, 0);
  font-size: 2vh;
  font-weight: 600;
  transition: color 0.3s ease;
}
@media (max-width: 810px) {
  .texto-precio {
   font-size: 1.8vh;
}
}

@media screen and (max-width: 810px) and (min-height: 1000px) {
  .texto-precio {
   font-size: 1.6vh;
}
}

.terminos-condiciones {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 11vh;
  display: flex;
  justify-content: center;
  align-items: center;  /* Centra verticalmente el texto con el ícono */
  gap: 0.3vw;            /* Espacio entre el ícono y el texto */
  width: max-content;
}
@media (max-width: 810px) {
  .terminos-condiciones {
   width: 80vw;
   bottom: 9.5vh;
}
}
@media screen and (max-width: 810px) and (min-height: 1000px) {
  .terminos-condiciones {
   bottom: 6vh;
}
}

.pdf-condiciones{
  color: white;
  font-size: 2vh;
  font-weight: 500;
}
@media (max-width: 810px) {
  .pdf-condiciones {
   font-size: 1.6vh;
}
}

.texto-condiciones {
  color: rgb(255, 255, 255);
  opacity: 0.7;
  font-size: 2vh;
  font-weight: 500;
  margin: 0;
  z-index: 10;
  display: inline;
}
@media (max-width: 810px) {
  .texto-condiciones {
   font-size: 1.6vh;
}
}

.checkbox-contenedor {
  position: relative;
  display: inline-block;
  margin-right: 1vw;
}

.checkbox-contenedor input[type="checkbox"] {
  width: 1.5vh;  
  height: 1.5vh;
  cursor: pointer;
}

.cruz-error {
  position: relative;
  color: red;
  font-size: 2vh;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Para que no interfiera con el checkbox */
}

.cruz-error.visible {
  opacity: 1;
}

.error-texto-condiciones {
  color: red !important;
  opacity: 1 !important;
  
  transition:  color 0.3s ease, transform 0.3s ease;
  text-decoration-color: red !important; /* Subrayado rojo */
}

/* DATOS CLIENTE */
.contenedor-datoscliente {
  position: relative;
  height: 70vh;
  width: 40vw;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgb(255, 255, 255, 0.2);
  border-left: 1px solid rgb(255, 255, 255, 0.2);
  box-shadow: 10px 10px 25px #00000044, -10px -10px 25px #00000044;
  border-radius: 5vh;
  opacity: 0;
  animation: fadeSlideIn 1.5s ease forwards;
  z-index: 30;
}
@media (max-width: 810px) {
  .contenedor-datoscliente {
   max-height: 550px;
   width: 90vw;
}
}

@media screen and (max-width: 810px) and (min-height: 1000px) {
  .contenedor-datoscliente {
   max-height: 800px;
}
}

.contenedor-grilla-datoscliente {
  width: 100%;
  position: relative;
  display:block;
  grid-template-columns: 1fr;
  grid-template-rows: min-content;
  overflow: hidden;
}

.item-datoscliente {
  position: relative;
  align-content: center;
  justify-content: center;
  padding: 2vh 3vw;
  z-index: 30;
}

.titulo-datoscliente{
  position: relative;
  color: rgb(255, 255, 255);
  margin-top: 1vh;
  font-size: 2vh;
  font-weight: 100;
}
@media (max-width: 810px) {
  .titulo-datoscliente{
   font-size: 4vw;
   margin-top: 0;
}
}

.contenedor-completardatos {
  height: 4vh;
  padding: 0 3vw;
  margin: 0 1vw;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 2vh;
  z-index: 30;
}
@media (max-width: 810px) {
  .contenedor-completardatos{
   margin: 0 5vw;
}
}

/* INPUTS DENTRO DE .contenedor-completardatos */
.contenedor-completardatos input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 2vh;
  color: #000; /* texto negro */
  text-align: center;
  font-family: 'Crimson Pro', serif;
}
@media (max-width: 810px) {
  .contenedor-completardatos input {
   font-size: 18px;
   padding: 0;
   box-sizing: border-box;
}
}

.contenedor-completardatos input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  background-color: transparent;
}

.form-datoscliente {
  width: 100%;
  text-align: center;
  margin-top: 3vh;
}

.contenedor-cotizar-05{
  position: relative;
  justify-self: center;
  height: 6vh;
  width: fit-content;
  padding: 0 3vw;

  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3vh;
  z-index: 30;
  animation: fadeSlideIn 1.5s ease forwards;
  transition:  background-color 0.3s ease;
}

.contenedor-cotizar-05:hover{
  transform: scale(1.05);
  background-color: rgb(0, 0, 0);
}



/* AGRADECIMIENTO */
.contenedor-agradecimiento {
  position: relative;
  display: inline;
  gap: 0;
  width: 30vw;
  
  align-items: center;
  justify-items: center;
  opacity: 0;
  animation: fadeSlideIn 1.5s ease forwards;
  z-index: 30;
}
@media (max-width: 810px) {
  .contenedor-agradecimiento {
  width: 80vw;
}
}

.imagen-agradecimiento{
  height: 20vh;
  margin-bottom: 0;
}
@media (max-width: 810px) {
  .imagen-agradecimiento{
  width: 50w;
}
}

.titulo-agradecimiento{
  color: rgb(255, 255, 255);
  font-size: 8vh;
  font-weight: 100;
  text-align: center;
  margin-bottom: 3vh;
}
@media (max-width: 810px) {
  .titulo-agradecimiento{
  font-size: 15vw;
}
}

.texto-agradecimiento{
  color: rgb(255, 255, 255, 0.6);
  font-size: 2vh;
  font-weight: 100;
  text-align: center;
  margin-bottom: 3vh;
}

.titulo-construccion{
  color: rgb(255, 255, 255);
  font-size: 8vh;
  font-weight: 100;
  text-align: center;
  margin-bottom: 3vh;
}
@media (max-width: 810px) {
  .titulo-construccion{
  font-size: 10vw;
}
}

