:root {
  /*Color Schemes*/
  --Light: #f2f2f2;
  --Dark: #403F35;
  --Grey: #A5A697;
  --LighterGrey: #d8d8d8;
  --Mint: #B4D9BD;
  --Cream: #EACE98;
  /*Transparencies*/
  --Mint-transparency: rgba(180, 217, 189, 0.85);
  --Cream-transparency: rgba(234, 207, 152, 0.75);
  --Grey-tansparency: rgba(165, 166, 151, 0.469);
  --Dark-transparency: rgba(64, 63, 53, 0.85);

}

/*Fonts Theme*/

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-Black.woff') format('woff');
  font-weight: 1000;
  font-style: normal;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-BlackItalic.woff') format('woff');
  font-weight: 1000;
  font-style: italic;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-ExtraBold.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-BoldItalic.woff') format('woff');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-SemiBoldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url('./fonts/Mulish-ExtraLightItalic.woff') format('woff');
  font-weight: 200;
  font-style: italic;
}


/* applying natural box layout model to all elements */
html {
  box-sizing: border-box;
  font-size: 62.5%;
  /*Convertirá 1 rem en 10pixeles*/
}

*,
*:before,
*:after {
  box-sizing: inherit;
  /* apply a natural box layout model to all elements, but allowing components to change */
}

html,
body {
  height: 100%;
  /* Crucial for sticky footer */
  margin: 0;
}

body {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  /*Con estas proporciones 62.5% y 16px - 1rem equivaldrá a 10pixeles*/
  background-color: var(--Light);
}

/*Globales*/
.contenedor {
  max-width: 192rem;
  margin: 0 auto;
}

a {
  font-family: "Mulish", sans-serif;
  text-decoration: none;
  line-height: 1.2em;
  font-weight: 600;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Mulish", sans-serif;
  line-height: 1.2em;
}

h1 {
  font-weight: 900;
  font-size: 3.5rem;
}

h2 {
  font-weight: 700;
  font-size: 2.5rem;
}

h3 {
  font-weight: 500;
  font-size: 2.2rem;
}

h4 {
  font-weight: 400;
  font-size: 1.8rem;
}

h5 {
  font-weight: 300;
  font-size: 1.6rem;
}

h6 {
  font-weight: 200;
  font-size: 1.4rem;
}

/*Helpers*/
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.text-center {
  text-align: center;
}

/*TopBar*/
.top-bar,
.navbar {
  background-color: var(--Light);
  margin: 0 auto;
  max-width: 100%;
}

.top-bar-elements {
  margin: 0 auto;
  gap: 1rem;
  display: flex;
}

.logo {
  margin: 0 auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  cursor: pointer;
  /* Changes cursor to hand on hover */
  transition: transform 0.2s ease;
  /*Animation*/
}


.logo:hover {
  transform: scale(1.02);
  /* Subtle hover effect */
}

/* Core Styles */
.logo-link {
  display: inline-block;
  transition: transform 0.2s ease-out;
}

.logo-img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover Effects */
.logo-link:hover .logo-img {
  transform: scale(1.05);
  filter:
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)) brightness(1.02);
}

/* Click Feedback */
.logo-link:active .logo-img {
  transform: scale(0.98);
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {

  .logo-link,
  .logo-img {
    transition: none !important;
  }
}

.details {
  display: none;
}

@media (min-width: 768px) {


  .top-bar-elements {
    gap: 3rem;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    max-width: 40%;
    padding: 2rem 0rem 2rem 0rem;
  }

  .details {
    width: 50%;
    display: flex;
    gap: 1rem;
    padding-right: 5%;
    align-items: inherit;
  }
}

/*Navbar*/

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.navegacion {
  width: 60%;
  display: inline-flex;
  justify-content: space-between;
  margin: 1.5rem 0 1.5rem 0;
  align-items: center;
}

.navegacion a {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.2em;
}

.navegacion_btns {
  color: var(--Dark);
  width: 25%;
  padding: 10px 15px;
}

.navegacion_btns:not(:last-child),
.current-link {
  background: linear-gradient(to right, #EACE98 2px, transparent 2px) right center / 2px 40% no-repeat;
}

.navegacion_btns:hover {
  background-color: var(--Mint);
}

.current-link {
  background-color: var(--Cream);
  width: 25%;
  padding: 1rem 1.5px 1rem 1.5rem;
}

.current-link:hover {
  background-color: var(--Mint);
}

@media (max-width: 767px) {
  .navegacion {
    width: 75%;
    display: inline-flex;
    justify-content: space-between;
    margin: 1rem 0 1rem 0;
  }

  .navegacion a {
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.2em;
  }
}

.nav-mobile {
  display: none;
}

@media (max-width: 560px) {

  .navegacion {
    display: none;
  }
}

.whatsApp {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsApp:hover {
  color: var(--Light) !important;
}

@media (max-width: 1250px) {
  .whatsApp {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ------------------------
 Menú Mobile ----------------
 -------- */
/* Mobile Nav - Hidden by default */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding-top: 1.5rem;
  position: relative;
  z-index: 1000;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--Dark);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 13rem;
  left: 0;
  width: 100%;
  background: #f2f2f2;
  ;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 999;
  padding-top: 70px;
}

.mobile-nav a {
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  transform: translateX(-30px);
  opacity: 0;
  transition: all 0.3s ease;
}

/* Staggered animations */
.mobile-nav a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav a:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-nav a:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-nav a:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-nav .whatsApp {
  transition-delay: 0.5s;
}

.mobile-nav .current-link {
  font-weight: bold;
  width: 100%;
}

.mobile-nav .current-link:hover {
  background-color: var(--Mint);
}

.mobile-nav .whatsApp {
  background: var(--Mint);
  color: #f2f2f2 !important;
  display: flex;
  align-items: center;
}

.mobile-nav .whatsApp img {
  margin-right: 10px;
  transition: transform 0.3s ease;
}


/* Active States */
.mobile-nav.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav.active a {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav.active a:hover {
  background-color: var(--Mint);
}

.mobile-nav.active a:hover:nth-child(5) {
  background-color: var(--Dark-transparency);
}

.mobile-menu-button.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-button.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hover Effects */
.mobile-nav a:hover {
  padding-left: 25px;
}

.mobile-nav .whatsApp:hover img {
  transform: scale(1.3);
}

/* ===== Responsive Styles (560px and below) ===== */
@media (max-width: 560px) {

  .mobile-menu-button {
    display: block;
  }
}

/* WhatsApp effect */
.whatsApp:hover {
  animation: wave 0.5s ease;
}

@keyframes wave {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  75% {
    transform: rotate(5deg);
  }
}

/* Slider - Performance optimized v1 */

.slideshow-container {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  height: 715px;
  /* Fixed height matching your images */
  width: 100%;
  z-index: 1;
  /* Ensure it stays above background but below content */
  /* Fixed height for desktop */
}

/*Slides*/

.slide {
  position: absolute;
  width: 100%;
  height: 715px;
  /* Match container height */
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures images fill container */
  display: block;
}


/* Dots navigation */
.dots-container {
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: var(--Mint-transparency);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
  .dot {
    width: 8px;
    height: 8px;
  }
}

.dot.active,
.dot:hover {
  background-color: var(--Cream);
}

/* Slide 2*/
.slide2-content {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  gap: 3rem;
  z-index: 3;
}

.txt-slide2 {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-left: 13rem;
}

@media (max-width: 1050px) {
  .slide2-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }  
  .txt-slide2 {
      display: none;
    }
     .logo-slide2 {
    display: flex;
    margin: 0 auto;
    align-items: center;
  justify-content: center;
  }
  .logo-slide2 img {
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 650px) {
    .txt-slide2 {
      display: none;
    }
  
}
@media (max-width: 550px) {
    .txt-slide2 {
      display: none;
    }
     .logo-slide2 {
    display: none;
  }

}

.text-ini,
.text-ini2 {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.text-ini h4 {
  letter-spacing: 0.2em;
  font-weight: 1000;
  color: var(--Dark);
}

.text-ini h5 {
  letter-spacing: 0.2em;
  font-weight: 200;
}

.text-ini2 h4 {
  color: var(--Light);
  font-size: 3rem;
  font-weight: 900;
}

.text-ini2 h5 {
  color: var(--Light);
  font-size: 2.6rem;
  font-weight: 200;
}

.overlay-bck,
.overlay-bck2 {
  width: 80%;
  background-color: var(--Dark-transparency);
  padding: 5%;
  /* Top, Horizontal, Bottom */
  /* Rounded square styling */
  border-radius: 15px;
  /* Adjust this value for more/less rounding */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Optional subtle shadow */

  /* Modern glass morphism effect (optional) */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.overlay-bck span {
  color: var(--Light);
  font-size: 3.2rem;
  font-weight: 400;
}

.overlay-bck2 span {
  color: var(--Light);
  font-size: 3.8rem;
  font-weight: 400;
}

.overlay-bck h1 {
  line-height: 4.7rem;
  color: var(--Cream);
  letter-spacing: .12em;
  font-size: 5rem;
}

.overlay-bck2 h1 {
  line-height: 5rem;
  color: var(--Cream);
  letter-spacing: .12em;
  font-size: 5.5rem;
}

.logo-slide2 img {
  width: 40%;
  display: flex;
  object-fit: contain;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .slideshow-container {
    height: 60vh;
  }

  .slide {
    height: 60vh;
  }

  .overlay-bck,
  .overlay-bck2 {
    width: 85%;
    background-color: var(--Dark-transparency);
    padding: 2%;
  }

  .overlay-bck span {
    color: var(--Light);
    font-size: 2.5rem;
    font-weight: 400;
  }

  .overlay-bck2 span {
    color: var(--Light);
    font-size: 2.8rem;
    font-weight: 400;
  }

  .overlay-bck h1 {
    line-height: 3.7rem;
    color: var(--Cream);
    letter-spacing: .12em;
    font-size: 3.5rem;
  }

  .overlay-bck2 h1 {
    line-height: 3.7rem;
    color: var(--Cream);
    letter-spacing: .12em;
    font-size: 3.5rem;
  }

  .text-ini2 h4 {
    color: var(--Light);
    font-size: 1.8rem;
  }

  .text-ini2 h5 {
    color: var(--Light);
    font-size: 1.6rem;
    font-weight: 200;
  }

}

@media (max-width: 560px) {
  .slideshow-container {
    height: 50vh;
  }

  .slide {
    height: 50vh;
  }

   .overlay-bck,
  .overlay-bck2 {
    width: 100%;
    padding: 3%;
    /* Top, Horizontal, Bottom */
    /* Rounded square styling */
    border-radius: 15px;
    /* Adjust this value for more/less rounding */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .overlay-bck span {
    color: var(--Light);
    font-size: 3rem;
    font-weight: 400;
  }

  .overlay-bck2 span {
    color: var(--Light);
    font-size: 2.2rem;
    font-weight: 400;
  }

  .overlay-bck h1 {
    line-height: 3rem;
    color: var(--Cream);
    letter-spacing: .13em;
    font-size: 3rem;
  }

  .overlay-bck2 h1 {
    line-height: 4rem;
    color: var(--Cream);
    letter-spacing: .13em;
    font-size: 3.5rem;
  }

  .text-ini h4 {
    letter-spacing: 0.2em;
    font-weight: 1000;
    color: var(--Dark);
    font-size: 1.2rem;
  }

  .text-ini h5 {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    font-weight: 200;
  }

  .text-ini2 h4 {
    color: var(--Light);
    font-size: 1.5rem;
    font-weight: 1000;
  }

  .text-ini2 h5 {
    color: var(--Light);
    font-size: 1.2rem;
    font-weight: 200;
  }

}

/*--------------- Main Content - HOME ---------------*/
/* Add this after your slideshow styles */
main {
  position: relative;
  width: 100%;
  z-index: 2;
  /* Higher than slideshow */
  margin-top: 0;
  /* Remove any negative margins */
  padding-top: 0;
  /* Ensure no overlap */
}

/*--- Section A ---*/
.img-proteccion_real {
  margin: 0 !important;
  overflow: hidden;
  /* Hide image overflow */
  object-fit: fill;
  transition: transform 0.3s;
  /* Optional hover effect */
}

.img-proteccion_real img {
  transform: scale(1.05);
}

.section-a-button {
  border: 4px solid var(--Dark);
  padding: 1.2rem 3rem;
  margin-top: 2rem;
  margin-left: 3rem;
  color: var(--Dark);
  font-weight: 400;
  letter-spacing: .2em;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-a-button:hover {
  border: 4px solid var(--Mint);
  color: var(--Mint);
  background-color: var(--Dark-transparency);
}

/*min 769px*/

@media (min-width: 768px) {

  .section-a {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr;
    /* Single row */
    margin: 0 !important;
    /* Fill vertical space*/
    align-items: stretch;
  }

  .txt-sec-a {
    padding-top: 22%;
  }

  .txt-sec-a h2 {
    font-weight: 200;
    font-size: 5rem;
    letter-spacing: 0em;
    margin: 0 !important;
    padding: 0 3rem;
  }

  .txt-sec-a h2 span {
    font-size: 3rem;
  }

  .txt-sec-a h3 {
    font-weight: 1000;
    font-size: 5rem;
    color: var(--Grey);
    letter-spacing: .1em;
    padding: 0rem 3rem;
    margin: 0 !important;
  }

  .txt-sec-a p {
    margin: 5rem 0rem;
    line-height: 2em;
    padding: 0 3rem;
  }

  .section-a-icon {
    margin-top: 7rem;
    padding-left: 3rem;
  }

  .section-a-icon img {
    width: 9rem;
  }

}

@media (max-width: 1063px) {
  .txt-sec-a a {
    font-size: 1.4rem;
  }
}

/*Tablet max768px*/
@media (max-width: 767px) {

  .section-a {
    display: flex;
    margin: 0 !important;
  }

  .img-proteccion_real {
    display: none;
  }

  .txt-sec-a {
    margin: 0 auto;
    text-align: center;
  }

  .txt-sec-a h2 {
    font-weight: 200;
    font-size: 4.5rem;
    margin: 0 !important;
    padding: 3rem .5rem .2rem .5rem;
  }

  .txt-sec-a h3 {
    font-weight: 1000;
    font-size: 5rem;
    color: var(--Grey);
    letter-spacing: .1em;
    margin: 0 !important;
  }

  .txt-sec-a p {
    margin: 5rem 3rem;
    line-height: 2em;
    font-size: 1.8rem;
  }

  .section-a-icon {
    margin: 7rem 0;
  }

  .section-a-icon img {
    width: 9rem;
  }

  .section-a-button {
    border: 3px solid var(--Dark);
    padding: 1.3rem 3.5rem;
    margin: 0;
  }
}

/*--- Section B ---*/
.txt-sec-b,
.txt-sec-b2,
.section-b-img3 {
  overflow: hidden;
  /* Hide image overflow */
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.3s;
  /* Optional hover effect */
}

@media (min-width: 769px) {
  .section-b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 2;
  }
}


.txt-sec-b {
  padding-left: 10%;
  padding-right: 5%;
  padding-top: 15%;
  background-color: var(--Cream);
}

.txt-sec-b2 {
  padding-left: 10%;
  padding-right: 5%;
  padding-top: 12%;
  background-color: var(--Dark);
  word-wrap: break-word;
}

.txt-sec-b h2 {
  font-weight: 200;
  font-size: 4rem;
  letter-spacing: .1em;
  margin: 0 !important;
}

.txt-sec-b2 h2 {
  font-weight: 200;
  font-size: 3.5rem;
  letter-spacing: .06em;
  margin: 0 !important;
}

@media (max-width: 891px) {
  .txt-sec-b2 h2 {
    font-weight: 200;
    font-size: 3rem;
    letter-spacing: .05em;
    margin: 0 !important;
  }
}

.txt-sec-b2 span {
  font-weight: 1000;
  font-size: 3rem;
  color: var(--Light);
  letter-spacing: 0em;
  margin: 0 !important;
}

.txt-sec-b h3 {
  font-weight: 1000;
  font-size: 4rem;
  color: var(--Light);
  letter-spacing: .1em;
  margin: 0 !important;
}

.txt-sec-b2 h3 {
  font-weight: 1000;
  font-size: 4rem;
  color: var(--Light);
  letter-spacing: .1em;
  margin: 0 !important;
}

.txt-sec-b p {
  margin: 4rem 0rem;
  line-height: 1.2em;
}

.txt-sec-b2 p {
  margin: 4rem 0rem;
  line-height: 1.2em;
}

.txt-sec-b2 h2 {
  color: var(--Cream);
}

.txt-sec-b2 h3 {
  color: var(--Light);
}

.txt-sec-b2 p {
  color: var(--Light);
}

.section-b-img3 img {
  transform: scale(1.05);
}


.section-b-button {
  border: 3px solid var(--Cream);
  padding: 1rem 1rem;
  margin-top: 1.5rem;
  color: var(--Light);
  font-size: 1.2rem;
  font-weight: 200;
  letter-spacing: .1em;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-b-buttonb {
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  color: var(--Light);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .11em;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-b-button:hover,
.section-b-buttonb:hover {
  border: 3px solid var(--Light);
  color: var(--Dark);
  background-color: var(--Cream);
}

@media (min-width: 1200px) {
  .section-b-button {
    border: 4px solid var(--Cream);
    padding: 1.2rem 2.2rem;
    margin-top: 2rem;
  }

  .section-b-buttonb {
    border: 3px solid var(--Dark);
    padding: 1.2rem 2.2rem;
    margin-top: 2rem;
  }

  .section-b-button:hover,
  .section-b-buttonb:hover {
    border: 4px solid var(--Light);
  }

  .txt-sec-b {
    padding-left: 10%;
    padding-right: 5%;
    padding-top: 18%;
    background-color: var(--Cream);
  }

  .txt-sec-b h2 {
    font-weight: 200;
    font-size: 5rem;
    letter-spacing: .1em;
    margin: 0 !important;
  }

  .txt-sec-b2 h2 {
    font-weight: 200;
    font-size: 4.5rem;
    letter-spacing: .05em;
    margin: 0 !important;
  }

  .txt-sec-b2 span {
    font-weight: 1000;
    font-size: 5rem;
    color: var(--Light);
    letter-spacing: .1em;
    margin: 0 !important;
  }

  .txt-sec-b h3 {
    font-weight: 1000;
    font-size: 5rem;
    color: var(--Light);
    letter-spacing: .1em;
    margin: 0 !important;
  }

  .txt-sec-b2 h3 {
    font-weight: 1000;
    font-size: 5rem;
    color: var(--Light);
    letter-spacing: .1em;
    margin: 0 !important;
  }

  .txt-sec-b p {
    margin: 5rem 0rem;
    line-height: 1.5em;
  }

  .txt-sec-b2 p {
    margin: 5rem 0rem;
    line-height: 1.5em;
  }

  .txt-sec-b2 h2 {
    color: var(--Cream);
  }

  .txt-sec-b2 h3 {
    color: var(--Light);
  }

  .txt-sec-b2 p {
    color: var(--Light);
  }
}

@media (max-width: 768px) {
  .section-b {
    display: flex;
    flex-direction: column;
  }

  .section-b-img3 img {
    transform: scale(1.05);
    width: 100%;
  }

  .txt-sec-b,
  .txt-sec-b2 {
    padding-left: 10%;
    padding-right: 5%;
    padding-top: 12%;
    padding-bottom: 12%;
  }

  .txt-sec-b {
    background-color: var(--Cream);
  }

  .txt-sec-b2 {
    background-color: var(--Dark);
  }

  .section-b-buttonb {
    border: 3px solid var(--Dark);
    font-size: 1.4rem;
  }

}

@media (max-width: 431px) {
  .section-b-buttonb {
    border: 2px solid var(--Dark);
    font-size: 1.1rem;
  }
}

/*--- Section C ---*/

.img-tecnologia {
  margin: 0 !important;
  overflow: hidden;
  /* Hide image overflow */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  /* Optional hover effect */
}

.img-tecnologia img {
  transform: scale(1.05);
}

@media (max-width: 500px) {
  .img-tecnologia {
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    /* Enables centering */
    justify-content: center;
    /* Horizontal center */
    align-items: center;
    /* Vertical center */
    position: relative;
    /* For absolute child */
  }

  .img-tecnologia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Better than fill (maintains aspect ratio) */
    object-position: center;
    /* Center focus point */
    transition: transform 0.3s;
  }
}

/* --- Section C Button --- */
.section-c-button {
  /* Base styles */
  border: 4px solid var(--Cream);
  padding: 1.2rem 2.2rem;
  margin: 2rem auto 0;
  /* Centered with top margin */
  color: var(--Dark);
  font-weight: 400;
  letter-spacing: .2em;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  transform-origin: center;
  width: auto;
  /* Natural width */
  max-width: 100%;
  /* Prevent overflow */
  position: relative;
  text-align: center;
  background-color: transparent;
}

/* Scaling effect for ALL screens */
.section-c-button:hover,
.section-c-button:active {
  border: 3px solid var(--Dark);
  color: var(--Dark);
  background-color: var(--Cream-transparency);
  transform: scale(1.02);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)) brightness(1.02);
  z-index: 2;
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
  .section-c-button {
    margin: 2rem auto;
    /* Centered with equal margins */
    padding: 1.5rem 3rem;
    /* Larger tap target */
    width: 60%;
    /* Slightly constrained width */
    display: inline-block;
    /* Full container width */
  }

  /* Prevent image displacement */
  .img-tecnologia {
    margin-top: -1rem;
    /* Compensate for button scaling */
    position: relative;
    z-index: 1;
  }
}

/* Desktop layout */
@media (min-width: 768px) {
  .section-c-button {
    margin-left: 0;
    /* Align left in desktop layout */
    margin-right: auto;
  }
}


/*min 769px*/

@media (min-width: 769px) {

  .section-c {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin: 0 !important;
    row-gap: 0;
  }

  .txt-sec-c {
    padding-left: 10%;
    padding-right: 5%;
    padding-top: 22%;
    margin-right: 5rem;
  }

  .txt-sec-c h2 {
    font-weight: 200;
    font-size: 5rem;
    letter-spacing: .1em;
    margin: 0 !important;
  }

  .txt-sec-c h3 {
    font-weight: 1000;
    font-size: 5rem;
    color: var(--Grey);
    letter-spacing: .1em;
    margin: 0 !important;
  }

  .txt-sec-c p {
    margin: 5rem 0rem;
    line-height: 2em;
  }

}

@media (max-width: 1063px) {
  .txt-sec-c a {
    font-size: 1.4rem;
  }
}


/*Tablet max767px*/
@media (max-width: 767px) {

  .section-c {
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    margin-bottom: -1rem;
  }

  .txt-sec-c {
    width: 100%;
    margin: 0 auto;
    padding-top: 10%;
    /* Gives space for scaling */
    padding-left: 10%;
    /* Gives space for scaling */
    padding-right: 10%;
    /* Gives space for scaling */
    padding-bottom: 15%;
    text-align: center;
  }

  .txt-sec-c h2 {
    font-weight: 200;
    font-size: 4.5rem;
    letter-spacing: .1em;
    margin: 0 !important;
  }

  .txt-sec-c h3 {
    font-weight: 1000;
    font-size: 4.5rem;
    color: var(--Grey);
    letter-spacing: .1em;
    margin: 0 !important;
  }

  .txt-sec-c p {
    margin: 5rem 0rem;
    line-height: 2em;
    font-size: 1.8rem;
  }

  .section-c-button {
    border: 3px solid var(--Cream);
    padding: 1rem 1.5rem;
  }

  .img-tecnologia {
    display: inline-block;
    z-index: -1;
  }
}

@media (max-width: 399px) {
  .txt-sec-c h2 {
    font-weight: 200;
    font-size: 4rem;
    letter-spacing: .1em;
    margin: 0 !important;
  }

  .txt-sec-c h3 {
    font-size: 4rem;
  }
}


/*------- Nosotros////////*/

.topbanner {
  overflow: hidden;
  width: 100%;
  margin-bottom: -.5rem;
  display: flex;
  /* Enables centering */
  justify-content: center;
  /* Horizontal center */
  align-items: center;
  /* Vertical center */
  position: relative;
  /* For absolute child */
}

.topbanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Better than fill (maintains aspect ratio) */
  object-position: center;
  /* Center focus point */
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .somos {
    margin: 9rem 12%;
    display: flex;
    justify-content: space-between;
    gap: 5rem;
  }

  .mision,
  .valores,
  .innovacion,
  .procesos {
    margin: 5rem 12%;
    display: flex;
    justify-content: space-between;
    gap: 5rem;
  }

  .somos-txt,
  .somos-img,
  .somos-icons {
    flex-basis: calc(50%);
  }

  .somos-images,
  .somos-icons,
  .porcess-img {
    display: flex;
    gap: 3rem;
  }

  .innovacion-txt {
    margin-bottom: 5rem;
  }
}

.somos-icons {
  margin-top: 5rem;
  align-items: center;
}

.somos-icons h6 {
  color: var(--Grey);
  letter-spacing: .1em;
  font-size: 1.3rem;
}

.line-a,
.line-b {
  flex-basis: calc(50% - 1rem);
  padding-top: 2rem;
  margin-top: 2rem;
}

.somos-txt h1 span {
  font-size: 2.2rem;
  font-weight: 200;
  row-gap: 2rem;
}

.line-b p {
  color: var(--Grey);
}

.somos-img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  row-gap: 3rem;
  flex-direction: column;
  /* Enables centering */
  justify-content: center;
  /* Horizontal center */
  align-items: center;
  /* Vertical center */
  position: relative;
  /* For absolute child */
}

.somos-icons-procesos {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
}

.procesos {
  background-color: var(--Cream-transparency);
  padding: 2rem 5rem;
  border-radius: 12px;
  /* Adjust this value for more/less rounding */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Optional subtle shadow */
}

.somos-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Better than fill (maintains aspect ratio) */
  object-position: center;
  /* Center focus point */
  transition: transform 0.3s;
}

.porcess-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Better than fill (maintains aspect ratio) */
  object-position: center;
  /* Center focus point */
  transition: transform 0.3s;
}

@media (max-width: 767px) {

  .somos-txt,
  .mision,
  .valores,
  .innovacion,
  .procesos {
    margin: 3.5rem 3.5rem;
  }

  .somos-images {
    display: none;
  }

  .somos-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
  }

  .somos-icons {
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
  }

  .line-b {
    margin-top: .5rem;
  }

  .innovacion {
    padding-bottom: 5rem;
  }

  .img-confy {
    width: 100%;
    height: 100%;
    margin-bottom: -.5rem;
    justify-content: center;
    /* Horizontal center */
    align-items: center;
    /* Vertical center */

  }
}

@media (max-width: 399px) {
  .somos-icons {
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: inline-block;
  }
}

.valores-txt p {
  color: var(--Grey);
}

.somos-txt p {
  margin-bottom: 4.5rem;
}

/*------- Termina nosotros////////*/


/*---Servicios*/
.yellow {
  width: 100%;
  height: 10rem;
  background-color: var(--Cream);
}

.txt-sec-serv {
  background-color: var(--LighterGrey);
}

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

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

.servicios-icons h6 {
  line-height: 1.8em;
  text-align: left;
}

.black {
  width: 100%;
  height: 18rem;
  margin: 2rem auto;
  background-color: var(--Dark);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
}

.boton-black {
  display: flex;
  padding: 0.5rem 2rem;
  width: 40rem;
  height: 5.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}

.boton-black a {
  background-color: var(--Grey);
  color: var(--Light);
  font-size: 2rem;
}

.boton-black a:hover {
  background-color: var(--Cream);
  color: var(--Dark);
  font-size: 2.1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}

.boton-black img {
  width: 5rem;
  height: auto;
  padding: 1rem;
}

.boton-black img:hover {
  width: 5.1rem;
  height: auto;
}

.left {
  align-items: start;
}

@media (max-width: 767px) {
  .left {
    display: none;
  }

}

/*---Termina Servicios*/


/*--- Slogan & Brand Signature---*/
.slogan {
  position: relative;
  width: 100%;
  height: 20rem;
  background-color: var(--Grey);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}


.slogan-img {
  margin: 0;
}

.slogan-txt h2,
h1 {
  color: var(--Dark);
  line-height: 1em;
}

.slogan-txt-black h2 {
  color: var(--Light);
  text-align: center;
}

.slogan-txt-black h1 {
  color: var(--Cream);
  text-align: center;
  letter-spacing: .1em;
  font-size: 4rem;
  margin: 0 auto;

}

.slogan-txt,
.slogan-txt-black h2 {
  font-family: "Mulish", sans-serif;
  font-weight: 200;
  letter-spacing: .2em;
  font-size: 3.5rem;
  margin: 0;
}

@media (max-width: 767px) {
  .black {
    gap: 3rem;
    padding: 2rem;
  }

  .slogan-txt-black {
    display: inline-block;
    margin: 0 auto;
    padding: 2.5rem 1rem;
  }

  .boton-black {
    width: 36rem;
    height: 4.2rem;
    font-size: 1rem;
  }

  .boton-black img {
    width: 4rem;
    height: auto;
    padding: 1rem;
  }

  .boton-black img:hover {
    width: 4rem;
  }

  .boton-black a {
    font-size: 2rem;
  }

  .boton-black a:hover {
    font-size: 2rem;
  }

  .sriv-image {
    transform: scale(1.05);
    width: 100%;
  }

  .slogan-txt-black h1 {
    font-size: 3rem;
    line-height: 1em;
  }

}

@media (max-width: 634px) {
  .black {
    display: inline-block;
    padding: 1.5rem 0;
    text-align: center;
  }

  .boton-black {
    display: inline-flex;
    width: 34rem;
    height: 4.2rem;
    margin-bottom: 4rem;
  }

  .boton-black a {
    font-size: 1.3rem;
  }

  .boton-black a:hover {
    font-size: 1.2rem;
  }

  .slogan-txt-black {
    padding: 2.5rem 0rem;
  }

  .slogan-txt-black h1 {
    font-size: 2.6rem;
    margin: 0 auto;
  }

  .slogan-txt-black h2 {
    font-size: 2.6rem;
    margin: 0 auto;
  }
}

@media (max-width: 599px) {

  .slogan {
    height: 18rem;
  }

  .slogan-txt {
    flex-basis: calc(60%);
  }

  .slogan-img {
    flex-basis: calc(40%);
  }

  .slogan-img img {
    width: 100%;
    padding-left: 2rem;
  }

  .slogan-txt h2 {
    font-size: 1.8rem;
    letter-spacing: .1em;
  }

  .slogan-txt h1 {
    font-size: 2.1rem;
    letter-spacing: .1em;
  }
}

/*---Faq's---*/
.faqs-grey {
  width: 100%;
  height: 100%;
  background-color: var(--Grey-tansparency);
  padding: 5rem 2rem;
}

@media (min-width: 768px) {
  .faqs-grey {
    display: flex;
    padding: 5rem 3rem;
  }

  .faq-container {
    width: 100%;
    margin: 0 12% 6rem 12%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}


.faq-title {
  font-size: 3rem;
  color: var(--Dark);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 800;
}

/* Estilos para cada item del FAQ */
.faq-item {
  width: 70%;
  border-bottom: 1px solid var(--LighterGrey);
  padding: 2rem 3rem;
  background-color: var(--Dark);
  transition: background-color 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--Light);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--Cream);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--Dark);
  transition: all 0.3s ease;
}

.faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0;
}

.faq-answer p {
  transition: max-height 0.3s ease;
  font-size: 1.8rem;
  line-height: 1.6;
  color: var(--LighterGrey);
  font-weight: 200;
}

.faq-answer.show {
  max-height: 300px;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 767px) {

  .faq-item {
    width: 100%;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
  }

  .faq-container {
    padding: 20px;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .noup {
    display: none;
  }

  .faq-question {
    cursor: pointer;
    font-weight: 400;
    font-size: 1.8rem;
  }

  .pfqs {
    text-align: center;
  }
}

/*---Contacto*/
.contenedor-formulario {
  background-image: url('../images/png/reygal_img-2.png');
  padding: 10%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: -4rem;
}

.gris {
  width: 100%;
  height: 5rem;
  background-color: var(--Grey);
}

.contenido-formulario {
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.formulario {
  width: 100%;
  margin: 0 auto;
  background-color: var(--Light);
  padding: 3rem 3rem 2rem 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  /* Para posicionar el mensaje de éxito */
}

.contact-header {
  margin: 1rem 0 4rem 0;
  text-align: center;
}

.contact-header h5,
h2 {
  line-height: 1.4em;
  font-family: "Mulish", sans-serif;
}

.contact-header h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: var(--Dark);
  font-weight: 800;
}

.contact-header h5 {
  font-size: 1.4rem;
  color: var(--Dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  position: relative;
  /* Para posicionar errores */
}

.form-row label {
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--Grey)
}

.form-row input,
.form-row textarea {
  padding: 1rem;
  border: 1px solid var(--Light);
  border-radius: 4px;
  font-size: 1.6rem;
}

.form-row textarea {
  min-height: 20rem;
  resize: vertical;
}

.bg-grey {
  background-color: #BFBFAE;
}

.bg-cream {
  background-color: var(--Cream-transparency);
}

.cont-info-a {
  background-color: var(--Cream-transparency);
  padding: 2rem 2rem;
  margin-bottom: 3rem;
  border: 1rem solid var(--LighterGrey);
  border-radius: 6px;
}

.cont-info-a h2 {
  font-size: 2.4rem;
  font-weight: 800;
}

.cont-info-a h5 {
  font-size: 1.8rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 480px) {
  .cont-info-a h5 {
    font-size: 1.4rem;
  }
}

/* Estilos para errores */
/* Mensajes de error */
.error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.error {
  border-color: #e74c3c !important;
}

/* Mensaje de éxito/error */
.form-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
  z-index: 10;
}

.form-message.visible {
  opacity: 1;
  pointer-events: all;
}

.form-message.success {
  background-color: #f8fff0;
  border: 1px solid #4CAF50;
}

.form-message.error {
  background-color: #fff0f0;
  border: 1px solid #e74c3c;
}

.form-message svg {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.form-message h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.submit-btn {
  width: 60%;
  background-color: var(--Dark);
  color: var(--Light);
  border: none;
  padding: 1.2rem 2.0rem;
  font-size: 16px;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
  align-self: center;
  margin-top: 2rem;
}

.submit-btn:hover {
  background-color: var(--Cream);
  color: var(--Dark);
}

/* Media query for screens 768px and wider */
@media (min-width: 768px) {

  .contenido-formulario {
    display: flex;
    justify-content: center;
    gap: 5rem;
  }

  .form-row-group {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .form-row-group .form-row {
    flex: 1;
  }

  .contact-header h2 {
    font-size: 2.2rem;
  }

  .contact-header h5 {
    font-size: 1.6rem;
  }

  .submit-btn {
    padding: 1.4rem 3rem;
    font-size: 1.7rem;
  }

  .cont-info {
    flex-basis: calc(35%);
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .formulario {
    flex-basis: calc(45%);
  }

}

/* Go To TOP*/

#goToTopBtn {
  display: none;
  /* Oculto por defecto */
  position: fixed;
  bottom: 4rem;
  right: 4rem;
  width: 6rem;
  height: 6rem;
  border: none;
  border-radius: 50%;
  background-color: var(--Dark-transparency);
  color: var(--Light);
  font-size: 2.2rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  /* Inicia transparente */
  transition: opacity 0.3s, background-color 0.3s;
  z-index: 1000;
}

#goToTopBtn:hover {
  transform: scale(1.1);
  background-color: var(--Cream);
  color: var(--Dark);
}

#goToTopBtn.visible {
  display: block;
  opacity: 1;
  /* Aparece con fade in */
}

/* Smooth scroll para toda la página */
html {
  scroll-behavior: smooth;
}

/* ============= FOOTER =================*/
.footer-reygal {
  margin: 0 auto;
}

.footer-top-bar {
  background-color: var(--Dark);
  width: 100%;
  height: 3.5rem;
}

.footer-content {
  background-color: var(--Cream);
  height: auto;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-reygal {
    display: flex;
    flex-direction: column;
  }

  .footer-content {
    display: flex;
    justify-content: space-evenly;
    gap: 4rem;
    padding: 1.5rem 4rem;
  }
}

@media (max-width: 767px) {
  .footer-reygal {
    width: 100%;
  }

  .footer-content {
    gap: 1rem;
    padding: 1.5rem 2rem;
  }

  .links-txt h4 {
    letter-spacing: .1em;
    margin-bottom: none;
  }

}

.empresa,
.links,
.mensajes {
  padding: 1.2rem;
}

@media (min-width: 768px) {

  .empresa {
    flex: 0 0 calc(32.5%);
  }

  .links {
    flex: 0 0 calc(22%);
  }

  .mensajes {
    flex: 0 0 calc(30%);
  }
}

.empresa-txt h5,
p {
  line-height: 2em;
  letter-spacing: .1em;
  text-align: justify;
}

.links-txt {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {

  .links-txt,
  .mensajes-txt h4 {
    margin-bottom: 4rem;
    letter-spacing: .1em;
  }
}

.links-txt a {
  line-height: 1.2em;
  padding-bottom: 2rem;
  color: var(--Dark);
}

.links-txt a:hover {
  color: var(--LighterGrey);
  transform: scale(1.05);
  filter:
    brightness(1.02);
}

.footer-line {
  width: 100%;
  align-items: center;
  border-top: .3rem solid var(--Mint);
}

.msm-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--Dark);
  /* Color verde - puedes cambiarlo */
  color: white;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.msm-button:hover {
  background-color: var(--Mint);
  /* Color más oscuro al pasar el mouse */
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.msm-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.msm-button img {
  margin-left: 2rem;
  width: 2rem;
  height: 2rem;
}

.footer-bottom-bar {
  background-color: var(--Light);
  top: -1rem;
  width: 100%;
  padding-top: 1.2rem;
  padding-bottom: 1rem;
  padding-left: 20%;
  padding-right: 20%;
  display: inline-flex;
  justify-content: space-between;
}

.footer-bottom-bar a {
  color: var(--Cream);
}

.footer-bottom-bar a:hover {
  color: var(--Mint);
}