:root {
  --colorCeleste: #47A5BB;
  --colorCeleste2:#3A90A4;
  --colorCeleste:#166699;
  --colorAzul: #060644;
  --colorAzul2: #050517;
  --colorDorado:#B8A24B;
  --coloGris:#272727;
  --colorGris:#0e0d0d;

}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


body {
    /* background: var(--colorAzul); */
    background: var(--colorGris);
}

nav {
    background: rgba(255, 0, 0, 0);
}

.navbar-brand img {
  width: 150px;
}


.bg-dark {
  background-color: rgba(255, 0, 0, 0) !important;
}

.offcanvas {
  background-color: #33333391 !important;

}

.dropdown-menu-dark {
  background-color: rgba(255, 0, 0, 0) !important;
}

/* Contenedor del video */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
}

.cardo-regular-titulo {
  margin-left: 1.3rem;
  font-size: 3rem !important;
  
  
}


.display_none {
  display: none;
}

.cardo-regular {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: normal;
}

.cardo-bold {
  font-family: "Cardo", serif;
  font-weight: 700;
  font-style: normal;
}

.cardo-regular-italic {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: italic;
}


.montserrat-tipo {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.tipo-Subtitulo {
  font-size: 2rem;
  margin-left: 1rem;
}
.tipo-Tertitulo {
  font-size: 2rem;
}



.celeste {
    /* color: rgb(192, 36, 36); */
    color: var(--colorCeleste);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: normal;
    
     
    }

    .imagen-container {
      background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('/img/4599.jpg');
      background-position: center;
      background-repeat: repeat;
      background-size: cover;
      position: relative;
  }

  .imagen-container_tasacion {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('/img/imagen_fondo2.jpg');
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    position: relative;
}

.modo-fusion {

  mix-blend-mode: multiply;
  
    }


#myVideo {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    /* width: auto; */
    height: auto;
    z-index: -1;
    /* background-size: cover; */
    opacity: 0; /* Empezar con el video invisible */
    animation: fadeInVideo 1s forwards; /* Aplicar la animación de fade-in */
}

/* Definir la animación de fade-in */
@keyframes fadeInVideo {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.content {
    position: absolute;/*cambiamos posicion absolute*/
    bottom: 0;
    left:0;/*agregamos posicion left*/
    right: 0;/*agregamosposicion right*/
    background: #00000046;
    color: #f1f1f1;
    width: 100%;
    height: 100%;
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: flex-start; */
    text-align: left;
    padding: 2rem 10%;
    padding-top: 25%;

}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.content button {
  font-size: 1rem;
  padding: 10px 20px;
}


.contenedor_redes {
  width: 100%;
  /* background: red; */

}
/* .contenedor_redes {
  margin-left: 0;
} */

.contenedor_redes a svg {
  margin-left: 0;
}



#myBtn {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    border-radius: 100px;
    background: #00000075;
    color: #fff;
    cursor:pointer;
    border: 3px solid var(--colorCeleste2);

}

#myBtn:hover {
    background: #dddddd5b;
    color: black;

}

ul li:hover {
  text-shadow: 4px 4px 10px var(--colorDorado);
}

.navegacion  {
 position: fixed;
 left: 10%;
 top: 3rem;
 transition: top 0.3s;
 z-index: 1000;
 /* background-color: #333; */
 width: calc(100% - 20%);
}

.navegacion ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  
}

.navegacion li {
  /* display: inline; */
  margin-left: 1.5rem;
  font-size: 1.2rem;
}

.navegacion  li a{
  color: #ffffff;
  text-decoration: none;
 
}

.navegacion li a:hover{
  text-shadow: -1px 2px 10px #27272778;
  /* color: #B8A24B; */
  border-bottom: 1px solid #ccc;
}

.subtext {
  display: block;
  margin-top: 0.2rem;
  font-size: smaller;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.intermitencia {
  animation: blink 1s infinite;
}


  @media (max-width: 768px) {
    #myVideo {
      left: -90%;
    }
    .navbar-brand img {
      width: 100px;
    }
    .content {
      justify-content: flex-end;
      padding-bottom: 20px;
      padding-top: 0;
    }
    .content h1 {
        font-size: 1.5rem;
    }
    .content p {
        font-size: 2rem;
    }
    .content button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    .contenedor_redes {
      margin-left: -1.5rem;
    }
    .contenedor_redes svg {

      width: 20px;
      height: 20px;

    }
    .cardo-regular-titulo {
      font-size: 2.2rem !important;
      margin-left: 0.2rem;
    }
    .tipo-Subtitulo {
      font-size: 1.3rem !important;
    } 
    .navegacion li {
      display: none;
      
    }
    .contenedor_redes a svg {
      margin-left: 0;
    }
    .iconos_redes svg{
      width: 20px;
      height: 20px;
    }
   
   
    
}


/* Estilos para la nueva sección */
.ventajas {
  background-color: rgba(0, 0, 0, 0.856);
  
  background-attachment: fixed;
  padding: 2rem;
  /* border-radius: 8px; */
  margin-top: 0; /* Ajustar según sea necesario */
  /* border-bottom: 10px solid red; */
}

.linea_fanzie {
  margin-top: 0;
  z-index: -1;
  width: 100%;
  height: 10vh;
  background-color: rgba(0, 0, 0, 0.856);

  border-radius: 0 0 100% 0;
  box-shadow: 0 10px 10px var(--colorCeleste);
}

.linea_fanzie2 {
  margin-top: -1rem;
  z-index: -1;
  width: 100%;
  height: 10vh;
  background-color: #ffffff;

  border-radius: 0 0 0 70%;
  box-shadow: 0 10px 10px var(--colorCeleste);
}

.linea_fanzie3 {
  margin-top: 3rem;
  margin-bottom: -3rem;
  z-index: -1;
  width: 100%;
  height: 10vh;
  background-color: var(--coloGris);

  border-radius: 100% 0 0 0;
  box-shadow: -20px 0 10px var(--colorCeleste);
}

/* Estilos para la sección de experiencias */
.experiencias {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0;
  /* margin-top: 2rem; */
}

.experiencias h2 {
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}



/* Estilos para la sección de contacto */
.contacto {
  background-color: var(--colorDorado);
  /* background-image: url('/img/ben-wicks-Ia-qPL-HQdA-unsplash.jpg'); */
  /* background-repeat: no-repeat; */
  /* background-attachment: fixed; */
  padding: 2rem;
  border-radius: 0;
}

.img_contacto  {

  border-radius: 10px;
  /* border: 1px solid var(--colorAzul2); */
  /* border-radius: 20% 80% 19% 81% / 60% 28% 72% 40% ; */
  transition: box-shadow .5s ease;


}

.img_contacto:hover {
  box-shadow: 10px 4px 10px #166799a1;
}




.contacto ul {
  padding-left: 0;
}

.contacto ul li {
  display: inline;
  margin-right: 10px;
}

.contacto ul li a {
  color: #333;
  font-size: 24px;
}


.text_trayectoria {
  
  margin-top: -4rem;
  
}
.texto_justificado {
  font-size: 1.5rem;
  font-weight: light;
  color: white;  
  text-align: justify;
}
.img_logo_trayectoria {
  width: 50%;
  margin-top: -1rem;
}

iframe {
  border: 1px solid var(--colorCeleste) !important;
  box-shadow: 4px 4px 10px var(--colorCeleste);
}




/* Media query para dispositivos móviles */
@media (max-width: 767px) {
  /* Estilos para el mapa en dispositivos móviles */
  iframe {
      width: 100%; /* Opcional: Ajusta el ancho al 100% del contenedor */
      height: 300px; /* Establece una altura fija para evitar que se desborde en dispositivos móviles */
  }
  .col-sm-4 h2 {
    text-align: start !important;
  }
  .sobreMi::before {
    top: -0.5rem;
  }
  .texto_justificado {
    font-size: 1.1rem;
  }
}

.img_retrato {
  border: 1px solid var(--colorDorado);
  box-shadow: 4px 5px 10px #06064480;
  border-radius: 50%; 
  width: 100%;
  display: block;
  margin: auto;
  filter: grayscale(30%);
}


.footer {
  background-color: #272727;
  color: #fff;
  padding: 30px 0;
}

.footer h4 {
  color: #fff;
}

.footer ul {
  list-style-type: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.contact-icons {
  font-size: 24px;
}

.contact-icons li {
  display: inline;
  margin-right: 10px;
}

.contact-icons li a {
  color: #fff;
}

/* Estilos para cambiar el color de los enlaces cuando se les pasa el ratón */
.contact-icons li a:hover {
  color: #ccc;
}

.footer ul li a:hover {
  border-bottom: 1px solid #fff;
}

.nuestros_Servicios {
  /* background-color: #050517; */
  /* background-color: var(--coloGris); */
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;

  /* border-radius: 10px; */
  border: 1px solid transparent;
  box-shadow: 1px 1px 10px transparent;
  animation: borderAnimation 4s steps(4) forwards, shadowAnimation 5s ease-in-out forwards;
 
  
}
.nuestros_Servicios p {
  font-size: 1.6rem;
}


@keyframes borderAnimation {
  0% {
    border-top: 1px solid transparent;
  }
  25% {
    border-top: 1px solid #b8a24b8e;
  }
  50% {
    border-right: 1px solid #b8a24b8e;
  }
  75% {
    border-bottom: 1px solid #b8a24b8e;
  }
  100% {
    border-left: 1px solid #b8a24b8e;
  }
}

@keyframes shadowAnimation {
  0%, 80% {
    box-shadow: 1px 1px 10px transparent;
  }
  100% {
    box-shadow: 1px 1px 10px #B8A24B;
  }
}

.sobreMi {
  position: relative;
  background-image: url('/img/imagen_fondo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
  padding: 2rem;
  height: 100vh; /* Ajusta la altura según sea necesario */
}

.sobreMi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.674); /* Ajusta el color y la transparencia aquí */
  z-index: 1;
}

.sobreMi .row {
  position: relative;
  z-index: 2;
}


.img_SobreMi  img{

  
  border-radius: 50%;
  border: 2px solid #B8A24B;
  box-shadow: 4px 4px 10px #B8A24B;
  filter: sepia(40%);
  
}

.sobreMi p {
  padding: 4rem;
  margin-top: 1rem;
  text-align: justify;
}



/* Media query para dispositivos intermedios como el iPad */
@media (min-width: 768px) and (max-width: 1024px) {
  
   .sobreMi {
    padding: 1rem;
  
    /*background-attachment: scroll;  Cambia a scroll para evitar problemas de rendimiento en móviles */
  }


  .sobreMi p {
    padding: .5rem;
    margin-top: 2rem;
  }

  .img_SobreMi {
    opacity: 0;
  } 
    
  .contacto .row {
    flex-direction: column;
  }

  .contacto .col-md-6 {
    width: 100%;
    padding: 1rem;
  }

  .contacto .iconos_redes ul {
    justify-content: center;
  }
  iframe {
    width: 100%;
  }

}




/* Media query para dispositivos móviles */
@media (max-width: 767px) {
    .sobreMi p{
        padding: 1rem;
    }

  .img_SobreMi {
    opacity: 0;
  }
  /* Estilos para el mapa en dispositivos móviles */
  iframe {
      width: 100%; /* Opcional: Ajusta el ancho al 100% del contenedor */
      height: 300px; /* Establece una altura fija para evitar que se desborde en dispositivos móviles */
  }
  .col-sm-4 h2 {
    text-align: start !important;
  }
  .nuestros_Servicios {
    width: 92%;
  }
  .nuestros_Servicios p {
    font-size: 1.5rem;
  }

  .img_logo_trayectoria {
    width: 80%;
    margin-top: 1rem;
  }

  .text_trayectoria {
    margin-top: 0;
  }
  .contacto .col-md-6 {
    width: 100%;
    padding: 1rem;
  }

  .contacto .iconos_redes ul {
    justify-content: center;
  }
 

}
