
/* Fuentes nuevas ia  */
body {
  font-family: 'Fira Sans', sans-serif;
}

.nav {
  display: flex;
  flex-direction: column;
}

.redes {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.contenido-seccion {
  padding: 20px;
}

.titulo-seccion {
  text-align: center;
  margin: 20px 0;
}

.services-list ul {
  list-style-type: none;
  padding: 0;
}

.services-list li {
  margin: 5px 0;
}

@media (min-width: 768px) {
  .nav {
      flex-direction: row;
      justify-content: space-around;
  }

  .fila {
      display: flex;
      justify-content: space-between;
  }

  .col {
      flex: 1;
      margin: 0 10px;
  }
}
/* fin de Fuentes nuevas ia  */

/* importamos las fuentes */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700&family=Yellowtail&display=swap');
*{
    font-family: "Titillium Web";
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}

/*WA btn*/
.btn-wsp{
    position:fixed;
    width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;
    right:25px;
    background:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    transition: all 300ms ease;
    animation: aparecer 1s ease-in-out forwards; /* Definimos la animación */

}
.btn-wsp:hover{
    background: #20ba5a;
}
@media only screen and (min-width:320px) and (max-width:768px){
    .btn-wsp{
        width:63px;
        height:63px;
        line-height: 66px;
	}
}
.micontainerrmc {
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 10px;
    animation: deslizarValores 1s forwards;
    transform: translateX(-100%);
/*carrusel moras*/



  }

  /*historia*/
  .company-description {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1622612495181-312c8dfe1d47');
    background-size: cover;
    background-position: center;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(102, 51, 153, 0.8);
  }
  
  .description-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    color: #fff;
    text-align: center;
  }
  
  .description-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  
  .description-text p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  
  .miimgrmc {
    width: 50%; /* Tamaño de la imagen */
    margin-right: 20px; /* Espacio entre imagen y texto */
    border-radius: 10px;

  }
  
  .mitextrmcR {
    flex: 1;
    width: 50%; /* Tamaño del contenido de texto */
  }

  .micontainerrmcR {
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 20px;
  
  }
  
  .miimgrmcR {
    width: 50%; /* Tamaño de la imagen */
    margin-left: 20px; /* Espacio entre imagen y texto */
    border-radius: 10px;

  }
  
  .mitextrmcR {
    flex: 1;

    width: 50%; /* Tamaño del contenido de texto */
  }
/*carrusel moras*/



  /*css video*/

  .cardVideo {
    animation: aparecer 1s ease-in-out forwards; /* Definimos la animación */

    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  
  .card-video {
    position: relative;
    padding-bottom: 56.25%;
  }
  
  .card-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .card-text {
    padding: 26px;
    margin: 10px;
    transform: translateX(-100%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

    animation: deslizarValores 1s forwards;
  }
  .card-text p {
    text-align: justify;
    padding: 10px;
  }
  @keyframes deslizarValores {
    to {
      transform: translateX(0);
    }
  }
  /*linea moralidades*/

  .timeline {
    animation: aparecer 1s ease-in-out forwards; /* Definimos la animación */

    position: relative;
    padding: 10px 0;
    margin: 0 auto;
    max-width: 800px;
  }
  
  .timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background-color: #ccc;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 0 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    height: 30px;
    border-radius: 15px;
    border: 2px solid #ccc;
    white-space: nowrap;
  }
  
  .timeline-content {
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  

  .containerLine {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cardLine {
    width: 300px;
    height: 500px;
    margin: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease-in-out;
  }
  
  .cardLine:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .cardLine h2 {
    font-size: 32px;
    color: #2b2d42;
    margin-top: 20px;
  }
  
  .cardLine p {
    font-size: 16px;
    color: #000;
    margin: 20px;
  }
  
  /*mapa*/

  .map-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 20px;
    border-radius: 10px;

  }
  
  .map {
    flex: 1;
    margin-right: 10px;
  }
  
  .description {
    flex: 1;
  }
  
  @media screen and (max-width: 768px) {
    .map-container {
      flex-direction: column;
    }
  
    .map, .description {
      margin: 0;
    }
  }
      /*modal contactanos*/
      .contact-btn {
        background-color: #8B00FF;
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
      }
      
      .modal {
        display: none;
        position: fixed;
        z-index: 999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.4);
      }
      
      .modal-content {
        background-color: #ffff;
        border-radius: 5px;
        width: 80%;
        max-width: 600px;
        margin: 10% auto;
        padding: 20px;
        position: relative;
      }
      .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
      }
      
      .close:hover,
      .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
      }

      /*modal servicios a enviar0*/
      
      .contact-form {
        display: flex;
        flex-direction: column;
      }
      
      .contact-form h2 {
        font-size: 24px;
        color: #8B00FF;
        margin-bottom: 20px;
      }
      
      .form-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
      }
      
      .form-group {
        width: 45%;
        margin-bottom: 10px;
      }
      
      .form-group label {
        display: block;
        font-size: 16px;
        color: #333;
        margin-bottom: 5px;
      }
      
      .form-group input, .form-group textarea {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 5px;
        background-color: #eee;
        font-size: 16px;
        color: #333;
      }
      
      .form-group input:focus, .form-group textarea:focus {
        outline: none;
        border: 2px solid #8B00FF;
        background-color: #fff;
      }
      
      .input-container {
        position: relative;
      }
      
      .input-container i {
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        color: #aaa;
      }
      
      .form-group textarea {
        height: 150px;
      }
      
      button[type="submit"] {
        background-color: #8B00FF;
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 20px;
      }
      
      button[type="submit"]:hover {
        background-color: #5C00B3;
      }
      
      @media (max-width: 568px) {
        .form-row {
          flex-direction: column;
        }
        
        .form-group {
          width: 100%;
        }
      }
/*contactanos boton*/
.animated-button {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    padding: 10px 30px;
    background-color: #5a5b9f;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.20);
    border: none;
    outline: none;
    cursor: pointer;
  }
  
  .animated-button:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #fff;
    opacity: 0.2;
    border-radius: 100%;
    transform: translate(-50%, -50%);
  }
  
  .animated-button:hover:after {
    width: 200%;
    height: 200%;
  }
  
  .animated-button span {
    position: relative;
    z-index: 1;
  }
  
  /*servicios lista*/
  .services-list {
    background-color: rgba(201, 33, 143, 0.5);
    border: 1px solid #ccc;
    padding: 10px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .services-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .services-list li {
    font-size: 20px;
    color: #fff;
    margin: 10px;
    padding: 5px;
    border-bottom: 1px solid #ccc;
  }
  
  .services-list li:last-child {
    border-bottom: none;
  }
  
  
/* SECCION INICIO */
.inicio{
    background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)),
    url("img/fondoV2.jpeg");
    background-size: cover;
    background-position: center center;
    color: #fff;
}
.inicio .contenido-seccion{


    background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)),
    url("img/fondo.jpeg");
    background-size: cover;
    max-width: 1000px;
    
    margin: auto;
    text-align: center;
    padding: 0 10px;
}
.inicio .contenido-seccion header{
    padding: 30px;
}
/* menu lateral */
.inicio .contenido-seccion header nav{
    position: fixed;
    margin-left: 60px;
    background-color: #940253;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    z-index: 99;
    display: none;
}
.inicio .contenido-seccion header nav a{
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: bold;
}
/* ****** */
.inicio .contenido-seccion header .logo{
    font-weight: bold;
    font-size: 2.5rem;
    font-family: "Yellowtail";
    text-shadow: 0 0 35px #fff;
}
.inicio .contenido-seccion header .logo .color{
    color: #940253;
    font-family: "Yellowtail";
}
.inicio .contenido-seccion header .nav-bar{
    position: fixed;
    background-color: #940253;
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    cursor: pointer;
    transition: .3s;
}
.inicio .contenido-seccion header .nav-bar:hover{
    box-shadow: 0 0 35px #fff;
}
.inicio .contenido-seccion .info{
    padding-bottom: 130px;
}
.inicio .contenido-seccion .info h1{
    font-size: 3rem;
    letter-spacing: 5px;
}
.inicio .contenido-seccion .info h2{
    font-weight: normal;
    font-size: 20px;
    margin-top: -10px;
    letter-spacing: 2px;
}
.inicio .contenido-seccion .info .redes{
    margin: 20px 0;
}
.inicio .contenido-seccion .info .redes a{
    display: inline-block;
    text-decoration: none;
    background-color: #000;
    color: #c9218f;
    border: 1px solid #c9218f;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
    transition: .3s;
}
.inicio .contenido-seccion .info .redes a:hover{
    color: #fff;
    background-color: #c9218f;
    box-shadow: 0 0 20px #fff;
}
.inicio .contenido-seccion .foto{
    position: relative;
}
.inicio .contenido-seccion .foto img{
    max-width: 200px;
    border-radius: 50%;
    border: 5px solid #c9218f;
    position: absolute;
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
}
/* estilos generales */
.titulo-seccion{
    font-family: "Fira Sans, sans-serif";
    font-size: 1.5rem;
}
/* SECCION SOBRE MI */
.sobremi{
    background-color: #e6e6e6;
    padding: 140px 0 100px 0;
    text-align: center;
}
.sobremi .contenido-seccion{
    max-width: 1000px;
    margin: auto;
    padding: 0 10px;
}
.sobremi .contenido-seccion h3{
    text-transform: uppercase;
    font-size: 30px;
}
.sobremi .contenido-seccion .especial{
    color: #c9218f;
    font-weight: bold;
    margin-top: 15px;
}
.sobremi .contenido-seccion p{
    max-width: 700px;
    margin: auto;
    color: #666;
}
.sobremi .contenido-seccion .fila{
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
}
.sobremi .contenido-seccion .fila .col{
    width: 30%;
}
.sobremi .contenido-seccion .fila .col i{
    color: #c9218f;
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid #c9218f;
    line-height: 40px;
    border-radius: 50%;
}
.sobremi .contenido-seccion .fila .col span{
    display: block;
    font-weight: bold;
    margin: 8px 0;
}

/*seccion referencias*/

.referencias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
}

.referencia {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: #f0f0f0;
  animation: aparecer 1s ease-in-out forwards; /* Definimos la animación */

}



@keyframes aparecer {
  from {
    opacity: 0; /* Establecemos la opacidad inicial */
    transform: translateY(20px); /* Movemos la caja hacia abajo */
  }
  to {
    opacity: 1; /* Establecemos la opacidad final */
    transform: translateY(0); /* La caja vuelve a su posición original */
  }
}


.referencia img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.contenedor-titulo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px; /* altura deseada del contenedor */
  background-color: #f0f0f0;
}

.contenedor-titulo h2 {
  font-size: 2em; /* tamaño de fuente deseado para el título */
}


/* SECCION HABILIDADES */
.habilidades{
    padding: 80px 0 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)),
    url("img/habilidades.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    color: #fff;
}
.habilidades .contenido-seccion{
    max-width: 1000px;
    margin: auto;
    padding: 0 10px;
}
.habilidades .contenido-seccion h3{
    text-transform: uppercase;
    font-size: 30px;
}
.habilidades .contenido-seccion .fila{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.habilidades .contenido-seccion .fila .col{
    width: 47%;
    text-align: left;
}
.habilidades .contenido-seccion .fila .col .cont-barra{
    display: flex;
    align-items: center;
}
.habilidades .contenido-seccion .barra{
    display: flex;
    border: 1px solid #940253;
    padding: 2px;
    border-radius: 3px;
    margin-right: 10px;
}
.habilidades .contenido-seccion .barra .e{
    background-color: #363636;
    width: 20px;
    height: 30px;
    margin-right: 2px;
}
/* SECCION RESUMEN */
.resumen{
    background-color: #e6e6e6;
    padding: 140px 0 100px 0;
    text-align: center;
}
.resumen .contenido-seccion{
    max-width: 1000px;
    margin: auto;
    padding: 0 10px;
}
.resumen .contenido-seccion h3{
    text-transform: uppercase;
    font-size: 30px;
}
.resumen .contenido-seccion .info{
    text-align: left;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.resumen .contenido-seccion .info .col{
    width: 45%;
}
.resumen .contenido-seccion .info .col .titulo{
    display: inline-block;
    color: #940253;
    font-weight: bold;
    border: 2px solid #940253;
    padding: 10px;

}
.resumen .contenido-seccion .info .col table{
    margin-top: 30px;
    border-collapse: collapse;
}
.resumen .contenido-seccion .info .col table .datos{
    width: 40%;
    border-bottom: 1px solid #bab9b9;
}
.resumen .contenido-seccion .info .col table h4{
    margin-top: 10px;
}
.resumen .contenido-seccion .info .col table h3{
    font-size: 20px;
    margin-bottom: 5px;
}
.resumen .contenido-seccion .info .col table p{
    font-size: 14px;
}
.resumen .contenido-seccion .info .col table .promedio{
    display: block;
    color: #940253;
    margin-top: 10px;
    font-weight: bold;
}
.resumen .contenido-seccion .info .col table .descripcion{
    border-left: 1px solid #bab9b9;
    padding-left: 20px;
}


/*formulario*/
.container {
  width: 80%;
  height: 80vh;
  display: flex;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.212);
}

.form-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(img/fondoV2.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 1rem;
}

.form-image img {
  width: 31rem;
}

.form {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 3rem;
}

.form-header {
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
}

.login-button {
  display: flex;
  align-items: center;
}

.login-button button {
  border: none;
  background-color: #6c63ff;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.login-button button:hover {
  background-color: #6b63fff1;
}

.login-button button a {
  text-decoration: none;
  font-weight: 500;
  color: #fff;
}

.btnformulurio {
  background-image: linear-gradient(to bottom right, #6a3093, #a044ff);
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.form-header h1::after {
  content: '';
  display: block;
  width: 5rem;
  height: 0.3rem;
  background-color: #6c63ff;
  margin: 0 auto;
  position: absolute;
  border-radius: 10px;
}

.input-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 0;
}

.input-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.1rem;
}

.input-box input {
  margin: 0.6rem 0;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 10px;
  box-shadow: 1px 1px 6px #0000001c;
  font-size: 0.8rem;
}

.input-box input:hover {
  background-color: #eeeeee75;
}

.input-box input:focus-visible {
  outline: 1px solid #6c63ff;
}

.input-box label,
.gender-title h6 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #000000c0;
}

.input-box input::placeholder {
  color: #000000be;
}

.gender-group {
  display: flex;
  justify-content: space-between;
  margin-top: 0.62rem;
  padding: 0 .5rem;
}

.gender-input {
  display: flex;
  align-items: center;
}

.gender-input input {
  margin-right: 0.35rem;
}

.gender-input label {
  font-size: 0.81rem;
  font-weight: 600;
  color: #000000c0;
}

.continue-button button {
  width: 100%;
  margin-top: 2.5rem;
  border: none;
  background-color: #6c63ff;
  padding: 0.62rem;
  border-radius: 5px;
  cursor: pointer;
}

.continue-button button:hover {
  background-color: #6b63fff1;
}

.continue-button button a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 1330px) {
  .form-image {
      display: none;
  }
  .container {
      width: 50%;
  }
  .form {
      width: 100%;
  }
}

@media screen and (max-width: 1064px) {
  .container {
      width: 90%;
      height: auto;
  }
  .input-group {
      flex-direction: column;
      z-index: 5;
      padding-right: 5rem;
      max-height: 10rem;
      overflow-y: scroll;
      flex-wrap: nowrap;
  }
  .gender-inputs {
      margin-top: 2rem;
  }
  .gender-group {
      flex-direction: column;
  }
  .gender-title h6 {
      margin: 0;
  }
  .gender-input {
      margin-top: 0.5rem;
  }
}

/* SECCION CONTACTO */
.contacto{
    background-color: #202020;
    padding: 140px 0 100px 0;
    color: #e6e6e6;
    text-align: center;
}
.contacto .contenido-seccion{
    max-width: 1000px;
    margin: auto;
    padding: 0 10px;
}
.contacto .contenido-seccion h3{
    text-transform: uppercase;
    font-size: 30px;
}
.contacto .contenido-seccion .fila{
    display: flex;
    justify-content: space-around;
}
.contacto .contenido-seccion .fila .col{
    margin-top: 50px;
}
.contacto .contenido-seccion .fila .col h2{
    color: #940253;
}
/* SECCION RESPONSIVE */
@media screen and (max-width:800px){
    .habilidades .contenido-seccion .fila{
        display: block;
    }
    .habilidades .contenido-seccion .fila .col{
        width: 100%;
        text-align: center;
    }
    .habilidades .contenido-seccion .fila .col .cont-barra{
        justify-content: center;
    }
    .sobremi .contenido-seccion .fila{
        display: block;
    }
    .sobremi .contenido-seccion .fila .col{
        width: 80%;
        margin: auto;
        margin-top: 20px;
    }
    .resumen .contenido-seccion .info{
        display: block;
    }
    .resumen .contenido-seccion .info .col{
        width: 90%;
        margin: auto;
    }
    .resumen .contenido-seccion .info .col .titulo{
        display: block;
        text-align: center;
    }
    .resumen .contenido-seccion .info .col table{
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .contacto .contenido-seccion .fila{
        display: block;
    }
}

/*referencias*/
