/* ===================== GOOGLE FONTS ===================== */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

/* ===================== VARIABLES CSS ===================== */
:root {
  --header-height: 3.5rem;
  --first-color: #fb5c76;
  --first-color-alt: #f3516a;
  --title-color: #000000;
  --text-color: #ff9e35;
  --text-color-light: #ff9ca7;
  --body-color: #f0f0f0;
  --container-color: hsl(21, 78%, 96%);
  --section: #000000;
  font-family: 'Source Sans 3', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --font-medium: 500;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/* ===================== BASE ===================== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background 1s;
}
h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-medium);
}
ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
a {
  text-decoration: none; 
}
img {
  max-width: 100%;
  height: auto;
}

/* ===================== SCROLL BAR ===================== */
::-webkit-scrollbar {
  width: .6rem;
  border-radius: .5rem;
  background-color: hsl(340, 37%, 29%);
}
::-webkit-scrollbar-thumb {
  border-radius: .5rem;
  background-color: hsl(19, 8%, 65%);
}
::-webkit-scrollbar-thumb:hover {
  background-color: hsl(19, 8%, 55%);
}
/* ===================== HEADER ===================== */
.static-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding: 0 55px;
  height: 130px;
  box-sizing: border-box;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}
.logo-area {
  display: flex;
  align-items: flex-start;
  height: 100px;
  margin-top: 20px;
}
.logo-img {
  height: 100px;
  width: auto;
}
.menu-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--first-color);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 16px 20px 32px 20px;
  height: 140px;
  min-width: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  position: relative;
}
.menu-label {
  font-size: 1.1em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}
.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 22px;
}
.menu-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}
/* ===================== MENU OVERLAY ===================== */
.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 65vh;
  display: flex;
  flex-direction: row;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  transform: translateY(-100%);
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.menu-section {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  color: #fff;
  transition: transform 0.45s cubic-bezier(.23,1,.32,1), box-shadow 0.45s cubic-bezier(.23,1,.32,1);
  will-change: transform;
  backface-visibility: hidden;
  flex-direction: column;
}
.menu-section:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  z-index: 2;
}
.menu-section.yellow {
  background: var(--first-color);
  color: #fff;
}
.menu-section.red {
  background: var(--text-color-light);
  color: #fff;
}
.menu-section-img {
  display: block;
  margin-bottom: 18px;
  height: 300px;
  width: auto;
  border-radius: 18px;
  transition: filter 0.3s;
  cursor: pointer;
}
.menu-section:hover .menu-section-img {
  filter: drop-shadow(0 18px 12px rgba(0,0,0,0.25));
}.menu-background {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.55);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.menu-background.active {
  opacity: 1;
  pointer-events: auto;
}
.menu-section-word {
  position: relative;
  display: inline-block;
  transition: color 0.2s;
  cursor: pointer;
}
.menu-section-word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: scaleX(0);
}
.menu-section:hover .menu-section-word::after {
  opacity: 1;
  transform: scaleX(1);
}
.menu-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-img-overlay {
  height: 100px;
  width: auto;
}
.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.close-icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-icon span {
  position: absolute;
  width: 32px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}
.close-icon span:first-child {
  transform: rotate(45deg);
}
.close-icon span:last-child {
  transform: rotate(-45deg);
}
.menu-close-label {
  font-size: 1.3em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}
.menu-icon.hide {
  display: none;
}
.menu-overlay-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  padding: 40px 84px;
  z-index: 1001;
  box-sizing: border-box;
  pointer-events: none;
  background-color: var(--text-color-light);
}
.menu-close-row,
.menu-overlay-header {
  pointer-events: auto;
  display: flex;
  align-items: center;
}

/* ===================== ANIMATIONS ===================== */
.menu-overlay-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  padding: 40px 84px;
  z-index: 1001;
  box-sizing: border-box;
  pointer-events: none;
  background-color: var(--text-color-light);
}
.menu-btn,
.close-btn {
  transition: transform 0.2s cubic-bezier(.23,1,.32,1);
}
.menu-btn:hover,
.close-btn:hover {
  transform: scale(1.15);
}
#menuIcon {
  transition: transform 0.2s cubic-bezier(.23,1,.32,1);
  color: white;
}
.menu-btn:hover #menuIcon {
  transform: scale(1.15);
}

/*=============== FOOTER ===============*/

.footer{
    position: relative;
    margin: 2rem 2rem 7rem 2rem;
    overflow: hidden;
}
.footer__container{
    row-gap: 3rem;
}
.footer__logo{
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: 1rem;
    transition: color .3s;
}
.footer__logo img{
    width: 100px;
}
.footer__logo:hover{
    color: var(--first-color);
    text-decoration: underline;
}
.footer__description,
.footer__link,
.footer__information{
    font-size: var(--small-font-size);
}
.footer__content,
.footer__links{
    display: grid;
}
.footer__content{
    grid-template-columns: repeat(2, max-content);
    gap: 2.5rem;
}
.footer__title{
    font-size: var(--h3-font-size);
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}
.footer__description{
  color: var(--first-color);
}
.footer__links{
    row-gap: .5rem;
}
.footer__link{
    color: var(--first-color);
    transition: color .3s;
}
.footer__link:hover{
    color: var(--first-color-alt);
}
.footer__social{
    display: flex;
    column-gap: 1.25rem;
}
.footer__social-link{
    color: var(--first-color);
    font-size: 1.25rem;
    transition: color .3s, transform .3s;  
}
.footer__social-link:hover{
    color: var(--first-color-alt);
    transform: translateY(-2px);
    text-decoration: underline;
}
.footer__onion,
.footer__spinach{
    width: 30px;
    position: absolute;
}
.footer__onion{
    top: 19.5rem;
    right: 16rem;
    
}
.footer__spinach{
    bottom: 7rem;
    left: 12rem;
    width: 75px;
    transform: scaleX(-1);
}
.footer__leaf{
    width: 100px;
    position: absolute;
    bottom: 24rem;
    right: 2rem;
}
.footer__info,
.footer__card{
    display: flex;
}
.footer__info{
    margin-top: 2rem;
    flex-direction: column;
    row-gap: 1.5rem;
}
.footer__card{
    column-gap: 1rem;
    justify-content: center;
}
.footer__card img{
    width: 35px;
}
.footer__copy{
    text-align: center;
    font-size: var(--smaller-font-size);
    color: var(--title-color);
}
a.footer__link:hover{
    text-decoration: underline;
}
.fabixpage{
    color: var(--first-color);
}
.fabixpage:hover{
    color: #fff;
    text-decoration: underline;
}

.section__border {
    border-bottom: 1px solid var(--title-color);
  }

  .social-icon {
  font-size: 2em;
  color: var(--first-color);
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
}

.social-icon:hover {
  color: #fff; /* Cambia el color al pasar el mouse */
  transform: scale(1.15) translateY(-4px); /* Sube un poco hacia arriba */
}

.cenefa-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -10px; /* Ajusta según el diseño */
  position: relative;
  z-index: 2;
  padding: 0 30px;
  margin-top: 3rem;
  margin-bottom: 4rem;
}
.cenefa-img-divider {
  width: 100%;
  max-width: 100vw;
  height: auto;
  display: block;
}

.menu-open {
  overflow: hidden !important;
  height: 100vh !important;
}
.menu-background {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.55);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.menu-background.active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 1700px) {
    .menu-overlay {
        flex-direction: column;
        padding-bottom: env(safe-area-inset-bottom);
        -webkit-overflow-scrolling: touch;
    }
}
@media (max-width: 800px) {
    .logo-img-overlay {
        height: 60px;
        width: auto;
    }
}
@media (max-width: 800px) {
    .menu-close-label {
        font-size: 1rem;
    }
}
@media (max-width: 800px) {
    .menu-section {
        font-size: 1em;
        padding: 7px 0;
    }
}
@media (max-width: 600px) {
    .menu-overlay-header-row {
        padding: 25px 25px !important;
    }
    .menu-section-img {
        height: 70px !important;
        max-width: 100vw !important;
        border-radius: 0 !important;
    }
    

}
    
@media screen and (min-width: 1024px) {
  .footer__container {
    position: relative;
    grid-template-columns: repeat(2, max-content);
   justify-content: space-between;
   row-gap: 3rem ;
   margin-inline: auto;
   max-width: 1024px;
  }
  .grid{
    display: grid;
    gap: 1.5rem;
  }
  .container{
    margin-inline: auto;
    max-width: 1024px;
  }
  .footer__content{
    column-gap: 4rem;
    grid-template-columns: repeat(3, max-content) !important;
    gap: 2.5rem;
    display: grid;
  }
  .footer__title, .footer__link, .footer__information, .footer__description {
    font-size: var(--normal-font-size);
  }
  .footer{
    
    position: relative;
  }
  .footer__onion{
    top: 30.5rem;
    right: 11rem;
    
}
.footer__spinach{
    bottom: 15rem;
    left: 12rem;
    width: 75px;
    transform: scaleX(-1);
}
.footer__leaf{
    width: 100px;
    position: absolute;
    bottom: 34rem;
    right: 2rem;
}
.footer__title{
  margin-top: 0rem;
}
.cenefa-img-divider2,
  .cenefa-divider .cenefa-img-divider2 {
    display: none !important;
  }
  /* Opcional: oculta el contenedor si solo tiene esa imagen */
  .cenefa-divider:has(.cenefa-img-divider2) {
    display: none !important;
  }
  .menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  transform: translateY(-100%);
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  color: #fff;.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  transform: translateY(-100%);
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  color: #fff;
  transition: transform 0.45s cubic-bezier(.23,1,.32,1), box-shadow 0.45s cubic-bezier(.23,1,.32,1);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
  flex-direction: column;
}

.menu-section:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  z-index: 2;
}

.menu-section.yellow {
  background: #fb5c76;
  color: #fff;
}

.menu-section.red {
  background: #ff9ca7;
}



.menu-section:hover .menu-section-img {
  filter: drop-shadow(0 18px 12px rgba(0,0,0,0.25));
}

.menu-section-word {
  position: relative;
  display: inline-block;
  transition: color 0.2s;
  cursor: pointer;
}

.menu-section-word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: scaleX(0);
}

.menu-section:hover .menu-section-word::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-img-overlay {
  height: 100px;
  width: auto;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-icon span {
  position: absolute;
  width: 32px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}

.close-icon span:first-child {
  transform: rotate(45deg);
}

.close-icon span:last-child {
  transform: rotate(-45deg);
}

.menu-close-label {
  font-size: 1.3em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

.menu-icon.hide {
  display: none;
}

.menu-overlay-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px 84px;
  z-index: 1001;
  box-sizing: border-box;
  pointer-events: none; /* <-- Esto permite que los clics pasen a las opciones debajo */
}

.menu-close-row,
.menu-overlay-header {
  pointer-events: auto; /* <-- Esto permite que los botones dentro del header sí sean clickeables */
}
  transition: transform 0.45s cubic-bezier(.23,1,.32,1), box-shadow 0.45s cubic-bezier(.23,1,.32,1);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
  flex-direction: column;
}

.menu-section:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  z-index: 2;
}


.menu-section.red {
  background: var(--text-color-light);
}

.menu-section-img {
  display: block;
  margin-bottom: 18px;
  height: 190px;
  width: auto;
  border-radius: 18px;
  transition: filter 0.3s;
  cursor: pointer;
}

.menu-section:hover .menu-section-img {
  filter: drop-shadow(0 18px 12px rgba(0,0,0,0.25));
}

.menu-section-word {
  position: relative;
  display: inline-block;
  transition: color 0.2s;
  cursor: pointer;
}

.menu-section-word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: scaleX(0);
}

.menu-section:hover .menu-section-word::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-img-overlay {
  height: 100px;
  width: auto;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-icon span {
  position: absolute;
  width: 32px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}

.close-icon span:first-child {
  transform: rotate(45deg);
}

.close-icon span:last-child {
  transform: rotate(-45deg);
}

.menu-close-label {
  font-size: 1.3em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

.menu-icon.hide {
  display: none;
}

.menu-overlay-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px 84px;
  z-index: 1001;
  box-sizing: border-box;
  background-color: transparent;
  pointer-events: none; /* <-- Esto permite que los clics pasen a las opciones debajo */
}

.menu-close-row,
.menu-overlay-header {
  pointer-events: auto; /* <-- Esto permite que los botones dentro del header sí sean clickeables */
}
}

@media screen and (max-width: 1023px) {
  
  .cenefa-img-divider,
  .cenefa-divider .cenefa-img-divider {
    display: none !important;
  }
  /* Opcional: oculta el contenedor si solo tiene esa imagen */
  .cenefa-divider:has(.cenefa-img-divider) {
    display: none !important;
  }
  .container{
    min-height: 70vw;
  }
}

@media screen and (min-width: 601px) and (max-width: 1123px) {
     .footer__container {
        position: relative;
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
        row-gap: 3rem;
        margin-inline: auto;
        max-width: 1024px;
    }
        .grid {
        display: grid;
        gap: 1.5rem;
    }
    .footer__content {
    grid-template-columns: repeat(3, max-content);
    gap: 2.5rem;
}
.footer {
    position: relative;
    margin: 2rem 5rem 7rem 5rem;
    overflow: hidden;
}
.footer__spinach {
    display: none;
}

}

@media screen and (min-width: 601px) and (max-width: 699px) {
     .footer__container {
        position: relative;
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
        row-gap: 3rem;
        margin-inline: auto;
        max-width: 1024px;
    }
        .grid {
        display: grid;
        gap: 1.5rem;
    }
    .footer__content {
    grid-template-columns: repeat(3, max-content);
    gap: 2.5rem;
}
.footer {
    position: relative;
    margin: 2rem 2rem 7rem 2rem;
    overflow: hidden;
}
}

@media (max-width: 1200px) and (min-width: 601px) {
    .menu-section-img {
        height: 120px!important;
        max-width: 95vw;
    }
    
}

@media (max-width: 1200px) {
    .menu-section {
        font-size: 1.1em;
    }
    
}

@media (max-width: 430px) {
    .static-header{
        padding: 0 30px;
    }
    .qs-img-col img{
        max-width: 300px !important;
    }
}

@media screen and (max-width: 900px) and (min-width: 431px) {
  .qs-mvv-row {
    flex-direction: column !important;
    align-items: center !important;
    max-width: 90%;
  }
  .qs-row {
    flex-direction: column-reverse !important;
    align-items: center !important;
  }
  .qs-img-col img{
    max-width: 400px !important;
  }
  .qs-title{
    margin-top: 4rem;
  }
}

@media screen and (max-width: 430px) {
  .qs-mvv-row {
    flex-direction: column !important;
    align-items: center !important;
    max-width: 90%;
  }
  .qs-row {
    flex-direction: column-reverse !important;
    align-items: center !important;
  }
  .qs-title{
    margin-top: 4rem;
  }
  .qs-mvv-img img{
    width: 200px!important;
  }
}

/* ===================== RESPONSIVE PARA QS-IMG-COL ===================== */
@media screen and (max-width: 1200px) and (min-width: 900px) {
  .qs-img-col img {
    max-width: calc(600px - (1200px - 100vw) * 0.67)!important;
  }
}



/* ===================== ANIMACIONES PERSONALIZADAS ===================== */

/* Animación para el footer: fade in desde abajo */
@keyframes fadeInFooter {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  opacity: 0;
  animation: fadeInFooter 1s ease forwards;
  animation-delay: 0.7s;
}
/* Animación para la cenefa 2: fade in y slide desde la derecha */
@keyframes fadeInCenefa2 {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.cenefa-img-divider2 {
  opacity: 0;
  animation: fadeInCenefa2 1s ease forwards;
  animation-delay: 0.9s;
}

.cenefa-img-divider {
  opacity: 0;
  animation: fadeInCenefa2 1s ease forwards;
  animation-delay: 0.9s;
}

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



/* Estilos principales para la sección ¿Quiénes somos? */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.qs-title {
  text-align: center;
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 6rem;
  color: #6e6e6e;
}

.qs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-direction: row-reverse;
}

.qs-img-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.qs-img-col img {
  max-width: 600px;
  border-radius: 18px;
}

.qs-info-col {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 560px;
}

.qs-subtitle {
  font-size: 2em;
  font-weight: bold;
  color: #fb5c76;
}

.qs-cenefa {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}


.qs-lorem {
  font-size: 1.1em;
  color: #6e6e7c;
  text-align: left;
}


.cenefa-img-divider3 {
  width: 390px;
  height: auto;
  display: block;
}

/* Misión, Visión, Valores sección */

.qs-mvv-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 12000px;
}

.qs-mvv-img img {
  width: 300px;
  height: auto;
  border-radius: 16px;
  margin-bottom: 5rem;
}

.qs-mvv-row {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: center;
}

.qs-mvv-item {
  flex: 1;
  background: #ffffff40;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qs-mvv-title {
  font-size: 2.3em;
  font-weight: bold;
  color: #fb5c76;
  margin-bottom: 1rem;
  text-align: center;
}

.qs-mvv-cenefa {
  margin: 0.5rem 0 1rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.cenefa-img-divider4{
  width: 290px;
  height: auto;
  display: block;
}

.qs-mvv-text {
  font-size: 1.1em;
  color: #6e6e7c;
  text-align: center;
}

/* ===================== SECCIÓN ¿QUÉ OFRECEMOS? ===================== */
.qs-ofertas-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.qs-ofertas-header {
  text-align: center;
  margin-bottom: 6rem;
}

.qs-ofertas-title {
  font-size: 3.5em;
  color: #6e6e6e;
  font-weight: bold;
  margin-bottom: 1rem;
}

.qs-ofertas-cenefa {
  margin: 0.5rem 0 1rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.cenefa-img-divider5 {
  width: 290px;
  height: auto;
  display: block;
}

/* Cards de servicios principales */
.qs-ofertas-cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 6rem;
  width: 100%;
}

.qs-ofertas-card {
  background: #fb5c76;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  max-width: 250px;
  flex: 1;
  box-shadow: 0 8px 25px rgba(251, 92, 118, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qs-ofertas-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(251, 92, 118, 0.3);
}

.qs-card-image {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qs-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qs-card-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

/* Lista de servicios adicionales */
.qs-servicios-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.qs-servicios-column {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qs-servicio-item {
  display: flex;
  align-items: flex-start;
}


.qs-servicio-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.qs-servicio-text {
  color: #6e6e7c;
  font-size: 1.1rem;
  font-weight: 500;
  margin-left: 0.5rem;
}

.linkamco {
  color: #fb5c76;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.linkamco:hover {
  color: #f3516a;
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(251, 92, 118, 0.3);
}

.linkamco::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #fb5c76;
  transition: width 0.3s ease;
}

.linkamco:hover::after {
  width: 100%;
}



/* ===================== DECORATIVE SHAPES ===================== */
.shape {
  position: absolute;
  z-index: 5;
  transition: all 0.3s ease;
}

.shape:hover {
  opacity: 1;
  transform: scale(1.1);
}

.shape img {
  width: 80px;
  height: auto;
  pointer-events: none;
}

/* Posiciones iniciales aleatorias para cada shape */
.shapeq-1 {
  top: 24%;
  left: 14%;
}
.shapeq-1 img{
  width: 100px;
}

.shapeq-2 {
  top: 20%;
  right: 16%;
  transform: scaleX(-1);
}
.shapeq-2 img{
  width: 100px;
}

.shapeq-3 {
  top: 256%;
  right: 4%;
  transform: scaleX(-1);
}
.shapeq-3 img{
  width: 100px;
}


.shapeq-4 {
  top: 164%;
  right: 11%;
  transform: scaleX(-1);
}

.shapeq-4 img{
  width: 100px;
}


.shapeq-5 {
  top: 200%;
  right: 2%;
  transform: scaleX(-1);
}

.shapeq-5 img{
  width: 100px;
}   

.shapeq-6 {
  top: 155%;
  left: 19%;
  transform: scaleX(-1);
}
.shapeq-6 img{
  width: 100px;
}

.shapeq-7 {
  top: 91%;
  right: 88%;
}
.shapeq-7 img{
  width: 100px;
}

.shapeq-8 {
  top: 156%;
  left: 6%;
}
.shapeq-8 img{
  width: 200px;
}


.shapeq-9 {
  top: 86%;
  right: 5%;
  transform: scaleX(-1);
}

.shapeq-9 img{
  width: 100px;
}

.shapeq-10 {
  top: 255%;
  left: 6%;
}
.shapeq-10 img{
  width: 150px;
  display: none;
}



/* Ocultar shapes en pantallas menores a 1200px */
@media screen and (max-width: 1199px) {
  .shape {
    display: none;
  }
}