/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;
  --primary-color: #0c54c6;
  --primary-color-alt: #111;
  --primary-color-transparent-buttom: rgba(46, 26, 143, 0.05);
  --second-color: #e0d300;
  --white-color: #ffffff;
  --second-white-color: #e6e7e9;
  --back-color-white: #F5F5F7;
  --primary-color-text: #fff;
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 0.938rem;
  --z-fixed: 100;
}

/*===== BASE =====*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 500;
  margin: 0;
  background-color: #fff;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/*===== LAYOUT =====*/
.wrapper {
  margin: auto;
  width: 85%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  gap: 3rem;
}

/*===== REUSABLE CLASSES =====*/
.content-sections {
  height: 100%;
  align-items: center;
  z-index: 2;
  position: relative;
}

.padding-sections {
  padding: 5rem 0 6.5rem !important;
}

.padding-sections-2 {
  padding: 8rem 0 8rem !important;
}

.text-alt {
  color: var(--primary-color);
}

/*===== HEADER & NAV =====*/
.header {
  width: 100%;
  z-index: 3;
  
}

.hero-wrapper {
  background: linear-gradient(135deg, #f8f5b0, #e0d300);
}


.nav__content {
  display: flex;
  justify-content: space-between;
  height: 80px;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

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

.logo {
  width: 120px;
  transition: 0.3s all ease;
}

.nav__menu {
  padding: 0 1rem;
}

.nav__list {
  display: flex;
}

.nav__item {
  margin: 0 1rem;
  transition: 0.3s all ease;
}

.nav__link {
  color: #000;
  padding-bottom: 0.5rem;
  position: relative;
  font-size: 1.05rem;
  letter-spacing: 0.05rem;
  font-weight: 400;
}

.active {
  color: var(--primary-color) !important;
}

.nav__link:hover {
  color: var(--second-color);
  transition: color 0.33s ease-in-out 0s;
}

.btn {
  display: inline-flex;
  gap: 10px;
  transition: 0.3s all ease;
  display: none;
}

.nav__option {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--primary-color);
  letter-spacing: 0.03rem;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  border: 0.125rem solid var(--primary-color);
  transition: 0.3s all ease;
}

.nav__option:hover {
  background: var(--second-color);
  border: 0.125rem solid var(--second-color);
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.nav__option:first-child {
  color: var(--primary-color);
  background-color: #fff;
}

.header.sticky {
  background-color: #fff;
  box-shadow: 0 4px 10px rgb(0 0 0 / 8%);
  position: fixed;
}

/* Hamburger menu */
.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 35px;
  height: 2px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--primary-color);
}

/* Progress bar */
.progress-container {
  width: 100%;
  height: 0.1rem;
  background: transparent;
}

.progress-bar {
  height: 0.1rem;
  background: transparent;
  width: 0%;
}

/*===== HERO SECTION =====*/
.hero {
  text-align: center;
  padding: 1rem 0 5rem 0;



}

.hero .h1 {
  font-size: 3rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.05rem;
  text-align: left;
  color: #000;
}

.hero .h1 .ex {
  -webkit-text-stroke: 0.06rem var(--primary-color-alt);
  color: transparent;
  font-weight: 800;
  letter-spacing: 0.09rem;
}

.hero .h2 {
  padding-top: 1.1rem;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  text-align: left;
  color: #555;
}

.content-button {
  margin-top: 2rem;
  display: flex;
  grid-gap: 1rem;
}

.button {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 0px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(12, 84, 198, 0.2);
  border: 2px solid transparent;
}

.button:hover {
  background: white;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(12, 84, 198, 0.3);
}

/* Image slider */
.image-slider {
  height: 650px;
  overflow: hidden;
  position: relative;
}

.image-slider img {
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.image-slider img.active {
  opacity: 1;
  z-index: 2;
}

/*===== ABOUT SECTION =====*/
/* ===== SECCIÓN ABOUT MEJORADA ===== */
.about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(12, 84, 198, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.about::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(224, 211, 0, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.about .content-sections {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.about .description-section {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.about .h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.about .h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--second-color);
  border-radius: 2px;
}

.about .h2 {
  padding-top: 1.1rem;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  text-align: left;
  color: #555;
}

.about .p {
  padding-top: 1.1rem;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  text-align: center;
  color: #555;
}

.about .content-button {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* Efecto reveal mejorado */
.about .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.about .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about .h1 {
    font-size: 2.2rem;
  }
  
  .about .h2 {
    font-size: 1.1rem;
  }
  
  .about .p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 3rem 0;
  }
  
  .about .h1 {
    font-size: 1.8rem;
  }
  
  .about .h1::after {
    width: 60px;
    height: 3px;
    bottom: -8px;
  }
  
  .about .description-section {
    padding: 2rem 1rem;
  }
  
  .about .button {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }
}

/* ===== SECCIÓN SERVICIOS MODERNA ===== */
.services {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(12, 84, 198, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(224, 211, 0, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.services .wrapper {
  position: relative;
  z-index: 2;
}

.services .description-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.services .h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0c54c6;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.services .h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #e0d300;
  border-radius: 2px;
}

.services p {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.6;
  margin-top: 1.5rem;
}

/* Grid de tarjetas moderno */
.services .grid-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* Tarjetas de servicios mejoradas */
.services .card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.services .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0c54c6 0%, #e0d300 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services .card:hover::before {
  opacity: 1;
}

/* Encabezado de tarjeta */
.services .header-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.services .icon-card {
  width: 80px;
  height: 80px;
  background: rgba(12, 84, 198, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.8rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.services .card:hover .icon-card {
  background: linear-gradient(135deg, #0c54c6 0%, #093ea7 100%);
  transform: scale(1.05);
}

.services .icon-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.services .card:hover .icon-card img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

.services .title-card .h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin: 0.5rem 0 0;
  transition: color 0.3s ease;
}

.services .card:hover .title-card .h1 {
  color: #0c54c6;
}

/* Contenido de tarjeta */
.services .contains-card p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

.services .card:hover .contains-card p {
  color: #333;
}

/* Efecto hover completo */
.services .card:hover {
  background: #ffffff;
  border-color: rgba(12, 84, 198, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .services {
    padding: 6rem 0;
  }
  
  .services .h1 {
    font-size: 2.2rem;
  }
  
  .services p {
    font-size: 1.1rem;
  }
  
  .services .grid-card {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 4rem 0;
  }
  
  .services .h1 {
    font-size: 1.8rem;
  }
  
  .services .description-section {
    margin-bottom: 3rem;
  }
  
  .services .icon-card {
    width: 60px;
    height: 60px;
    margin-right: 1.2rem;
  }
  
  .services .title-card .h1 {
    font-size: 1.3rem;
  }
  
  .services .contains-card p {
    font-size: 1rem;
  }
}

/*===== SALE SECTION =====*/
/* ===== SECCIÓN SALE - DISEÑO PROFESIONAL ===== */
.sale {
  position: relative;
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: #333;
  overflow: hidden;
  border-bottom: 1px solid #e9ecef;
}

.sale .content-sections {
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 4rem;
}

/* Contenedor de texto */
.sale .description-section {
  padding: 2rem;
  position: relative;
}

/* Título principal */
.sale .h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--second-color);
}

/* Texto descriptivo */
.sale .h2 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: #fff;
}

/* Palabras resaltadas */
.sale .h2 strong {
  font-weight: 600;
  color: var(--second-color);
  position: relative;
}

.sale .h2 strong[data-highlight] {
  color: var(--second-color);
}

/* Botón de registro */
.sale .content-button {
  margin-top: 2rem;
}

.sale .button {
  background: var(--second-color);
  color: #111;
  padding: 1rem 2.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(12, 84, 198, 0.2);
}

.sale .button:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(12, 84, 198, 0.3);
}

/* Contenedor de imagen */
.sale .content-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08); */
  transition: transform 0.5s ease;
}

.sale .content-image:hover {
  transform: translateY(-10px);
}

.sale .image-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Elemento decorativo */
.sale .decorative-element {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(224, 211, 0, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.sale .decorative-element-1 {
  top: -150px;
  right: -150px;
}

.sale .decorative-element-2 {
  bottom: -100px;
  left: -100px;
  background: rgba(224, 211, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .sale .h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .sale {
    padding: 6rem 0;
    text-align: center;
  }
  
  .sale .content-sections {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sale .content-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .sale {
    padding: 4rem 0;
  }
  
  .sale .h1 {
    font-size: 1.8rem;
  }
  
  .sale .h2 {
    font-size: 1.1rem;
  }
  
  .sale .button {
    padding: 0.8rem 2rem;
  }
}

/*===== PHRASES SECTION =====*/
/* ===== SECCIÓN PHRASES - DISEÑO PROFESIONAL ===== */
.phrases {
  position: relative;
  background-image: url('../images/shipping-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  overflow: hidden;
}

.phrases .layer {
  background: linear-gradient(135deg, rgba(12, 84, 198, 0.85) 0%, rgba(9, 62, 167, 0.9) 100%);
  padding: 6rem 0;
}

.phrases .content-sections {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.phrases .h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.phrases .h2 {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.phrases .h2 strong {
  font-weight: 500;
  color: var(--second-color);
  position: relative;
}

.phrases .h2 strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--second-color);
  opacity: 0.7;
}

.phrases-content-button {
  margin-top: 3rem;
}

.phrases .button {
  background: var(--second-color);
  color: #111;
  padding: 1rem 2.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid var(--second-color);
  box-shadow: 0 4px 15px rgba(224, 211, 0, 0.3);
}

.phrases .button:hover {
  background: transparent;
  color: var(--second-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(224, 211, 0, 0.4);
}

/* Efecto de partículas sutiles */
.phrases-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: float 8s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .phrases .h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .phrases .layer {
    padding: 4rem 0;
  }
  
  .phrases .h1 {
    font-size: 2rem;
  }
  
  .phrases .h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .phrases {
    background-attachment: scroll;
  }
  
  .phrases .h1 {
    font-size: 1.8rem;
  }
  
  .phrases .button {
    padding: 0.8rem 2rem;
  }
}

/*===== MOBILE BUTTONS =====*/
.container-btn-movil {
  width: 100%;
  background-color: #fff;
  z-index: 2;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 0.5rem;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgb(0 0 0 / 8%);
  opacity: 0.95;
  display: none;
}

/*===== FOOTER =====*/
.footer {
  background-color: rgb(248, 248, 250);
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.content-footer {
  padding: 2rem 0 2rem 0;
}

.footer .container {
  display: flex;
  font-size: 0.9rem;
  justify-content: space-between;
  align-items: start;
}

.contains-logo .logo-white img {
  width: 170px;
}

.contains-legal {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
}

.contains-legal p {
  margin: 0;
  margin-bottom: 1.1rem;
  color: #000;
}

.contains-legal ul li {
  margin-bottom: .5rem;
}

.contains-legal ul li a {
  color: #000;
}

.container-producer {
  display: flex;
  color: #000;
  font-size: 1rem;
  margin-top: 0rem;
}

.ayuda {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
}

.ayuda ul li {
  display: flex;
}

.ayuda ul li .icon {
  margin-right: 0.5rem;
  color: #000;
}

.contains-social-media {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 2rem;
}

.contains-social-media ul {
  display: flex;
}

.contains-social-media ul li a img {
  width: 30px;
}

.container-copy {
  display: block;
  padding: 3rem 0 0 0;
  text-align: center;
}

.copyright p {
  font-weight: 400;
  font-size: 1rem;
  color: #222222;
}

/*===== OVERLAY =====*/
.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
  cursor: pointer;
}

.overlay .content-overlay {
  position: absolute;
  color: #fff;
  transform: translate(-50%, -50%);
  top: 30%;
  left: 50%;
}

.overlay .boton-overlay {
  background: var(--primary-color);
  color: #fff;
}

.overlay .boton-overlay:hover {
  background: var(--second-color);
}

/*===== REVEAL ANIMATION =====*/
.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

/*===== WHATSAPP BUTTON =====*/
.button-whatsapp {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 10000;
  bottom: 40px;
  right: 40px;
  background-color: #0c54c6;
  border-radius: 50px;
  color: var(--back-color-white);
  font-size: 2.5rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgb(149 157 165 / 10%);
}

/*===== MEDIA QUERIES =====*/
@media screen and (max-width: 992px) {
  .hero .h1 {
    font-size: 1.8rem;
  }

  .hero .h2 {
    font-size: 1rem;
  }

  .services .grid-card {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  }
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 3rem 0 5rem 0;
  }

  .display-none {
    display: none;
  }

  .container-btn-movil {
    display: none;
  }

  .nav__option:first-child,
  .nav__option {
    padding: 0.7rem 2rem;
  }

  .hero .h1 {
    font-size: 1.5rem;
  }

  .hero .h2 {
    font-size: 1rem;
  }

  .nav__menu {
    position: fixed;
    left: 0;
    opacity: 0;
    top: 0;
    visibility: hidden;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    padding: 1.5rem 0;
    z-index: 3;
    transition: visibility 0.3s, opacity 0.3s;
    opacity: 0.95;
    display: flex;
    justify-content: center;
  }

  .nav__menu.show {
    visibility: visible;
    opacity: 1;
  }

  .nav__list {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
  }

  .nav__item {
    margin: 3rem 0 !important;
  }

  .nav__link {
    font-size: 1.3rem;
    font-weight: 600;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 0.8rem;
    text-align: center;
    z-index: 3;
  }

  .hamburger.show .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.show .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.show .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .footer .container {
    display: block;
  }

  .footer .contains-info {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .footer .sect {
    display: block;
  }

  .footer .contains-social-media ul {
    justify-content: start;
  }
}


/* Estilos base para la sección de contacto */
.contact {
  padding: 5rem 0;
  background-color: var(--back-color-white);
  font-family: var(--body-font);
}

.content-sections {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Estilos para los títulos */
.subtitle-section {
  text-align: center;
  margin-bottom: 2rem;
}

.subtitle-section .h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-alt);
  line-height: 1.2;
}

.span-color-primary {
  color: var(--primary-color);
}

/* Contenedor de información de contacto */
.content-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Tarjetas de contacto */
.container-email,
.container-phone {
  flex: 1 1 300px;
  max-width: 350px;
  background: var(--white-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.container-email:hover,
.container-phone:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.name {
  font-size: 1.1rem;
  color: var(--primary-color-alt);
  line-height: 1.6;
  margin: 0.3rem 0;
}

/* Estilos para el formulario */
.container-form {
  background: var(--white-color);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.form-box {
  width: 100%;
}

.input-container {
  position: relative;
  margin-bottom: 1.8rem;
}

.input {
  width: 100%;
  padding: 1.2rem;
  font-size: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
}

.input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(12, 84, 198, 0.1);
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.placeholder {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  color: #777;
  transition: all 0.3s ease;
  pointer-events: none;
  background: var(--white-color);
  padding: 0 0.5rem;
}

.input:focus + .placeholder,
.input:not(:placeholder-shown) + .placeholder {
  top: -0.6rem;
  left: 1rem;
  font-size: 0.85rem;
  color: var(--primary-color);
}

.group-input {
  display: flex;
  gap: 1.5rem;
}

.custom-width {
  flex: 1;
}

.content-button {
  text-align: center;
  margin-top: 1.5rem;
}

.submit {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit:hover {
  background-color: var(--primary-color-alt);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .content-contact {
      gap: 1.5rem;
  }
  
  .container-email,
  .container-phone {
      flex: 1 1 250px;
  }
}

@media (max-width: 768px) {
  .contact {
      padding: 3rem 0;
  }
  
  .container-section {
      gap: 2rem;
  }
  
  .subtitle-section .h2 {
      font-size: 2rem;
  }
  
  .container-form {
      padding: 2rem;
  }
  
  .group-input {
      flex-direction: column;
      gap: 1.8rem;
  }
}

@media (max-width: 480px) {
  .content-sections {
      padding: 0 1rem;
  }
  
  .container-email,
  .container-phone {
      flex: 1 1 100%;
      max-width: 100%;
  }
  
  .container-form {
      padding: 1.5rem;
  }
}

/* Estilos base para el formulario */
.container-form {
  background: var(--white-color);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  box-sizing: border-box; /* Esto evita que los elementos se salgan */
  width: 100%;
}

.form-box {
  width: 100%;
  box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
}

/* Contenedores de inputs */
.input-container {
  position: relative;
  margin-bottom: 1.8rem;
  width: 100%;
  box-sizing: border-box; /* Importante para contener los inputs */
}

.input {
  width: 100%;
  padding: 1.2rem;
  font-size: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Esto soluciona el problema principal */
}

.textarea {
  min-height: 150px;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

/* Grupo de inputs */
.group-input {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.custom-width {
  flex: 1;
  min-width: 0; /* Esto evita que los inputs se desborden en flex */
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .container-form {
      padding: 1.5rem;
  }
  
  .group-input {
      flex-direction: column;
      gap: 1.8rem;
  }
  
  .custom-width {
      width: 100%;
  }
}


/* Estilos base para la sección de pasos */
.steps {
  padding: 5rem 0;
  background-color: var(--white-color);
  font-family: var(--body-font);
}

.steps .content-sections {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.steps .container-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Encabezado */
.steps .description-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.steps .description-section .h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-alt);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.steps .description-section p {
  font-size: 1.2rem;
  color: #555;
}

/* Contenedor de tarjetas */
.steps .content-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Tarjetas individuales */
.steps .card {
  background: var(--white-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.steps .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Encabezado de tarjeta */
.steps .header-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

/* Número/icono */
.steps .icon-card {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Contenido de tarjeta */
.steps .content {
  flex: 1;
}

.steps .title-card .h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color-alt);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.steps .title-card .h1 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.steps .title-card .h1 a:hover {
  color: var(--primary-color-alt);
  text-decoration: underline;
}

.steps .title-card p {
  color: #555;
  line-height: 1.6;
}

/* Efecto reveal */
.steps .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.steps .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .steps .content-card {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .steps {
      padding: 3rem 0;
  }
  
  .steps .description-section .h1 {
      font-size: 2rem;
  }
  
  .steps .description-section p {
      font-size: 1.1rem;
  }
  
  .steps .card {
      padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .steps .content-sections {
      padding: 0 1rem;
  }
  
  .steps .header-card {
      flex-direction: column;
      gap: 1rem;
  }
  
  .steps .icon-card {
      margin: 0 auto;
  }
  
  .steps .title-card .h1,
  .steps .title-card p {
      text-align: center;
  }
  
  .steps .title-card .h1 {
      font-size: 1.3rem;
  }
}