
/* 
001 - generales 
002 - presentacion
003 - menu 
004 - header- slider

*/

html {
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;
}
    
*,
*::after,
*::before {
   box-sizing: inherit;
}
    
body {
   margin: 0;
   padding: 0;
   overflow-x: hidden;
}

a{
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Russo One", sans-serif;
    padding: 0;
    margin: 0;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

/*presentacion*/

.presentacion{
    width: 100%;
    padding: 10px 30px 10px;
    height: 30vh;
}

.presentacion-flex{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.presentacion-rs{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.presentacion-redes{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.presentacion-redes .presentacion-a .fa-brands{
    color: #b1a32b;
    font-size: 1rem;
    padding: 8px;
    border-radius: 50%;
    transition: 0.5s;
}

.presentacion-redes-text{
    font-weight: 700;
}

.presentacion-img{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
}

.presentacion-img img{
    height: 100%;
}

.presentacion-h1{
    width: 25%;
    text-align: right;
}

.presentacion-whatsapp .presentacion-a .fa-brands{
    color: #006A12;
    font-size: 1.5rem;
    padding: 8px;
    border-radius: 50%;
    transition: 0.5s;
}

.presentacion-h1{
    color: #006A12;
}

.presentacion-a .fa-brands:hover{
    transform: scale(1.3);
}

@media screen and (max-width: 925px) {

  .presentacion{
    height: auto;
}
  .presentacion-flex{
    flex-direction: column;
    padding-top: 100px;
    align-items: center;
    width: 90%;
  }

  .presentacion-rs,
  .presentacion-img,
  .presentacion-h1{
    width: 90%;
  }

  .presentacion-img img{
    width: 100%;
  }
  
}

/*menu*/

.menu{
    background-color: #000000cb;
    color: #fff;
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 10000;
}

.menu__container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
}

.menu__links{
    height: 100%;
    transition: transform .5s;
    display: flex;
    justify-content: space-evenly;
    width: 85%;
}

.menu__item{
    list-style: none;
    position: relative;
    height: 100%;
    --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
    --transform: rotate(-90deg);
}

.menu__item:hover{
    --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    --transform: rotate(0);
}

.menu__link{
    color: #fff;
    text-decoration: none;
    padding: 0 15px;
    display: flex;
    height: 100%;
    align-items: center;
}

.menu__link:hover{
    background-color: #006A12;
}


.menu__arrow{
    transition: 0.3s;
    display: block;
    margin-left: 3px;
    height: 30%;
}

.menu__item--show:hover .menu__arrow{
    transform: rotate(90deg);
}

.menu__nesting{
    list-style: none;
    transition:clip-path .3s;
    clip-path: var(--clip);
    position: absolute;
    right: 0;
    bottom: 0;
    width: max-content;
    transform: translateY(100%);
    background-color: #000000cb;
}

.menu__link--inside{
    padding: 30px 100px 30px 20px;
}

.menu__link--inside:hover{
    background-color: #006A12;
}

.menu__hamburguer{
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    display: none;
}

.menu__img{
    display: block;
    width: 36px;
}

@media (max-width: 925px){

    .menu{
        position: sticky;
        background-color: #000;
    }

    .menu__container{
        justify-content: space-between;
    }

    .menu__hamburguer{
        display: flex;
    }

    .menu__item{
        --clip:0;
        overflow:hidden ;
        width: 90%;
    }

    .menu__item--active{
        --transform: rotate(0);
        --background: #5e7094;
    }

    .menu__item--show{
        background-color: var(--background);
    }


    .menu__links{
        position: fixed;
        max-width: 400px;
        width: 100%;
        top: 70px;
        bottom: 0;
        right: 0;
        background-color: #000;
        overflow-y: auto;
        display: grid;
        justify-content: flex-start;
        grid-auto-rows: max-content;
        transform: translateX(100%);
    }

    .menu__links--show{
        transform: unset;
        width: 100%;
    }

    .menu__link{
        padding: 25px 0;
        padding-left: 30px;
        height: auto;
    }

    .menu__arrow{
        height: 30px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .menu__nesting{
        display: grid;
        position: unset;
        width: 100%;
        transform: translateY(0);
        height: 0;
        transition: height .3s;
    }

    .menu__link--inside{
        width: 90%;
        margin-left: auto;
        border-left: 1px solid #798499;
    }
}

/*header- slider*/


.slider-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000116;
  }
  
  .slider {
    position: relative;
    background: #000116;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at 0 50%);
  }
  
  .slider .slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s;
  }
  
  .slider .slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .color-cape{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000098;
  }
  
  .slider .slide .info {
    position: absolute;
    color: #fff;
    width: 75%;
    left: 10%;
    top: 20%;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 5%);
  }
  
  .slider .slide .info h3 {
    font-size: 4rem;
    font-weight: 800;
    color: #b1a32b;
  }
  
  .slider .slide .info p {
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.5;
  }
  
  .info-flex{
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  
  .info-descripcion-ul,
  .info-descripcion-ul2{
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .info-descripcion-ul li,
  .nfo-descripcion-ul2 li{
    padding: 10px 5px;
    font-size: 1.3rem;
  }
  
  .info-descripcion-ul .fa-solid,
  .info-descripcion-ul2 .fa-solid{
    color: #b1a32b;
    margin-right: 10px;
  }
  
  .info-enlaces{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .enlaces-boton{
    text-decoration: none;
  }
  
  .enlaces-boton-stile{
    width: max-content;
    padding: 15px 20px;
    font-size: 1.2rem;
    color: #fff;
    margin-top: 25px;
    border-radius: 5px;
  }
  
  .green{
    background-color: #b1a32b;
    outline: 1px solid #b1a32b;
    transition: 0.5s;
  }
  
  .blue{
    background-color: #006A12;
    outline: 1px solid #006A12;
    transition: 0.5s;
  
  }
  
  .gray{
    background-color: #9d9d9d;
    outline: 1px solid #9d9d9d;
    transition: 0.5s;
  
  }
  .green:hover{
    background-color: transparent;
    outline: 1px solid #b1a32b;
    color: #b1a32b;
  }
  
  .blue:hover{
    background-color: transparent;
    outline: 1px solid #006A12;
    color: #006A12;
  }
  
  .gray:hover{
    background-color: transparent;
    outline: 1px solid #9d9d9d;
    color: #9d9d9d;
  }
  
  
  .navigation {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .slider:hover .navigation {
    opacity: 1;
  }
  
  .prev-btn,
  .next-btn {
    z-index: 999;
    font-size: 2em;
    color: #222;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    cursor: pointer;
  }
  
  .prev-btn {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  
  .next-btn {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
  }
  
  .navigation-visibility {
    width: 100%;
    position: absolute;
    bottom: 10%;
    z-index: 999;
    display: flex;
    justify-content: center;
  }
  
  .navigation-visibility .slide-icon {
    z-index: 999;
    background: rgba(255, 255, 255, 0.5);
    width: 20px;
    height: 10px;
    transform: translateY(-50px);
    margin: 0 6px;
    border-radius: 2px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }
  
  .navigation-visibility .slide-icon.active {
    background: #4285f4;
  }
  
  @media (max-width: 900px) {
    .slider {
      width: 100%;
    }
  
    .slider .slide .info {
      position: relative;
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  @media screen and (max-width: 760px) {
    .slider .slide .info {
      
      width: 90%;
      left: 30px;
      top: 10%;
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 5px 25px rgb(1 1 1 / 5%);
    }
  
    .slider .slide .info h3 {
      margin: 5px auto;
    }
  
    .info-flex{
      flex-direction: column;
      gap: 0;
    }
    .enlaces-boton-stile{
      margin-top: 8px;
    }
  
    .navigation-visibility{
      bottom: 10px;
    }
  }
  
  @media (max-width: 500px) {
    .slider .slide .info h3 {
      font-size: 1.8em;
      line-height: 40px;
    }
  
    .slider .slide .info p {
      font-size: 0.9em;
    }
  }
  

/*nosotros inicio*/

.nosotros-inicio{
  padding: 90px 20px 30px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.7)), url(../img/bg_nosotros_inicio.jpg);
  background-size: cover;
  background-attachment: scroll;
}

.nosotros-flex{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nosotros-flex *{
  padding: 15px 0;
}

.nosotros-inicio-h2{
  color: #006A12;
  font-size: 2.5rem;
}

.nosotros-i-span{
  font-size: 1.3rem;
  font-weight: 900;
}

.nosotros-flex .nosotros-i-p{
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  width: 80%;
  text-align: justify;
  text-shadow: 2px 2px 8px #353535;
}

.nosotros-i-p strong{
  font-weight: 900;
  color: #006A12;
}

.servicios-inicio{
  width: 100%;
  padding: 80px 20px;
  background-color: #001f05;
}

.servicios-i-flex{
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.servicios-i-item{
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  border-right: 1px solid #fff;
  flex-grow: 1;
}

.servicios-i-item .fa-solid{
  color: #fff;
  margin-bottom: 20px;
  font-size: 3rem;
  transition: 0.4s;
}

.servicios-i-item:hover .fa-solid{
  transform: scale(1.8) translateY(-15px);
  opacity: 0.8;
  color: #b1a32b;
}

.servicios-i-h4{
  text-align: center;
}

.servicios-i-h4 a{
  color: #fff;
  letter-spacing: 5px;
  
}

/*servicios descripcion*/
.servicios-descripcion{
  margin-top: 40px;
  padding: 0 15px 40px;
  
}

.servicios-d-grid{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 30px;
}

.servicios-d-item{
  padding: 10px 15px;
  box-shadow: 0 3px 5px 1px #98989895;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.servicios-d-item img{
  width: 100%;
  object-fit: cover;
  height: 300px;
  border-radius: 15px;
}

.servicios-d-h4{
  text-align: center;
  font-size: 2rem;
  color: #b1a32b;
  margin-top: 20px;
}

.servicios-d-p{
  color: #686868;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: justify;
}


.servicios-btn{
  padding: 8px 10px 3px;
  border: 2px solid #b1a32b;
  color: #b1a32b;
  width: max-content;
  transition: 0.5s;
}

.servicios-btn:hover{
  transform: translateX(60%);
}

/*---------------------contacto-------------------------*/
.intro-contacto{
  margin-top: 30px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
  padding: 40px 25px;
  line-height: 1.5;
  color: #898989;
}

.contacto-form{
  margin-top: 80px;
  padding: 45px 20px;
  background-color: #001f05;
}

.contac-form-flex{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.form-section{
  width: 50%;
  min-width: 330px;
  padding: 20px;
  background-color: #b1a32b;
  border-radius: 25px;
}

.form-style{
  display: flex; 
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 15px;
  margin-top: 20px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
-webkit-appearance: none; 
margin: 0; 
}

.box-input,
.box-textarea{
  position: relative;
  width: 100%;
}

.textarea{
  height: 8rem;
}

.box-input .input-style,
.box-textarea .textarea{
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #006A12;
  background-color: transparent;
  border-radius: 5px;
  outline: none;
  color: #fff;
  font-size: 1rem;
  resize: none;
}

.box-input label,
.box-textarea label{
  position: absolute;
  left: 0;
  padding: 10px;
  pointer-events: none;
  font-size: 1rem;
  color: #ffffff55;
  transition: 0.5s;
}

.box-input .input-style:valid ~ label,
.box-input .input-style:focus ~ label,
.box-textarea .input-style:focus ~ label{
  color: #1d2b3a;
  transform: translateX(10px) translateY(-5px);
  font-size: 0.8rem; 
  padding: 0 10px; 
  background-color: #006A12;
  letter-spacing: 2px;
  border-radius: 3px;
}

legend{
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  color: #fff;
}

.contacto-section{
  width: 40%;
  min-width: 320px;
}

.contacto-info{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 0;
  align-items: flex-start;
}

.contacto-info-item{
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.contacto-info-item i{
  color: #fff;
  font-size: 1.5rem;
  padding: 10px;
}

.contacto-datos-container{
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 1.2rem;
  padding: 10px 0;
}

.contacto-datos-titulo{
  font-weight: 600;
  letter-spacing: 2px;
}

.box-submit input{
  background-color: transparent;
  padding: 12px 30px;
  color: #006A12;
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: 600;
}

.validacion-input{
  position: absolute;
  color: #fff;
  bottom: -25px;
  left: 20px;
  display: none;
}

.validacion-active{
  display: block;
}

.honeypot-container {
  margin-bottom: 16px;
}

.label-honey{
  color: #b1a328;
}

#honeypot{
  opacity: 0.01;

}
/*-----------------gracias y aviso de privacidad----------------------*/

.gracias{
  width: 100%;
  min-height: 100vh;
  padding: 80px 30px 30px;
  background-color: #031277;
  color: #fff;
}

.gracias-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.gracias-h1{
  font-size: 3rem;
}

.aviso-h3{
  font-size: 2.3rem;
}

.gracias-text,
.aviso-privacidad-ul{
  font-size: 2rem;
  line-height: 1.5;
  text-align: justify;
  margin: 0;
}

.gracias-img{
  width: 40%;
  min-width: 290px;
  border-radius: 30px;
}

.volver{
  text-decoration: none;
}

.volver-text{
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  color: #888888;
  transition: 0.6s;
  animation: moveinicio 2s infinite;
  margin-top: 20px;
}

@keyframes moveinicio{
  0%{
      transform: translateX(20px);
      opacity: 0.5;
  }
  50%{
      transform: translateX(-20px);
      opacity: 1;
  }

  100%{
      transform: translateX(20px);
      opacity: 0.5;
  }
}

.fa-arrow-left{
  margin-right: 5px;
}


/* 009 - footer */ 

footer{
  background-color: #fff;
  padding: 35px 20px 10px;
}

.footer-container{
  width: 100%;
  display: flex; 
  justify-content: center;   
}

.footer-item{
  width: 30%;
  display: flex;
  justify-content: center;
}

.item-redes{
  flex-direction: column;
  align-items: center;
}

.item-redes p{
  color: #b1a328;
  font-weight: 900;
  font-size: 1.3rem;
}

.footer-redes{
  border: 1px solid #b1a328;
  border-radius: 10px;
  padding: 15px 5px;
}

.privacy{
  display: inline-block;
  margin-top: 15px;
  color: #006A12;
  font-weight: 600;
}

.footer-item img{
  height: 230px;
}

.item-articles{
  display: flex;
  justify-content: space-evenly;
}

.footer-article{
  padding: 5px 15px;
}

.footer-h4 a{
  color: #b1a328;
  font-weight: 900;
  font-size: 1.3rem;
  text-decoration: none;
} 

.footer-ul li a{
  color: #b1a328;
  margin-top: 10px;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  transition: 1s;
}

.footer-ul li a:hover{
  color: #006A12;
}

.copy{
  text-align: center;
  color: #006A12;
  font-size: 1.2rem;
  font-weight: 600;
}

@media screen and (max-width: 800px){
  .footer-container{
      flex-direction: column;
      width: 90%;
      align-items: center;
  }

  .footer-item{
      width: 100%;
      margin-top: 20px;
  }

  .item-articles{
      flex-direction: column;
  }
}

/*-------------------------------------blog--------------------------*/

.port-blog{
  width: 100%;
  height: 70vh;
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,91,151,1) 35%, rgba(0,91,151,1) 65%, rgba(0,0,0,1) 100%);
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: grab;
}

.port-blog-h1{
  position: relative;
  color: #fff;
  font-size: 8rem;
  font-weight: 900;
  font-style: italic;
  text-align: center;
}

.port-blog img{
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  object-fit: cover;
}

@media screen and (max-width:700px) {
  .port-blog-h1{
      font-size: 3rem;
  } 
}

/*--------------------blog-complit-----------------------*/

.blog-complit{
  width: 100%;
  padding: 20px 20px 20px 60px;
  margin-top: 50px;
}

.blog-flex{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.blog-principal{
  width: 70%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 30px;
  justify-content: center;
}

.blog-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px 15px;
  border-radius: 25px;
  border-bottom: 2px solid #0ca5c4;
  background-color: #f5f5f5;
}

.blog-figure{
  width: 100%;
  height: 300px;
  margin: 0;
}

.blog-figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 4px 4px 8px 1px #36363689;
}

.blog-h3{
  font-size: 1.2rem;
  margin: 5px auto;
  color: #006A12;
  font-weight: 800;
  text-align: center;
}

.blog-info{
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
}

.blog-reusmen{
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: justify;
  padding: 0 10px;
  text-indent: 1rem;
  color: #848484;
}

.blog-liga{
  text-decoration: none;
  position: relative;
  background-color: #006A12;
  padding: 10px 30px;
  width: max-content;
  color: #e2e2e2;
  transform-style: preserve-3d;
  transition: ease-in-out 0.8s;
  border-radius: 16px;
  font-size: 1.2rem;
}

.blog-liga:hover{
  transform: scale(1.2);

}

.blog-liga-div{
  text-decoration: none;
  font-weight: 700;
}



/*--------------------blog-aside-----------------------*/

.blog-lateral{
  display: flex;
  margin-top: 50px;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 65px;
  width: 25%;
}

.blog-lateral::before{
  content: "";
  position: absolute;
  outline: 1px solid #0ca5c4;
  height: 100%;
  left: -15px;
}

.ultimas-noticias-h2, 
.proximos-articulos-h2{
  color: #fff;
  background-color: #006A12;
  padding: 25px 10px;
  border-radius: 0 50px 50px 0;
}

.ultimas-noticias-ul,
.proximos-articulosul{
  color: #6b6b6b;
  line-height: 1.5;
}

.aside-figure{
  width: 90%;
  align-self: center;
}

.aside-figure img{
  width: 100%;
}

.engagement{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.engagement-text{
  font-size: 1.5rem;
  line-height: 1.2;
  color: #004789;
  font-weight: 900;
}

.engagement-redes{
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.engagement-redes-img{
  width: 70px;
  height: 70px;
}

.link-articulo:hover span{
color: #0053a2;
}

.link-articulo:hover i{
  color: #0053a2;
  }

/*-------articulos del blog general----------*/

.port-articulos-blog{
  width: 100%;
  height: 350px;
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,91,151,1) 35%, rgba(0,91,151,1) 65%, rgba(0,0,0,1) 100%);
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: grab;
}

.articulo-h1{
  color: #fff;
  font-style: italic;
  font-size: 3rem;
  font-weight: 900;
}

.articulo-de-Blog{
  width: 65%;
  padding: 10px 20px 10px 0;
}

.articulo-blog-h2{
  color: #031277;
  font-size: 2rem;
}

.articulo-blog-h3{
  color: #0ca5c4;
  font-size: 1.7rem;
}

.articulo-blog-h4{
  color: #797979;
  font-size: 1.5rem;
}

.articulo-blog-text{
  font-size: 1.1rem;
  color: #575757;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}

.blog-img-float-left{
  border-radius: 0 50% 50% 0;
  width: 400px;
  height: 300px;
  object-fit: cover;
  float: left;
  shape-outside: circle(50%);
  margin: 25px 30px;
  margin-left: 0;
  opacity: .8;
}

.blog-img-float-rigth{
  border-radius: 50% 0 0 50%;
  width: 400px;
  height: 300px;
  object-fit: cover;
  float: right;
  shape-outside: circle(50%);
  margin: 25px 30px;
  margin-right: 0;
  opacity: .8;
}

@media screen and (max-width: 850px) {
  .blog-flex{
      flex-direction: column;
      align-items: center;
  }

  .articulo-de-Blog{
      width: 90%;
      padding: 10px;
  }

  .blog-principal{
      width: 100%;
  }

  .blog-lateral{
  width: 90%;
  }

  .blog-img-float-left,
  .blog-img-float-rigth{
      border-radius: 0;
      width: 100%;
      height: auto;
      shape-outside: none;
      float: none;
      margin: 10px auto;
  }

  .blog-complit{
      width: 100%;
      padding: 20px 5px;
      margin-top: 50px;
  }
  
}

/*derecho familiar*/

.header{
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100vh;
}

.header_video_contenedor, .header_contenido{
  position: absolute;
  width: 100%;
  height: 100%;
}

.video_header{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.black_bg{
  width: 100%;
  height: 100%;
  background-color: #0000009c;
  position: absolute;
  z-index: 500;
}

.header_contenido{
  color: #fff;
  z-index: 700;
  top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.titulo_conte_df img{
  width: 20%;
}

.titulo_conte h1{
  font-size: calc(1.3rem + 2vw);
  margin-top: 15px;
  font-weight: 500;
}

.titulo_conte h2{
  font-size: calc(0.9rem + 1vw);
  font-weight: 300;
  margin-top: 15px;
}

.header_social_resen{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
  margin-top: 25px;
}

.header_rese{
  width: 100%;
  margin: 5px;
  padding: 10px;
  box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
  background: #ffffff15;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.header_h6{
  font-size: 1rem;
  font-weight: 200;
  margin-bottom: 10px;
}

.header_star .fa-star{
  margin: 2px 3px;
}

.header_call_action{
  background-color: #b1a32b;
  padding: 10px 15px;
  width: fit-content;
  text-align: center;
  margin: auto;
  margin-top: 15px;
  border-radius: 5px;
}

.header_call_action a{
  color: #fff;
}

.df_porque_contenedor{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
  gap: 5px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
  align-items: center;
  margin-top: 50px;
  padding: 20px 30px;
}

.df_porque_item{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.porque_h2, .aex_h2, .testimonios_h2{
  margin-bottom: 30px;
  color: #b1a328;
  text-align: center;
  font-size: 1.6rem;
}

.porque_ul{
  font-size: 1.3rem;
  font-weight: 700;
  padding-right: 25px;
  list-style-type: disc;
  color: #011e06;
}

.porque_ul li{
  margin: 35px auto;
}

.aex_contenedor{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(370px, 100%), 1fr));
  gap: 30px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
  margin-top: 50px;
  padding: 20px 150px;background-color: #fffdee;
}

.areas_exper{
  margin-top: 50px;
  padding: 30px 20px;
}

.aex_item{
  padding: 10px;
  transition: 0.5s;
}

.aex_item:hover{
  transform: scale(1.08);
  background-color: #fffbdb;

}

.aex_h4{
  font-size: 1.3rem;
  color: #006A12;
}

.aex_test{
  text-align: justify;
  font-size: 1.1rem;
}

.porque_ul_confi{
  font-size: 1.1rem;
  list-style-type: disc;
  padding-left: 20px;
}

.porque_ul_confi li{
  margin-top: 15px;
}

.df_testimonios{
  background-color: #001f05;
  margin-top: 50px;
  padding: 50px 5px;
}

.testimonials-section{
	width: 100%;
	padding: 50px 8%;
}
.testimonials-section .section-header{
	max-width: 700px;
	text-align: center;
	margin: 30px auto 40px;
}

.testimonials-container{
	position: relative;
}

.testimonials-container .testimonial-card{
	padding: 20px;
}

.testimonial-card{
	background-color: #006a12d0;
	box-shadow: 2px 2px 20px rgba(0,0,0,0.12);
	padding: 20px;
  border-radius: 5px;
}

.test-card-body .quote{
	display: flex;
	align-items: center;
}
.testimonial-card .quote i{
	font-size: 45px;
	color: #fff;
	margin-right: 20px;
}
.testimonial-card .quote h3{
	color: #fff;
  font-weight: 300;
  font-size: 1.3rem;
}

.testimonial-card h6{
	color: #fff;
  font-weight: 200;
  font-size: 1.1rem;
  margin-top: 20px;
}

.testimonial-card p{
	margin: 10px 0px 15px;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
  font-size: 1.2rem;
  text-align: justify;
}
.test-card-body .ratings{
	margin-top: 20px;
}
.testimonial-card .ratings i{
	font-size: 17px;
	color: #fff;
	cursor: pointer;
}
.testimonial-card .profile{
	display: flex;
	align-items: center;
	margin-top: 25px;
}
.profile .profile-image{
	width: 55px;
	height: 55px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}
.profile .profile-image img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.profile .profile-desc{
	display: flex;
	flex-direction: column;
}
.profile-desc span:nth-child(1){
	font-size: 24px;
	font-weight: bold;
	color: var(--primary-clr);
}
.profile-desc span:nth-child(2){
	font-size: 15px;
	color: var(--text-clr);
}
.owl-nav{
	position: absolute;
	right: 20px;
	bottom: -10px;
}
.owl-nav button{
	border-radius: 50% !important;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i{
	padding: 10px !important;
	border-radius: 50%;
	font-size: 18px !important;
	background-color: #b1a328 !important;
	color: #fff;
	cursor: pointer;
	transition: 0.4s;
}
.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover{
	background-color: var(--primary-clr) !important;
	color: #e9e9e9;
}
.owl-dots{
	margin-top: 15px;
}
.owl-dots .owl-dot span{
	background-color: #b1a328 !important;
	padding: 6px !important;
}
.owl-dot.active span{
	background-color: #b1a32880 !important;
}

@media screen and (max-width:750px){
  .resen_nodis{
    display: none;
  }

  .aex_contenedor{
    padding: 20px 5px;
  }

  .areas_exper{
    padding: 5px 20px;
  }
}


.custodia {
  background: #f8f9fa;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  max-width: 600px;
  margin: 20px auto;
}

.custodia_titulo {
  font-size: 2rem;
  font-weight: bold;
  color: #002855;
  margin-bottom: 10px;
}

.custodia_texto {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
}

.custodia_lista {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.custodia_item {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.custodia_llamado {
  font-size: 18px;
  font-weight: bold;
  color: #d9534f;
  margin-bottom: 20px;
}

.custodia_boton {
  display: inline-block;
  background: #0056b3;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  transition: background 0.3s ease;
}

.custodia_boton:hover {
  background: #003f7f;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsividad */
@media (max-width: 768px) {
  .custodia {
      padding: 20px;
  }
  .custodia_titulo {
      font-size: 20px;
  }
  .custodia_texto, .custodia_llamado {
      font-size: 16px;
  }
  .custodia_item {
      font-size: 14px;
  }
  .custodia_boton {
      font-size: 16px;
      padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .custodia {
      padding: 15px;
  }
  .custodia_titulo {
      font-size: 18px;
  }
  .custodia_texto, .custodia_llamado {
      font-size: 14px;
  }
  .custodia_item {
      font-size: 13px;
  }
  .custodia_boton {
      font-size: 14px;
      padding: 8px 12px;
  }
}


.cta {
  display: inline-block;
  background-color: #b1a328;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}
.problema-solucion {
  display: flex;
  justify-content: space-around;
  padding: 50px 20px;
  background-color: #eee;
}
.problema, .solucion {
  width: 45%;
  padding: 20px;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.servicios {
  padding: 50px 20px;
  background: #f7f7f7;
}
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}
.tarjeta {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s forwards;
}
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s forwards;
}
@keyframes fadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
@keyframes slideInLeft {
  to {
      opacity: 1;
      transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
      opacity: 1;
      transform: translateX(0);
  }
}