/* Aqui se importan las fuentes usadas  */
@import url('https://fonts.googleapis.com/css2?family=Cascadia+Mono:ital,wght@0,200..700;1,200..700&family=Krona+One&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/* Aqui se declaran las variables de diferenes tipos, color, tamanos, letras, etc. */
:root{

  /* --color-primario: #f5c542; */
  /* --color-secundario: #7a7c7c; */

}


html{
  scroll-behavior: smooth; /*efecto para que el scroll sea mas suave y no tan duro*/
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  overflow: hidden; /* Previene scroll externo */
}

.main {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  transition-delay:5s ;
}

section {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
}

body{ 
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
  scroll-snap-type: y mandatory;
  overscroll-behavior: contain;
    background: linear-gradient(
  180deg,
  #0b0f14 0%,
  #0e1117 60%,
  #020204 100%
);
color: #f1f1f1;

}

* {
  box-sizing: border-box;
  scrollbar-color: #ffffff; /* thumb and track color */
  padding: 0;
  margin: 0;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  width: 0;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  height: 100px;
  z-index: 9999;
  transition: transform 0.3s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(0);
}

.header-hidden {
  transform: translateY(-100%) !important;
  transition: transform 0.3s ease-in-out !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.header__logoContainer,
.header__redesSociales {
  flex: 1;
  display: flex;
  align-items: center;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  color: #ffffff;

}

.header__logoContainer {
  justify-content: flex-start;
  margin-right: 2%;
}

.header__redesSociales {
  justify-content: flex-end;
  gap: 50px;
}

.header__redesSociales__logo {
  height: 50px;
  cursor: pointer;
}

.link-header {
  color: #ffffff;
  text-decoration: none;
  font-family:  "Poppins", mono;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s, font-size 0.3s, font-weight 0.3s, transform 0.3s;
}


.header__logo {
  max-width: 350px;
  height: auto;
}

/* ------- Header alternativo para demas secciones--------- */

.header__secundario{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  background-color: transparent;
  height: 100px;
  z-index: 9999;
  transition: transform 0.3s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(0);
}

.header__logoContainer{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  margin-left: 5%;
}

.link-headerSec, .link-header_secundario {
  color: black;
  text-decoration: none;
  font-family:  "Poppins", mono;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s, font-size 0.3s, font-weight 0.3s, transform 0.3s;
}


.link-header:hover, .link-header_identeidad:hover, .link-header_secundario:hover{
  font-size: 1.1rem;
  transform: translateY(-2px);
  font-weight: 800;
  color: #f5c542; /* Color al pasar el cursor */
}

.link-headerSec:hover, .link-header_identeidadSec:hover{
  font-size: 1.1rem;
  transform: translateY(-2px);
  font-weight: 800;
  color: #f5c542; /* Color al pasar el cursor */
}

/* Marcadores del mapa de cobertura */
.map-marker {
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
  transition: transform 0.2s ease;
  transform-origin: center;
}

.map-marker-body {
  fill: #fecb06;
  stroke: #ffffff;
  stroke-width: 2;
}

.map-marker-dot {
  fill: #0b0f14;
}

.map-marker-lift {
  transform: translateY(-8px) scale(1.08);
}

/* ===== ACTIVE SECTION HIGHLIGHTING ===== */
.active-section {
  font-weight: 800 !important;
  color: #f5c542 !important;
}

.active-section.link-header,
.active-section.link-header_identeidad,
.active-section.link-headerSec,
.active-section.link-header_identeidadSec,
.active-section.link-header_secundario {
  font-weight: 800 !important;
  color: #f5c542 !important;
}

.header__secundario__contacto:hover{
  border: 2px solid #f5c542;
  color: #f5c542;
  /* transition: color 0.3s; */
}

.header__secundario__contacto{
  display: flex;
  border: 2px solid #000000;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  margin-left: 5%;
  width: 10%;
  height: 70%;
  transition: border 0.3s;
}

.header__logo {
  max-width: 350px;
  height: auto;
}

.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

/* Header primario visible al cargar */
#header {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#header.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

#header__secundario.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}
/* -------------------Aqui termina header secundario------ */


.hero-banner {
  width: 100%;
  min-height: calc(100vh - 100px); 
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: flex-start;
  color: #ffffff;
  /* backdrop-filter: ; sirve para poner una parte de la imagen con algun estilo, blur, sepia o neativo*/
  padding: 2rem;
  width: 100%;
  height: 100%;

  background-image: url('../Assets/FondoHero.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero-title {
  display: flex;
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: .5rem;
  line-height: .8;
  font-family:  "Montserrat", sans-serif;
  margin-left: 6%;
}

.hero-subtitle {
  text-align: center;
  padding-top: 1%;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Poppins", serif;
  color:#ffffff;
  margin-left: 6%;
}

.hero-subtitle2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Poppins", serif;
  color:#ffffff;
  margin-left: 6%;
}


.hero__cta {
  color: #fecb06;
  padding: 7px 15px;
  border-radius: 999px;
  margin: 2.5% 10%;
  text-decoration: none;

  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-family: "Poppins", sans-serif;

  border: 1.5px solid rgb(254, 203, 6);

  transition: all .3s ease;
  animation: shakeY 4s ease-in-out ;
}

@keyframes shakeY {
  0%, 100% {
    transform: translateY(0);
  }
  10%, 30%, 50%, 70% {
    transform: translateY(-8px);
  }
  20%, 40%, 60% {
    transform: translateY(8px);
  }
  80% {
    transform: translateY(6px);
  }
  90% {
    transform: translateY(-6px);
  }
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(254,203,6,.35);
}


.accent {
  color: #fecb06;
  font-weight: 700;
}

/* Carrusel de palabras en el hero */
.hero-title--rotating {
  position: relative;
  display: inline-block;
  min-width: 650px;
  height: 1.2em;
  /* Da contexto de profundidad a las animaciones 3D */
  perspective: 600px;
  overflow: hidden;
}

.rotating-word {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  animation-duration: 0.7s;
  backface-visibility: hidden;
  transform-origin: center center;
  will-change: transform, opacity;
  white-space: nowrap;
  transform: translateY(40%) rotateX(-80deg);
  filter: blur(2px);
}

.rotating-word.active {
  position: absolute;
  opacity: 1;
}

.rotating-word.enter {
  animation: word-enter 0.7s ease forwards;
}

.rotating-word.leave {
  animation: word-leave 0.55s ease forwards;
}

@keyframes word-enter {
  0% {
    opacity: 0;
    transform: translateY(40%) rotateX(-80deg);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
  }
}

@keyframes word-leave {
  0% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-40%) rotateX(80deg);
    filter: blur(2px);
  }
}

.content__rigth__boton{
  width: 50%;
  height: 25%;
}

/* -----------carrusel identidad ----------------- */
.carousel{
width: 100%;
height: 100%;
padding-top: 100px;
box-sizing: border-box;
background:#EDEFF2 50%;
}

.carousel__clientes {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color:#ffffff;
}

.carousel__clientes-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel__clientes-track {
  display: flex;
  width: auto;
  transition: transform 0.5s ease-in-out;
}

.slide1__texto{
  width: 60%;
  display: flex;
  flex-direction: column;
}

.slide1__texto__titulo{
  color: #ffffff;
  font-family: 'Monteserrat', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 4%;
  margin-left: 11.5%;
  text-align: left;
  margin-bottom: 3%;

  /* font-size: 14–16px; */
  /* text-transform: uppercase; */
  opacity: 0.7;
}

.slide1__texto__subtitulo{
  color: #ffffff;
  font-family: 'Monteserrat', sans-serif;
  font-size: 4rem;
  margin-left: 5%;
  /* margin-right: 3%; */
  text-align: left;
  font-weight: 800;
  line-height: 1.1;
  /* max-width: 520px; */
  padding-bottom: 7%;
  border-left: 4px solid #f5c542;
  padding-left: 6%;
  position: relative;


}

.slide1__texto__subtitulo::after{
  content: '';
  position: absolute;
  bottom: 7%;
  left: 6%;
  width: 20%;
  height: 4px;
  background-color: #777571;
  opacity: 0.5;
}

.slide1__texto__parrafo{
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  margin-left: 5%;
  text-align: left;
  font-weight: 550;
  line-height: 1.3;
  opacity: 0.9;
  border-left: 4px solid #f5c542;
  padding-left: 6%;
  padding-top: 3%;
  padding-right: 15%;
}

.slide1__imagen{
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.slide1__imagen{
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slide1__imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3%;
}

.slide1__imagen::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    260deg,
    rgba(2, 2, 4, 0.2) 0%,
    rgba(2, 2, 4, 0.75) 60%,
    rgba(2, 2, 4, 0.95) 100%
  );
}

.slide2-inner {
  width: 100%;
  height: 100%;

  margin: 0 5%;  
  
  /* ← espacio lateral seguro */
  padding: 2rem;             /* espacio interno */
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  position: relative;

  background-color: #000000;
  border-radius: 2rem;

  background-image: url('../Assets/Mask\ group.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide2-inner::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 80%,
    rgba(0, 0, 0, 0) 300%
  );
  border-radius: 2rem;
  pointer-events: none;
  z-index: 1;
}


.slide2__texto{
  Width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.slide2__texto__parrafo{
  color:#ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  margin-top: 2%;
  margin-left: 10%;
  padding-right: 25%;
  /* text-align: justify; */
}

.slide2__texto__parrafo2{
  color:#ffffff;
  font-family: 'Segoe UI', sans-serif;
  font-size: 2rem;
  margin-top: 2%;
  margin-left: 10%;
  padding-right: 50%;  
}

.slide3__texto{
  width: 40%;
  display: flex;
  flex-direction: column;
  margin-left: 5%;
  margin-top: 10%;
  align-items: center;
}

.slide3__texto__titulo{
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  padding-right: 10%;
}

.slide3__texto__parrafo{
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
  margin-top: 5%;
  padding-right: 25%;
}


.slide3__imagen{
  display: flex;
  align-items: center;
  width: 60%;
  justify-content: center;
}

.imagen{
  width:90%;
}

.slide-inner {
  width: 100%;
  height: 100%;

  margin: 0 5%;  
  
  /* ← espacio lateral seguro */
  padding: 2rem;             /* espacio interno */
  box-sizing: border-box;

  display: flex;
  flex-direction: row;

  position: relative;

  background-color: #000000;
  border-radius: 2rem;

  background-image: 
    linear-gradient(315deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)),
    url('../Assets/mask3.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}


.slide1-inner {
  width: 100%;
  height: 100%;

  margin: 0 5%;  
  
  /* ← espacio lateral seguro */
  padding: 2rem;             /* espacio interno */
  box-sizing: border-box;

  display: flex;
  flex-direction: row;

  background-color: #000000;
  border-radius: 2rem;
}

/* Unificar estilos de los slides del carrusel */
.carrusel__slide1,
.carrusel__slide2,
.carrusel__slide3,
.carrusel__slide4 {
  width: 100%;
  height: 88vh;
  flex-shrink: 0;
  display: flex;
}

.slide4-inner {
  width: 100%;
  height: 100%;
  margin: 0 5%;  
  /* ← espacio lateral seguro */
  padding: 2rem;             /* espacio interno */
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
  background-color: #000000;
  border-radius: 2rem;
}

.slide4-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../Assets/Maskgroupslide1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  border-radius: 2rem;
  z-index: 0;
}


.slide4__texto{
  width: 100%;
  flex-direction: column;
  /* margin-left: 5%; */
  margin-top: 10%;
}

.slide4__texto__titulo{
  font-family: 'Montserrat', sans-serif;
  color: #f8f8f8;
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
}

.slide4__texto__parrafo{
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: #f8f8f8;
  margin-top: 3%;
  text-align: center;
  padding: 0% 24%;
  font-weight: 600;
}

.slide4accent{
  color: #fecb06;
  font-weight: 700;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(253, 253, 253, 0.5);
  border: none;
  color: rgb(10, 9, 9);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}
/* -----------carrusel termina aqui de la identidad------------------ */

.main__experiencias{
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  background-color: #EDEFF2;
  padding-top: 100px;
  align-items: center;
}

.experiencias__titulo{
  text-align: center;
  font-size: 2rem;
  color:#020204;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.experiencias__acent{
  color: #f5c542;
  font-weight: 800;
}

.experiencias__subtitulo{
  text-align: center;
  font-size: 1.3rem;
  color:#020204;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

/* inicia grid de experiencias  */
/* ===== GRID CONTENEDOR ===== */
.parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 85px); /* altura real */
  gap: 24px;

  width: 100%;
  min-height: 50vh;

  background-color: #EDEFF2;
  padding: 25px 100px 25px 140px;
}

/* ===== ITEMS DEL GRID ===== */
.parent > div {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  border-radius: 10px;
}

.parent > div:hover {
  transform: scale(1.05);
  z-index: 2;
}

/* ===== IMÁGENES ===== */
.parent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

/* ===== GRID AREAS ===== */
.div1 { grid-area: 1 / 1 / 3 / 3; border: 2px solid #000; }
.div2 { grid-area: 3 / 1 / 6 / 2; border: 2px solid #000; }
.div3 { grid-area: 3 / 2 / 6 / 4; border: 2px solid #000; }
.div4 { grid-area: 1 / 3 / 3 / 4; border: 2px solid #000; }
.div5 { grid-area: 1 / 4 / 4 / 6; border: 2px solid #000; }
.div6 { grid-area: 4 / 4 / 6 / 6; border: 2px solid #000; }

/* ===== OVERLAY (HOVER) ===== */
.parent > div::after {
  position: relative;
  inset: 0;
  background-color: rgba(252, 203, 6, 0.682);

  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin: 0px 5px 5px 5px;

  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;

  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border: 2px solid #000;
  border-radius: 10px ;
}

/* ===== OVERLAY FLEXIBLE CON MÚLTIPLES TAMAÑOS ===== */
.div1, .div2, .div3, .div4, .div5, .div6 {
  position: relative;
}

.overlay {
  height: 50%;
  position: absolute;
  inset: auto 5px 10px 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  background-color: rgba(252, 203, 6, 0.85);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  padding: 20px 10px 20px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #000000;
}

.parent > div:hover .overlay {
  opacity: 1;
}

/* Tamaños de líneas */
.overlay .line-1 {
  font-size: 1rem;
  font-weight: 800;
}

.overlay .line-2 {
  font-size: .8rem;
  font-weight: 600;
}

.overlay .line-3 {
  font-size: 1rem;
  font-weight: 600;
  /* opacity: 0.9; */
}

/* Termina grid de experiencias */

.experiencias__contacto{
  text-align: center;
  font-size: 1.5rem;
  color:#020204;
  font-family: 'Montserrat', sans-serif;

}

.experiencias__cta{
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color:#020204;
  background-color: #f5c542;
  border-radius: 10px;
  border: 5px solid #020204;
  font-family: 'Montserrat', sans-serif;
  margin: 1% 35% 2% 35%;
  text-decoration: none;
  padding: 0 2%;
  animation: shakeY 4s ease-in-out infinite;
}

@keyframes shakeY {
  0%, 100% {
    transform: translateY(0);
  }
  10%, 30%, 50%, 70% {
    transform: translateY(-8px);
  }
  20%, 40%, 60% {
    transform: translateY(8px);
  }
  80% {
    transform: translateY(6px);
  }
  90% {
    transform: translateY(-6px);
  }
}

.main__servicios{
    display: flex;
    flex-direction: column;
    background:#e6e6e8 50%;
    width: 100%;
    height: 100%;
    padding-top: 100px;
}

.main__servicios h2 {
  color: #0e1117;
  font-family:  "Poppins", sans-serif;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1%;
  letter-spacing: -0.02em;
  font-size: 2rem;
}

.main__servicios p {
  color: #555;
  font-family:  "Poppins", sans-serif;
  text-align: center;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.servicios{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
  height: auto;
  gap: 2%;
  padding: 1% 5% 1% 6%;
  box-sizing: border-box;
  margin-bottom: 1% ;
}

.servicio_1,
.servicio_2,
.servicio_3 {
  width: 25%;
  height: 400px;
  min-width: 260px;
  position: relative;
  margin: 10px;
  border-radius: 10px 10px 10px 10px;
}

/* Título en el front */
.servicio-front h2 {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 130px;
  margin: 0;
  color: #fecb06;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(to top, rgba(235, 235, 235, 0.763), transparent);
  border-radius: 0 0 10px 10px;
}

/* Título y texto en el back */
.servicio-back h2 {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  padding: 0 20px;
  margin: 0;
  color: #fecb06;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.servicio-back p {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  padding: 0 25px;
  margin: 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.servicio-back__cta {
  position: absolute;
  top: 300px;
  left: 0;
  right: 0;
  padding: 0 25px;
  margin: 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;

  color: #fecb06;

  padding: 7px 15px;
  border-radius: 999px;
  margin: 2.5% 10%;
  text-decoration: none;
  text-align: center;

  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-family: "Poppins", sans-serif;

  border: 1.5px solid #fecb06;

  transition: all .3s ease;
}

.servicio-back__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(254,203,6,.35);
}

/* Parte frontal de la tarjeta */
.servicio_1 > .servicio-front,
.servicio_2 > .servicio-front,
.servicio_3 > .servicio-front {
  position: absolute;
  transform: perspective(600px) rotateY(0deg);
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
  border-radius: 10px;
  background-color: #2d2d2d;
}

/* Parte trasera de la tarjeta */
.servicio_1 > .servicio-back,
.servicio_2 > .servicio-back,
.servicio_3 > .servicio-back {
  position: absolute;
  transform: perspective(600px) rotateY(180deg);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* Hover effect - girar al frente */
.servicio_1:hover > .servicio-front,
.servicio_2:hover > .servicio-front,
.servicio_3:hover > .servicio-front {
  transform: perspective(600px) rotateY(-180deg);
}

/* Hover effect - girar al back */
.servicio_1:hover > .servicio-back,
.servicio_2:hover > .servicio-back,
.servicio_3:hover > .servicio-back {
  transform: perspective(600px) rotateY(0deg);
}

.clientes{
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.clientes__titulo{  
  color: #0e1117;
  font-family:  "Poppins", sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1%;
  letter-spacing: -0.02em;
  
}

.clientes__titulo::after {
  content: "";
  display: block;
  width: 500px;
  height: 2.5px;
  margin: 8px auto 0;
  background-color: #fecb06;
}

/* -----------ajustar esta parte------------ */
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* Efecto de aparición y desaparición en los extremos */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
}

.carousel-track {
  display: flex;
  animation: scroll 50s linear infinite;
  align-items: center;
  width: fit-content;
  will-change: transform;
}

.carousel-item {
  width: 120px;
  margin: 0 70px;
  opacity: 0.7;
  filter: grayscale(100%);
  flex-shrink: 0;
}

.carousel-item:hover {
  transform: scale(1.2);
  z-index: 1;
  opacity: 1;
  filter: grayscale(0%);
  transition: transform 0.3s ease;
}

/* Animación de desplazamiento continuo e infinito */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3380px);
  }
}
/* -------------ajustar esta parte---------------- */

.main__cobertura{
  border-radius: 10px;
  background:#0e1117;
  color:white;
  padding-top: 110px;
  margin-top: 110px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap:2%;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

.cobertura-accent{
  color:#fecb06;
}

/* ==== comienza cobertura MAPA ===== */
.container {
  width: 100%;
  margin: auto;
}

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 1rem;
  margin-left: 15%;
  margin-right: 15%;
}

#mexico3 {
  transition: all 0.5s ease;
}

#mexico3:hover{
  fill: #fecb06;
  transform: translateY(-8px);
}

#mexico15 {
  transition: all 0.5s ease;
}

#mexico15:hover{
  fill: #fecb06;
  transform: translateY(-8px);
}

#mexico21 {
  transition: all 0.5s ease;
}

#mexico21:hover{
  fill: #fecb06;
  transform: translateY(-8px);
}

#mexico27 {
  transition: all 0.5s ease;
}

#mexico27:hover{
  fill: #fecb06;
  transform: translateY(-8px);
}

#mexico33 {
  transition: all 0.5s ease;
}

#mexico33:hover{
  fill: #fecb06;
  transform: translateY(-8px);
}

#mexico57 {
  transition: all 0.5s ease;
}

#mexico57:hover{
  fill: #fecb06;
  transform: translateY(-8px);
}

.cobertura__eventos{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50%;
  background: #0e1117;
  margin-bottom: 2%;
}

.eventos{
  width: 20%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* padding: 0 20px 0 20px; */
  margin-right: 3%;
  border-radius: 10px;
  border: 2px solid #fecb06;
}

.lugares{
  width: 20%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* padding: 0 20px 0 20px;  */
  margin-left: 3%;
  border-radius: 10px;
  border: 2px solid #fecb06;
}

.letras{
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  /* padding: 3%; */
  padding-left: 5%;
  font-weight: 700;
}

.num{  
  font-family: "Montserrat", sans-serif;
  color: #fecb06;
  font-size: 4rem;
  font-weight: 700;
  
}

/* ======= termina cobertura mapa de mexico======== */

.main__contactanos{
  width: 100%;
  height: 100%;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  background-color: #e6e6e8;
  align-items: center;
  
}

.contactanos__titulo{
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color:#020204;
  margin-top: 4%;
  margin-bottom: 1%;
}

.contactanos__subtitulo{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color:#020204;
  margin-bottom: 3%;
}

.contacto__texto{
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color:#020204;
  /* margin-bottom: 3%; */
  text-align: center;
}

.contacto__texto-p{
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color:#020204;
  margin-bottom: 4%;
  text-align: center;
}

.contacto__boton{
  background-color: #fecb06;
  display: flex;
  flex-direction: row;
  width: 40%;
  height: 15%;
  margin-left: 100%;
  margin-right: 100%;
  border: 2px solid #000000;
  border-radius: 16px;
  text-decoration: none;
  color:#020204;
  transition: transform 0.5s ease;
}

.contacto__boton:hover{
  transform: translateY(-2px);
}

.contacto__boton-imagen{
  width: 20%;
  /* margin-right: */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 2%;
}

.contacto__boton-imagen img{
  width: 80px;
  /* margin-right: 2%; */
}

.contacto__boton-texto{
  width: 70%;
  height:100%;
  /* margin-left: 1%; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.3rem;
  color:#020204;
  /* margin-top: 5%;l */
  margin-bottom: 1%;
  text-decoration: none;
}

.contacto__leyenda{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color:#020204;
  margin-top: 1% ;
}

.contacto-accent{
  color: #000000;
  font-weight: 800;
}


.footer{
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  gap: 0;
}

.footer__contenedor {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.footer__row1{
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 90%;
}

.columna1{
  background-color: #0b0f14;
  height: 100%;
  width: 35%;
  /* padding: 40px 20px; */
  display: flex;
  flex-direction:column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #ffffff
}

.columna1__imagen{
  width: 90%;
}

.columna1 p{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #e6e6e8;
  margin-left: 8%;
  
}

.columna2{
  background-color: #0b0f14;
  height: 100%;
  width: 40%;
  padding-top: 2%;
  padding-left: 4%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #e6e6e8;
  text-decoration: none;
  gap:2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color:#000000;
  font-size: 1.5rem;
}

.columna2 p{
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fecb06;
}

.columna2 nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: left;
}

.columna2 a{
  color:#e6e6e8;
  text-decoration: none;
  position: relative;
  padding-right: 2.5rem;
  display: inline-block;
  white-space: nowrap;
  line-height: 2;
  transition: color 0.3s ease;
}

.headerfooter:hover{
  color:#f5c542;
  transition: color 0.3s ease;
}


.columna3{
  background-color: #0b0f14;
  height: 100%;
  width: 30%;
  /* padding: 40px 20px; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* align-items: center; */
  color: #e6e6e8;
  padding-top: 2%;
}

.columna3 div {
  font-family: 'Montserrat';
  font-size: 1.3rem;
  color:#e6e6e8;
  font-weight: 700;
  margin-left: 2%;
  gap: .5%;
  text-align: left;
  padding-left: 8%;

}

.columna3__titulo{
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fecb06;
  padding-left: 8%;
  padding-bottom: 5%;
}

.columna3 img{
  width:40px;
  padding-right: 2% ;
}

.columna3__whatsapp, .columna3__correo, .columna3__localidad{
  display: flex;
  flex-direction: row;
  padding-bottom: 4%;
}

.footer__boton{
  background-color: #fecb06;
  display: flex;
  flex-direction: row;
  border: 2px solid #f9f9f9;
  border-radius: 16px;
  text-decoration: none;
  width: auto;
  padding: 12px 25px 12px 0px;
  justify-content: center;
  align-items: center;
  margin-left: 9%;
  margin-right: 24%;
  margin-top: 5%;
  color:#020204;
  transition: transform 0.3s ease;
}

.footer__boton:hover{
  transform: translateY(-2px);
}


.footer__boton-texto{
  width: 100%;
  height:100%;
  display: flex;
  align-items: center;
  justify-content: center;


  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .2rem;
  color:#020204;
  text-decoration: none;
}

.footer__boton-texto p{
  color: #020204;
}


.footer__row2{
  display: flex;
  width: 100%;
  /* align-items: center; */
  justify-content: center;
  height: 10%;
  background-color: #0b0f14;
}

.footer__row2 p{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.33;
  letter-spacing: 0.2em;
  color: #e6e6e8;
  text-align: center;
  margin-top: 2%;
}

/* aqui empieza los estilos para hacer la pagina responsiva sin usar cosas raras */

/* ===== HAMBURGUESA Y MENÚ MÓVIL ===== */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 10px;
  z-index: 10000;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#header__secundario .hamburger span {
  background-color: black;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  background-color: rgba(11, 15, 20, 0.98);
  flex-direction: column;
  gap: 0;
  z-index: 9998;
  padding: 20px 0;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

#header__secundario ~ #mobileMenuSecundario {
  background-color: rgba(255, 255, 255, 0.98);
  top: 80px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu__link {
  color: white;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 15px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

#header__secundario ~ #mobileMenuSecundario .mobile-menu__link {
  color: black;
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.mobile-menu__link:hover {
  background-color: rgba(245, 197, 66, 0.2);
  color: #f5c542;
  padding-left: 35px;
}

.mobile-menu__cta {
  background-color: #f5c542;
  color: black !important;
  margin: 15px;
  border-radius: 30px;
  text-align: center;
  border: none;
}

.mobile-menu__cta:hover {
  background-color: #ffd966;
  padding-left: 25px;
}

@media (max-width: 1023px) {
  /* ===== HAMBURGUESA Y MENÚ MOBILE ===== */
  .hamburger {
    display: flex;
  }

  .header__nav {
    display: none;
  }

  .header__redesSociales {
    display: none;
  }

  .header__secundario__contacto {
    display: none;
  }

  /* ===== HEADER ===== */
  .header {
    padding: 12px 20px;
    height: 80px;
  }

  .header__secundario {
    padding: 12px 20px;
    height: 80px;
  }

  .header__logo {
    max-width: 200px;
  }

  .header__nav {
    gap: 30px;
  }

  .link-header,
  .link-header_identeidad,
  .link-headerSec,
  .link-header_secundario,
  .link-header_identeidadSec {
    font-size: 0.95rem;
  }

  .header__redesSociales {
    gap: 25px;
  }

  .header__redesSociales__logo {
    height: 40px;
  }

  .header__secundario__contacto {
    width: 15%;
    margin-left: 3%;
  }

  /* ===== HERO ===== */
  .hero-banner {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-content {
    display: flex;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-top: 30%;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-left: 0 !important;
    text-align: center;
    display: block;
    width: 100%;
  }

  .hero-title--rotating {
    display: block !important;
    min-width: 100%;
    max-width: 100%;
    margin: 0 auto !important;
    text-align: center;
    position: relative !important;
  }

  .hero-subtitle,
  .hero-subtitle2 {
    font-size: .9rem;
    margin-left: 0 !important;
    text-align: center;
    width: 100%;
  }
  
  .hero__cta {
    font-size: 1rem;
    padding: 3px 7px;
    margin: 3% auto;
    border: .7px solid rgb(254, 203, 6);
  }

  .rotating-word{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* ===== CAROUSEL ===== */
  .carousel {
    padding-top: 100px;
    height: 100vh;
  }

  .carousel__clientes {
    height: 100%;
    overflow: hidden;
    position: relative;
  }

  .carousel__clientes-track-container {
    height: 100%;
    overflow: hidden;
  }

  .carousel__clientes-track {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    gap: .25rem;
  }

  .carrusel__slide1,
  .carrusel__slide2,
  .carrusel__slide3,
  .carrusel__slide4 {
    width: calc(100% - 32px);
    height: 100%;
    min-height: 100%;
    margin: 0 auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .slide1-inner{
  width: 98%;
  height: 95%;

  margin: 0 2% 0 1%;  
  
  /* ← espacio lateral seguro */
  padding: 2rem;             /* espacio interno */
  box-sizing: border-box;

  display: flex;
  flex-direction: column;

  background-color: #000000;
  border-radius: 2rem;
}

  .slide1__texto {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .slide1__texto__subtitulo{
    font-size: 1rem;
  }
  .slide1__texto__parrafo{
    font-size: 1rem;
  }

  .slide1__imagen {
    width: 100%;
    height: auto;
    flex: 1;
  }

  .slide-inner,
  .slide2-inner,
  .slide4-inner {
    /* margin: 0 8% 0 3%; */
    padding: 1.5rem;
    flex-direction: column;
    width: 98%;
    height: 95%;
    margin: 0 2% 0 1%; 
  }

  .slide1__texto {
    width: 100%;
  }

  .slide1__texto__titulo {
    font-size: 1rem;
    margin-left: 8%;
    margin-bottom: 7%;
    /* text-align: center; */
  }

  .slide1__texto__subtitulo {
    font-size: 1.9rem;
    margin-left: 3%;
    padding-left: 4%;
    padding-bottom: 5%;
  }

  .slide1__texto__parrafo {
    font-size: 1rem;
    margin-left: 3%;
    padding-left: 4%;
    padding-right: 5%;
  }

  .slide1__imagen {
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 3%;
  }

  .slide1__imagen img {
    width: 50%;
    height: 90%;
    object-fit: fill;
    border-radius: 3%;
  }

  .slide1__imagen::after {
    display: none;
  }

  .slide2__texto__parrafo{
  color:#ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  margin-top: 2%;
  margin-left: 5%;
  padding-right: 15%;
  /* text-align: center; */
}

  .slide2__texto__parrafo2 {
    font-size: 1.2rem;
    margin-left: 5%;
    padding-right: 18%;
  }

  .slide-inner{
      flex-direction: column-reverse;
  }

  .slide3__texto {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }

  .slide3__texto__titulo {
    font-size: 2rem;
  }

  .slide3__texto__parrafo {
    font-size: 1.2rem;
  }

  .slide3__imagen {
    width: 90%;
    height: 40vh;
  }

  .slide4__texto{
  width: 100%;
  flex-direction: column;
  /* margin-left: 5%; */
  margin-top: 25%;
}

  .slide4__texto__titulo {
    font-size: 3.5rem;
  }

  .slide4__texto__parrafo {
    font-size: 1.5rem;
    padding: 0% 10%;
  }

  .carousel-button {
    font-size: 1.5rem;
  }

  /* ===== EXPERIENCIAS GRID ===== */
  .parent {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 120px);
    max-width: 720px;
    margin: 0 auto;
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 20px;
    gap: 20px;
  }

  .div1,
  .div2,
  .div3,
  .div4,
  .div5,
  .div6 {
    grid-area: auto !important;
    min-height: 120px;
    margin: 0 !important;
  }

  .div1::after,
  .div2::after,
  .div3::after,
  .div4::after,
  .div5::after,
  .div6::after {
    font-size: 1.5rem;
  }

  .experiencias__contacto{
  font-size: 1.2rem;
}

.experiencias__cta{
  font-size: 1.4rem;
  margin: 1% 28% 2% 28%;
}

  /* ===== SERVICIOS ===== */
  .main__servicios {
    padding-top: 70px;
  }

  .main__servicios h2 {
    font-size: 1.4rem;
  }

  .main__servicios p {
    font-size: .9rem;
  }

  .servicios {
    flex-direction: column;
    padding: 2% 3%;
    gap: 1.5vh;
    width: 100%;
    height: auto;
  }

  .servicio_1,
  .servicio_2,
  .servicio_3 {
    width: 100%;
    height: 15vh;
    flex-shrink: 0;
  }

  .servicio-front h2 {
    inset: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }

  /* Back card con layout en row */
  .servicio_1 > .servicio-back,
  .servicio_2 > .servicio-back,
  .servicio_3 > .servicio-back {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 10px;
    gap: 8px;
  }

  .servicio-back h2 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 5px;
    font-size: 0.9rem;
    flex: 0 0 25%;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-self: stretch;
  }

  .servicio-back p {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 5px 10px;
    font-size: 0.5rem;
    margin: 0;
    line-height: 1.2;
    flex: 1 1 calc(75% - 18px);
    text-align: left;
    order: 1;
  }

  .servicio-back__cta {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 6px 10px;
    font-size: 0.6rem;
    line-height: 1;
    margin: 0 0 0 calc(25% + 8px);
    letter-spacing: 0;
    flex: 0 0 calc(75% - 18px);
    width: calc(75% - 18px);
    order: 2;
  }

  .clientes__titulo {
    font-size: 1rem;
  }

  .clientes__titulo::after {
    width: 1000px;
  }

  .carousel-item {
    width: 80px;
    margin: 0 40px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1500px);
    }
  }

  /* ===== COBERTURA ===== */
  .main__cobertura {
    /* padding: 8%; */
  padding-top: 80px;
  margin-top: 100px;
  flex-direction: column;
  gap: 1%;
  font-size: 1rem;
  }
  .main__cobertura p{
    margin-left: 6%;
    margin-right: 6%;
    margin-top: 2.5%;
  }

  .container {
  width: 100%;
  height: 85%;
  margin: auto;
}
.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  height: 100%;
}

.cobertura__eventos{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30%;
  background: #0e1117;
  margin-bottom: 2%;
}

.eventos{
  width: 30%;
  height: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* padding: 0 20px 0 20px; */
  margin-right: 1.5%;
  border-radius: 10px;
  border: 2px solid #fecb06;
}

.lugares{
  width: 30%;
  height: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* padding: 0 20px 0 20px;  */
  margin-left: 1.5%;
  border-radius: 10px;
  border: 2px solid #fecb06;
}

.letras{
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: .5rem;
  text-align: center;
  /* padding: 3%; */
  padding-left: 2.5%;
  font-weight: 700;
}

.num{  
  font-family: "Montserrat", sans-serif;
  color: #fecb06;
  font-size:1.5rem;
  font-weight: 700;
  
}

  /* ===== CONTACTO ===== */
  .main__contactanos {
    flex-direction: column;
    padding: 20px 15px;
    padding-top: 100px;
  }

  .contactanos__titulo {
    font-size: 2rem;
    margin-bottom: 5%;
  }

  .contactanos__subtitulo {
    font-size: 1.1rem;
    margin-bottom: 5%;
  }

  .contacto__texto,
  .contacto__texto-p {
    font-size: 1rem;
    margin-bottom: 5%;
    padding: 0 10px;
  }

  .contacto__boton {
    width: 80%;
    height: auto;
    min-height: 80px;
    margin: 20px auto;
    padding: 15px;
    flex-direction: column;
    gap: 10px;
  }

  .contacto__boton-imagen {
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .contacto__boton-imagen img {
    width: 60px;
  }

  .contacto__boton-texto {
    width: 100%;
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
  }

  .contacto__leyenda {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 20px;
  }

  /* ===== FOOTER ===== */
  .footer {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .footer__contenedor {
    height: auto;
  }

  .footer__row1 {
    flex-direction: column;
    height: auto;
  }

  .columna1,
  .columna2,
  .columna3 {
    width: 100%;
    padding: 30px 20px;
    align-items: center;
    text-align: center;
  }

  .columna1__imagen {
    width: 70%;
    max-width: 250px;
    margin: 0 auto;
  }

  .columna1 p {
    font-size: 1.3rem;
    margin-left: 0;
    text-align: center;
    width: 100%;
  }

  .columna2 {
    padding: 30px 20px;
    align-items: center;
  }

  .columna2 p {
    font-size: 2rem;
    text-align: center;
  }

  .columna2 nav {
    align-items: center;
    width: 100%;
  }

  .columna2 a {
    text-align: center;
    padding: 15px 20px;
    font-size: 1.2rem;
  }

  .columna3 {
    padding: 30px 20px;
  }

  .columna3__titulo {
    font-size: 2rem;
    padding-left: 0;
    text-align: center;
    width: 100%;
  }

  .columna3 div {
    font-size: 1rem;
    margin-left: 0;
    padding-left: 0;
    justify-content: center;
    text-align: center;
  }

  .columna3__whatsapp,
  .columna3__correo,
  .columna3__localidad {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 6%;
  }

  .columna3 img {
    width: 35px;
    padding-right: 0;
    margin-bottom: 5px;
  }

  .footer__boton {
    width: 80%;
    margin: 20px auto;
    padding: 15px 20px;
  }

  .footer__boton-texto {
    font-size: 1.3rem;
  }

  .footer__row2 {
    height: auto;
    padding: 20px 15px;
  }

  .footer__row2 p {
    font-size: 0.8rem;
    margin-top: 0;
  }

/* Prevenir cambios de ancho por scrollbar */
html {
  overflow-y: auto;
  overflow-x: hidden;
}

}