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

a{
    text-decoration: none;
}

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

/*top-container*/

.top-container{
    height: 40px;
    background-color: #cc2366;
}

/* menu*/

.menu{
  background-color: #fff;
  color: #2156a2;
  height: 80px;
  font-weight: 600;
  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__logo{
  height: 90%;
  padding: 3px 0;
}

.menu__logo img{
  height: 100%;
  margin-right: 30px;
}

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

.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: #2156a2;
  text-decoration: none;
  padding: 0 15px;
  display: flex;
  height: 100%;
  align-items: center;
  transition: 0.4s;
}

.menu__link:hover{
  background-color: #2156a2;
  color: #fff;
}


.menu__arrow{
  transform: var(--transform);
  transition: transform .3s;
  display: block;
  margin-left: 3px;
}

.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: #ffffffda;
}

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

.menu__link--inside:hover{
  background-color: #2156a2;
}

.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__container{
      justify-content: space-between;
  }

  .menu{
      background-color: #000;
  }

  .menu__hamburguer{
      display: flex;
  }

  .menu__item{
      --clip:0;
      overflow:hidden ;
  }

  .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;
      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{
      margin-left: auto;
      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-inicio-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%);
}

.slide img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slide-absolute, .slide-absolute-img{
  position: absolute;
}

.bg-b60{
  position: absolute;
  background-color: #00000098;
  width: 100%;
  height: 100%;
}

.slide-absolute{
  left: 25%;
  top: 15%;
  color: #fff;
  padding: 10px 20px;
  width: 100%;
  z-index: 9000;
}

.slide-absolute .slide-h2{
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-top:10px;
}

.slide-absolute .slide-p{
  font-size: 1.5rem;
  font-weight: 500;
  margin-top:10px;
}

.btn-slide{
  background-color: #cc2366;
  padding: 10px 20px;
  width: max-content;
  margin-top: 20px;
  border-radius: 10px;
  color: #fff;
}

.slider .slide.active {
  clip-path: circle(150% at 0 50%);
  transition: 2s;
}

.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 screen and (max-width: 680px){
  .slide-absolute .slide-h2{
    font-size: 1.5rem;
  }

  .slide-absolute{
    left: 10px;
  }
}

/*nosotros-inicio*/

.nosotros{
  width: 100%;
  padding: 50px 0 25px;
  background-color: #eaefff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nosotros-h4{
  color: #c9c9c9;
  padding: 5px;
  margin: 20px auto 10px;
}

.nosotros-h3{
  font-size: 3rem;
  font-weight: 100;
  text-align: center;
  margin-bottom: 40px;
}

.nosotros-h3 strong{
  border-bottom: 2px solid #cc2366;
}

.nosotros-flex{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap-reverse;
  margin-top: 20px;
}

.nosotros-article, .nosotros-figure{
  width: 40%;
  min-width: 350px;
  height: 500px;
}

.nosotros-article{
  background-color: #fff;
  padding: 20px 35px 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 25px 0 0 25px;
}

.nosotros-text{
  line-height: 1.5;
  color: #aaaaaa;
  margin-top: 25px;
  text-align: justify;
}

.nosotros-figure{
  border-radius: 0 25px 25px 0;
  overflow: hidden;
}

.nosotros-figure img{
  width: 100%;
  object-fit: cover;
  height: 100%;
}

@media screen and (max-width: 710px) {
  .nosotros-article, .nosotros-figure{
    width: 100%;
    border-radius: 0;
  }

  .nosotros-article{
    height: auto;
  }

  .nosotros-figure{
    height: 400px;
  }
}

/*filosofia-inicio*/

.bg-img-filosofia{
  background-image: url(../img/inicio/bg-filosofia.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.filosofia-flex{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 1px;
  align-items: center;
  background-color: #2156a298;
}

.filosofia-item{
  width: 33.2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 10px;
  color: #fff;
  flex-grow: 1;
}

.filosofia-item .fa-solid{
  font-size: 4rem;
  margin-bottom: 25px;
}

.filosofia-item .filosofia-h3{
  font-size: 2rem;
  font-weight: 100;
}

.filosofia-text, .filosofia-ul{
  line-height: 1.5;
  font-size: 1.1rem;
  text-align: justify;
  padding: 05px;
  margin-top: 25px;
}

@media screen and (max-width:700px){
  .filosofia-flex{
    flex-direction: column;
  }

  .filosofia-item{
    width: 100%;
  }
}

/*principios- inicio*/

.principios{
  width: 100%;
  padding: 50px 0 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.principios-ul .fa-check{
  font-size: 2.3rem;
  font-weight: 900;
  color: #cc2366;
  margin-right: 20px;
}

.principios-flex{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.principios-article{
  width: 45%;
}

.principios-ul li{
  margin-top: 40px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.principios-figure{
  width: 30%;
}

.principios-figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 5px 2px #989898;
}

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

  .principios-flex{
    flex-direction: column;
  }

  .principios-article{
    width: 90%;
  }

  .principios-ul li{
    margin-top: 20px;
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .principios-figure{
    width: 90%;
    height: 200px;
    margin-top: 35px;
  }
}

/*--footer--*/

footer{
  border-radius: 25px 25px 0 0;
  box-shadow: 0 -2px 10px 2px #98989872;
  margin-top: 50px;
  background-color: #eeeeee;
}

.rpc{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  padding-top: 50px;
}

.rpc-item{
  min-width: 280px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.rpc-redes{
  flex-direction: row;
  justify-content: center;
}

.rpc-redes .fa-brands{
  color: #cc2366;
  font-size: 2rem;
  padding: 10px 15px;
}

button {
  background-color: #2156a2;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 14px;
  padding: 10px 25px;
  cursor: pointer;
}

.modal-container {
  display: flex;
  background-color: rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
  position: fixed;
  pointer-events: none;
  opacity: 0;  
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  transition: opacity 0.3s ease;
}

.show {
  pointer-events: auto;
  opacity: 1;
}

.modal {
  background-color: #fff;
  width: 600px;
  max-width: 100%;
  padding: 30px 50px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  overflow: scroll;
}

@media screen and (max-width: 450px) {
  .modal {
    width: 90%;
    height: 75vh;
    padding: 20px ;
  }
  
}

.modal h3 {
  margin: 0;
}

.modal p {
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 20px;
}

.rcp-ul{
  text-align: right;
}

.rcp-ul li{
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 6pxpx;
  font-size: 0.8rem;
}

.footer-direccion-p, .copyrigth{
  text-align: center;
  margin-top: 20px;
  padding-bottom: 15px;
}

/*calidad*/

.header-calidad{
  background-image: url(../img/calidad/portada-calidad.jpg);
  width: 100%;
  height: 400px;
  background-attachment: fixed;
  background-size: cover;
  background-position-x: right;
  position: relative;
}

.header-content{
  color: #fff;
  position: absolute;
  z-index: 6000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding-left: 20%;
}

.port-h1{
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 3px;
}

.header-content span{
  font-size: 1.5rem;
  font-weight: 600;
}

.poliica{
  padding: 60px 0 30px;
}

.politica-galery{
  padding: 40px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 50px;
  background-color: #2156a2;
}

.padd25{
  padding: 0 25px;
}

.politica-galery-item img{
  width: 100%;
  object-fit: cover;
  max-height: 300px;
  transition: 0.4s;
}

.politica-galery-item img:hover{
  transform: translateY(-20px);
}

/*productos */

.header-productos{
  background-image: url(../img/productos/port-productos.jpg);
  width: 100%;
  height: 400px;
  background-attachment: fixed;
  background-size: cover;
  background-position-x: right;
  position: relative;
}

/* Slicebox Style */
.sb-slider {
  margin: 10px auto;
  position: relative;
  overflow: hidden;
  width: 100%;
  list-style-type: none;
  padding: 0;
}

.sb-slider li {
  margin: 0;
  padding: 0;
  display: none;
  overflow: hidden;
}

.sb-slider li > a {
  outline: none;
}

.sb-slider li > a img {
  border: none;
}

.sb-slider img {
  max-width: 100%;
  display: block;
}

.sb-description {
  padding: 20px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: 1000;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  border-left: 4px solid #fff;
  opacity: 0;
  color: #fff;

  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -ms-transition: all 300ms;
  transition: all 300ms;
}

.sb-slider li.sb-current .sb-description {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  opacity: 1;
}

.sb-slider li.sb-current .sb-description:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=99)";
  filter: alpha(opacity=99);
  background: rgba(0, 0, 0, 0.8);
}

.sb-perspective {
  position: relative;
}

.sb-perspective > div {
  position: absolute;

  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;

  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

.sb-side {
  margin: 0;
  display: block;
  position: absolute;
  backface-visibility: visible;
  -moz-backface-visibility: visible;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}


/* custom style */
.container {
  width: 100%;
  max-width: 800px;
  margin: auto;
  position: relative;
}


.sb-description h3 {
  font-size: 20px;
}

.sb-description h3 a {
  color: #4a3c27;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.nav-arrows {
  display: none;
}

.nav-arrows a {
  width: 42px;
  height: 42px;
  background: #000 url(https://tympanus.net/Development/Slicebox/images/nav.png) no-repeat top left;
  background-size: cover;
  opacity: 0.6;
  position: absolute;
  top: 45%;
  left: 20px;
  text-indent: -9000px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 300ms;
}

.nav-arrows a:first-child {
  left: auto;
  right: 20px;
  background-position: top right;
}

.nav-arrows a:hover {
  opacity: 1;
  transform: scale(1.1);
}

@media screen and (max-width: 800px) {
  
  .nav-arrows a {
      width: 32px;
      height: 32px;
  }
  
  .sb-description {
      height: 30px;
  }
  
  .sb-description h3{
      margin: 3px;
  }
}

.intercambiadores-article{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.intercambiadores-h2{
  font-size: 2rem;
  color: #cc2366;
  margin-bottom: 20px;
}

.intercambiadores-ul{
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.5;
}

/*servicios*/

.servicios-flex{
  margin-top: 50px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.servicios-article{
  display: flex;
  width: 45%;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: column;
  height: 350px;
}

.serviios-h2{
  font-size: 2rem;
  text-align: center;
  font-style: italic;
}

.servicios-img{
  height: 350px;
  width: 250px;
  overflow: hidden;
  border-radius: 0 25px 0 25px;
}

.servicios-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 700px) {
  .servicios-flex{
    flex-direction: column;
    padding: 0;
  }

  .servicios-article{
    height: auto;
  }

  .servicios-article{
    width: 90%;
  }

  .revers-colum{
    flex-direction: column-reverse;
  }
}

.info-servicios{
  width: 200px;
  background-color: #cc2366;
  color: #fff;
  font-weight: 600;
  margin: auto;
  border-radius: 15px;text-align: center;
  padding: 10px;
  margin-top: 15px;
  transition: 0.4s;
}

.info-servicios:hover{
  background-color: #2156a2;
  transform: scale(1.05);
}

/*clientes*/

.clientes-flex{
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  padding: 10px 30px;
  width: 100%;
}

.clientes-logo{
  width: 500px;
  height: auto;
}

.clientes-logo img{
  width: 100%;
  height: auto;
}

.clientes-flex-b{
  display: flex;
  gap: 30px;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 50px;
  padding: 20px 35px;
  flex-wrap: wrap;
}

.clientes-flex-b img{
  height: 120px;
  object-fit: contain;
}

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

  .clientes-flex{
    flex-direction: column;
  }
  
}

/*contacto*/ 


.contacto-form{
  margin-top: 80px;
  padding: 45px 20px;
}

.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;
  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 #cc2366;
  background-color: transparent;
  border-radius: 5px;
  outline: none;
  color: #cc2366;
  font-size: 1rem;
  resize: none;
}

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

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

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

.input-submit{
  padding: 10px 15px;
  background-color: #cc2366;
  border-radius: 8px;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
}

.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: #cc2366;
  font-size: 1.5rem;
  padding: 10px;
}

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

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


/*-----------------gracias--------------------------*/


.gracias{
  height: 100vh;
  padding-top: 40px;
}

.contenedor_gracias{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.text_gracias{
  font-size: 2rem;
  color: #0053a2;
  font-weight: 600;
  text-align: center;
}

.gracias img{
  width: 80%;
  max-width: 700px;
}

/*- boton whatsapp */

.whatsapp-container{
  width: 60px;
  height: 60px;
  position: fixed;
  right: 10px;
  bottom: 15%;
  z-index: 1200;
}

.whatsapp-container a{
  text-decoration: none; 
}

.whatsapp-container a img{
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width:650px){
  .whatsapp-container{
      width: 60px;
      height: 60px;
  } 

  .whatsapp-container a span{
      display: none;
  }
}


.header-sistema{
  background-image: url(../img/sistemas02.jpg);
  width: 100%;
  height: 400px;
  background-attachment: fixed;
  background-size: cover;
  background-position-x: right;
  position: relative;
}


.sistemas_contenedor {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.sistemas_titulo {
  color: #004e92;
  margin-bottom: 1rem;
}

.sistemas_subtitulo {
  color: #004e92;
  margin-bottom: 1rem;
}

.sistemas_introduccion p,
.sistemas_servicios p,
.sistemas_modelo p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sistemas_lista {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.sistemas_lista li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

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

.sistemas_grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.fundicion {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: "Roboto", Arial, sans-serif;
  color: #333;
}

.fundicion-contenedor {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Layout con imagen y texto --- */
.fundicion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.fundicion-imagen {
  width: 100%;
}

.fundicion-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fundicion-texto {
  width: 100%;
}

.fundicion-titulo {
  font-size: 2rem;
  color: #c0392b;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.fundicion-descripcion {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

/* --- Bloques informativos --- */
.fundicion-bloques {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.fundicion-bloque {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fundicion-bloque:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fundicion-subtitulo {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 10px;
  border-left: 4px solid #c0392b;
  padding-left: 10px;
  font-weight: 600;
}

.fundicion-lista {
  list-style: none;
  padding-left: 0;
}

.fundicion-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.fundicion-item::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: #c0392b;
  font-weight: bold;
}

/* --- Cierre --- */
.fundicion-cierre {
  text-align: center;
  margin-top: 50px;
  font-weight: 500;
  color: #555;
  font-size: 1.05rem;
}

/* --- Responsividad --- */
@media (max-width: 900px) {
  .fundicion-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fundicion-texto {
    order: 2;
  }

  .fundicion-imagen {
    order: 1;
  }

  .fundicion-descripcion {
    text-align: left;
  }
}


.img-fundicion{
  width: 70%;
  object-fit: cover;
}

.fundicion-preview {
  background-color: #f3f3f3;
  padding: 60px 20px;
  font-family: "Roboto", Arial, sans-serif;
}

.fundicion-preview-contenedor {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.fundicion-preview-texto {
  flex: 1 1 480px;
}

.fundicion-preview-titulo {
  color: #c0392b;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 700;
}

.fundicion-preview-descripcion {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fundicion-preview-boton {
  display: inline-block;
  background-color: #c0392b;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.fundicion-preview-boton:hover {
  background-color: #a93226;
  transform: translateY(-2px);
}

.fundicion-preview-imagen {
  flex: 1 1 300px;
  text-align: center;
}

.fundicion-preview-img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsivo */
@media (max-width: 768px) {
  .fundicion-preview-contenedor {
    flex-direction: column;
    text-align: center;
  }

  .fundicion-preview-boton {
    margin-top: 10px;
  }
}
