/* Color Variables - Professional & Futuristic - Updated v2.0 */
:root {
  /* Colores principales */
  --primary-color: #0f172a;
  --primary-light: #1e293b;
  --primary-dark: #020617;

  /* Colores de acento - Cyan/Electric Blue */
  --accent-color: #06b6d4;
  --accent-light: #22d3ee;
  --accent-dark: #0891b2;

  /* Dorado solo para detalles */
  --gold-accent: #c9a870;

  /* Textos */
  --text-color: #0f172a;
  --text-light: #475569;
  --text-muted: #64748b;
  --text-white: #f8fafc;

  /* Fondos */
  --body-color: #f8fafc;
  --container-color: #ffffff;
  --dark-section: #0f172a;
  --glass-bg: rgba(255, 255, 255, 0.05);

  /* Sombras y efectos */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.15);
  --shadow-accent: 0 0 20px rgba(6, 182, 212, 0.3);
  --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.2);

  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  --gradient-shine: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
}

/* Base Styles */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.main {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

h1, h2, h3, h4 {
  color: var(--primary-color);
  font-weight: 700;
}

ul {
  list-style: none;
}

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

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

/* CSS Classes */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

/* Márgenes laterales aumentados para desktop */
@media screen and (min-width: 1025px) {
  .container {
    padding: 0 3rem;
  }

  .main {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  /* Hero is COMPLETELY ISOLATED - no need to compensate */
  .hero {
    /* Force absolute edge-to-edge at all breakpoints */
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
  }
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1300px;
    padding: 0 4rem;
  }

  .main {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  /* Hero is COMPLETELY ISOLATED - no need to compensate */
  .hero {
    /* Force absolute edge-to-edge at all breakpoints */
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
  }
}

@media screen and (min-width: 1800px) {
  .container {
    max-width: 1400px;
    padding: 0 5rem;
  }

  .main {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  /* Hero is COMPLETELY ISOLATED - no need to compensate */
  .hero {
    /* Force absolute edge-to-edge at all breakpoints */
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
  }
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding: 5rem 0 2rem;
}

.section__title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section__description {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #4a5568;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-shine);
  transition: left 0.5s ease;
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.button-secondary {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.button-secondary:hover {
  background: var(--accent-color);
  color: white;
}

.button-outline {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-color);
}

.button-outline:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.header.scroll-header {
  padding: 0.25rem 0;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.3);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(6, 182, 212, 0.2);
}

.header__geometric-bg {
  display: none;
}

.nav {
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: height 0.3s ease;
}

.scroll-header .nav {
  height: 3rem;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 3rem;
  width: auto;
  transition: height 0.3s ease;
}

.scroll-header .nav__logo-img {
  height: 3.5rem;
}

.nav__list {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav__item {
  opacity: 0;
  transform: translateY(-20px);
}

.nav__item:nth-child(1) { animation: slideInFromTop 0.5s ease 0.1s forwards; }
.nav__item:nth-child(2) { animation: slideInFromTop 0.5s ease 0.2s forwards; }
.nav__item:nth-child(3) { animation: slideInFromTop 0.5s ease 0.3s forwards; }
.nav__item:nth-child(4) { animation: slideInFromTop 0.5s ease 0.4s forwards; }
.nav__item:nth-child(5) { animation: slideInFromTop 0.5s ease 0.5s forwards; }

@keyframes slideInFromTop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav__link {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.nav__link:hover {
  color: var(--accent-light);
  transform: scale(1.05);
}

.nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav__link:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
  border-radius: 8px;
}

.nav__link.active-link {
  background: var(--accent-color);
  color: white;
  border-radius: 8px;
}

.nav__link.active-link::after {
  display: none;
}

.nav__link--cta {
  background: var(--gradient-accent);
  color: white;
  padding: 0.75rem 2rem;
  margin-left: 1rem;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
  font-weight: 700;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(198, 156, 109, 0.2);
  width: 45px;
  height: 45px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.nav__toggle:hover,
.nav__close:hover {
  background: rgba(198, 156, 109, 0.3);
  transform: scale(1.05);
}

/* Hero Section - COMPLETELY ISOLATED FOR EDGE-TO-EDGE */
.hero {
  /* Remove from normal document flow */
  position: relative;

  /* Force edge-to-edge using viewport width */
  width: 100vw;
  max-width: 100vw;

  /* Break out of any parent container padding/margins */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);

  /* Ensure no additional margins */
  left: 0;
  right: 0;

  /* Dimensions */
  padding-top: 8rem;
  padding-bottom: 0;
  min-height: 100vh;
  height: 100vh;

  /* Background */
  background-image: url('../fondo2.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;

  /* Layout */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  box-sizing: border-box;
}



@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero__container {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 4rem;
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

/* Hero container con márgenes para desktop */
@media screen and (min-width: 1025px) {
  .hero__container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media screen and (min-width: 1400px) {
  .hero__container {
    max-width: 1300px;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (min-width: 1800px) {
  .hero__container {
    max-width: 1400px;
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

.hero__title {
  font-size: 3.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8),
               0px 0px 12px rgba(0, 0, 0, 0.6),
               0px 4px 16px rgba(0, 0, 0, 0.7);
}

.hero__title-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  opacity: 0.3;
}

.hero__description {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
  font-weight: 400;
  max-width: 90%;
  color: white;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8),
               0px 0px 10px rgba(0, 0, 0, 0.6),
               0px 2px 12px rgba(0, 0, 0, 0.7);
}

.hero__button {
  font-size: 1.05rem;
  padding: 1.2rem 2.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.25);
  border-color: white;
  color: white;
}

.hero__button:hover {
    background-color: white;
    color: var(--primary-color);
}

.hero__images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero__orbe {
  width: 400px;
  height: 400px;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.08;
  animation: float-slow 8s ease-in-out infinite;
  filter: blur(80px);
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__icon {
  font-size: 8rem;
  color: var(--primary-color);
  animation: pulse 2s infinite;
}

.hero__illustration {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(6, 182, 212, 0.2));
  animation: float-slow 8s ease-in-out infinite;
}

.benefits__illustration {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(198, 156, 109, 0.3));
}

/* Stats Section */
.stats {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.5;
}

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

.stats__card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(6, 182, 212, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stats__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
  transition: left 0.6s ease;
}

.stats__card:hover::before {
  left: 100%;
}

.stats__card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.stats__icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.3));
}

.stats__number {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stats__text {
  color: var(--text-white);
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* Services Preview */
.services-preview {
  background: #ffffff;
  position: relative;
}

.services-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section__header {
  margin-bottom: 4rem;
  text-align: center;
}

.section__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-color);
  letter-spacing: -0.01em;
  text-align: center;
}

.section__description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Títulos alineados a la izquierda para secciones con layout de dos columnas */
.benefits__data .section__title,
.about__data .section__title,
.approach__data .section__title,
.contact__info .section__title,
.contact__form-container .section__title {
  text-align: left;
}

/* Descripciones alineadas a la izquierda para secciones con layout de dos columnas */
.benefits__data .section__description,
.about__data .section__description,
.approach__data .section__description {
  text-align: left;
  margin: 0;
}

.services__grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service__card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 1.25rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.service__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service__card:hover::before {
  transform: scaleX(1);
}

.service__card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.service__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.service__card:hover .service__icon {
  background: var(--gradient-accent);
  color: white;
  transform: rotateY(360deg);
  box-shadow: var(--shadow-accent);
}

.service__title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 700;
}

.service__description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.services__button-container {
  text-align: center;
  margin-top: 2rem;
}

/* Benefits Section */
.benefits__container {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 5rem;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.benefit__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--gradient-accent);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.benefit__item:hover::before {
  transform: scaleY(1);
}

.benefit__item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
  border-color: var(--accent-color);
}

.benefit__icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  min-width: 28px;
  transition: transform 0.3s ease;
}

.benefit__item:hover .benefit__icon {
  transform: scale(1.2);
}

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

.benefits__main-icon {
  font-size: 12rem;
  color: var(--primary-color);
  opacity: 0.1;
  animation: rotate 20s linear infinite;
}

/* CTA Section */
.cta {
  background: var(--gradient-primary);
  color: var(--text-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.5;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta__container {
  position: relative;
  z-index: 2;
}

.cta__title {
  font-size: 2.75rem;
  color: var(--text-white);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
}

.cta__description {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta__button {
  background: var(--accent-color);
  color: white;
  font-size: 1.1rem;
  padding: 1.3rem 3rem;
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.4);
}

.cta__button:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(6, 182, 212, 0.5);
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 2rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.5;
}

.footer::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 10s ease-in-out infinite;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  align-items: start;
}

.footer__data {
  animation: fadeInUp 0.6s ease-in-out;
}

.footer__links {
  animation: fadeInUp 0.6s ease-in-out 0.1s both;
}

.footer__contact {
  animation: fadeInUp 0.6s ease-in-out 0.2s both;
}

.footer__social {
  animation: fadeInUp 0.6s ease-in-out 0.3s both;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.footer__logo:hover {
  transform: translateX(5px);
}

.footer__logo i {
  font-size: 1.5rem;
  color: var(--accent-color);
  filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.3));
}

.footer__description {
  color: rgba(248, 250, 252, 0.7);
  line-height: 1.5;
  font-size: 0.85rem;
}

.footer__title {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--text-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer__links:hover .footer__title::after,
.footer__contact:hover .footer__title::after,
.footer__social:hover .footer__title::after {
  width: 60px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: rgba(248, 250, 252, 0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.8rem;
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer__link::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--accent-color);
}

.footer__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

.footer__link:hover {
  color: var(--accent-light);
  padding-left: 20px;
  transform: translateX(2px);
}

.footer__link:hover::before {
  left: 0;
  opacity: 1;
  animation: pulse-arrow 0.6s ease-in-out;
}

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

@keyframes pulse-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.footer__info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.85rem;
  line-height: 1.4;
  transition: all 0.3s ease;
  cursor: default;
}

.footer__info:hover {
  color: rgba(248, 250, 252, 0.9);
  transform: translateX(3px);
}

.footer__info i {
  color: var(--accent-color);
  margin-top: 0.15rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer__info:hover i {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.5));
}

.footer__social-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer__social-link {
  width: 32px;
  height: 32px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  position: relative;
  overflow: hidden;
}

.footer__social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer__social-link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.footer__social-link:hover::before {
  opacity: 1;
}

.footer__social-link:hover::after {
  width: 100%;
  height: 100%;
}

.footer__social-link:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
  border-color: var(--accent-light);
}

.footer__social-link i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.footer__social-link:hover i {
  color: white;
  transform: rotate(360deg) scale(1.1);
}

/* Footer responsive */
@media screen and (max-width: 992px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 1rem;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .footer__logo {
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0.65rem;
  }

  .footer__logo i {
    font-size: 1.4rem;
  }

  .footer__description {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .footer__title {
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
    padding-bottom: 0.45rem;
  }

  .footer__title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
  }

  .footer__list {
    gap: 0.4rem;
  }

  .footer__link {
    font-size: 0.75rem;
  }

  .footer__info {
    justify-content: center;
    font-size: 0.8rem;
    gap: 0.65rem;
  }

  .footer__info i {
    font-size: 0.95rem;
  }

  .footer__social-links {
    justify-content: center;
    gap: 0.65rem;
  }

  .footer__social-link {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 640px) {
  .footer {
    padding: 2rem 0 0.85rem;
  }

  .footer__content {
    gap: 1.75rem;
    margin-bottom: 1rem;
  }

  .footer__logo {
    font-size: 0.95rem;
  }

  .footer__description {
    font-size: 0.75rem;
  }

  .footer__title {
    font-size: 0.8rem;
  }

  .footer__social-link {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 1.75rem 0 0.75rem;
  }

  .footer__content {
    gap: 1.5rem;
  }

  .footer__logo {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .footer__logo i {
    font-size: 1.3rem;
  }

  .footer__description {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .footer__title {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .footer__link {
    font-size: 0.7rem;
  }

  .footer__info {
    font-size: 0.75rem;
  }

  .footer__social-link {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 350px) {
  .footer {
    padding: 1.5rem 0 0.65rem;
  }

  .footer__content {
    gap: 1.25rem;
  }

  .footer__logo {
    font-size: 0.85rem;
  }

  .footer__logo i {
    font-size: 1.2rem;
  }

  .footer__description {
    font-size: 0.65rem;
  }

  .footer__title {
    font-size: 0.7rem;
  }

  .footer__social-links {
    gap: 0.5rem;
  }

  .footer__social-link {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* Scroll Up */
.scrollup {
  position: fixed;
  left: 2rem;
  bottom: -20%;
  background: var(--gradient);
  color: var(--white-color);
  padding: 0.75rem;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 20px rgba(21, 48, 87, 0.3);
}

.scrollup:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(21, 48, 87, 0.4);
}

.scrollup__icon {
  font-size: 1.2rem;
}

.show-scroll {
  bottom: 2rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefits__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav {
    height: 4rem;
  }

  .section {
    padding: 3.5rem 0 2rem;
  }

  .hero__title {
    font-size: 1.95rem;
    padding: 0.75rem 1rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
  }

  .hero__description {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .hero__button {
    padding: 1rem 1.75rem;
    font-size: 0.95rem;
  }

  .section__title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .section__description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  /* En móvil, centrar todos los títulos cuando el layout se vuelve de una sola columna */
  .benefits__data .section__title,
  .about__data .section__title,
  .approach__data .section__title {
    text-align: center;
  }

  .benefits__data .section__description,
  .about__data .section__description,
  .approach__data .section__description {
    text-align: center;
    margin: 0 auto;
  }

  .contact__title,
  .contact__description {
    text-align: center;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service__card {
    padding: 2rem 1.5rem;
  }

  .service__icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .service__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .service__description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .stats__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .stats__card {
    padding: 1.75rem 1.25rem;
  }

  .stats__icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .stats__number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .stats__text {
    font-size: 0.8rem;
  }

  .benefit__item {
    padding: 1.25rem;
    font-size: 0.9rem;
  }

  .benefit__icon {
    font-size: 1.25rem;
  }

  .button {
    padding: 0.95rem 1.75rem;
    font-size: 0.9rem;
    min-height: 48px;
  }

  .cta__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .cta__description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .cta__button {
    padding: 1.15rem 2rem;
    font-size: 1rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .section {
    padding: 3rem 0 1.5rem;
  }

  .hero__title {
    font-size: 1.75rem;
    padding: 0.65rem 0.85rem;
  }

  .hero__description {
    font-size: 0.9rem;
    padding: 0.65rem 0.85rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .section__description {
    font-size: 0.9rem;
  }

  .stats__container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stats__card {
    padding: 1.5rem 1rem;
  }

  .service__card {
    padding: 1.75rem 1.25rem;
  }

  .benefit__item {
    padding: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2.5rem 0 1.5rem;
  }

  .hero__title {
    font-size: 1.6rem;
  }

  .section__title {
    font-size: 1.4rem;
  }

  .button {
    padding: 0.85rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* Page Hero Styles */
.page-hero {
  background: var(--gradient);
  color: var(--white-color);
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.page-hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white-color);
}

.page-hero__description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumb__link {
  color: var(--white-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: opacity 0.3s ease;
}

.breadcrumb__link:hover {
  opacity: 1;
}

.breadcrumb__separator {
  margin: 0 0.5rem;
}

.breadcrumb__current {
  font-weight: 500;
}

/* About Page Styles */
.about__content {
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text {
  margin-bottom: 2.5rem;
}

.about__text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #4a5568;
  font-size: 1.05rem;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature__item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(21, 48, 87, 0.03);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.feature__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: rgba(21, 48, 87, 0.05);
}

.feature__icon {
  font-size: 2rem;
  color: var(--secondary-color);
  min-width: 48px;
}

.feature__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.feature__description {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

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

.about__img-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__main-icon {
  font-size: 10rem;
  color: var(--primary-color);
  opacity: 0.1;
}

.about__decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.decoration {
  position: absolute;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.decoration-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.decoration-2 {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.decoration-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

/* Mission Vision Values */
.mvv__grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mvv__card {
  background: var(--container-color);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mvv__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.mvv__card.mission {
  border-color: var(--primary-color);
}

.mvv__card.vision {
  border-color: var(--secondary-color);
}

.mvv__card.values {
  border-color: var(--accent-color);
}

.mvv__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white-color);
}

.mvv__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.mvv__description {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
}

.values__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.value__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.value__item i {
  color: var(--secondary-color);
}

/* Why Choose Us */
.reasons__grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.reason__card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--container-color);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.reason__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.reason__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 156, 109, 0.1);
  border-radius: 50%;
}

.reason__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.reason__description {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Services Page Styles */
.services__detailed-grid {
  display: grid;
  gap: 3rem;
}

.service__detailed-card {
  background: var(--container-color);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 5px solid var(--secondary-color);
}

.service__detailed-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service__detailed-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service__detailed-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white-color);
}

.service__detailed-title {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.service__detailed-subtitle {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.service__detailed-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
}

.service__detailed-features {
  margin-bottom: 2rem;
}

.service__detailed-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.service__detailed-features i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.service__detailed-benefits h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.service__detailed-benefits ul {
  list-style: none;
}

.service__detailed-benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #4a5568;
}

.service__detailed-benefits li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Process Timeline */
.process__timeline {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline__item {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.timeline__number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  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;
}

.timeline__title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.timeline__description {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Additional Services */
.additional__grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.additional__card {
  background: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.additional__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.additional__icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.additional__title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.additional__description {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Sectors Page Styles */
.sectors__grid {
  display: grid;
  gap: 3rem;
}

.sector__card {
  background: var(--container-color);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 5px solid var(--secondary-color);
}

.sector__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.sector__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.sector__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white-color);
}

.sector__title {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.sector__subtitle {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.sector__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
}

.sector__services h4,
.sector__benefits h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.sector__services-list {
  margin-bottom: 2rem;
}

.sector__services-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.sector__services-list i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.sector__benefits ul {
  list-style: none;
}

.sector__benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #4a5568;
}

.sector__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Sector Stats */
.stats-by-sector {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-sector__card {
  background: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.stat-sector__card:hover {
  transform: translateY(-3px);
}

.stat-sector__icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.stat-sector__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-sector__text {
  color: #4a5568;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Specialized Approach */
.approach__container {
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach__description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.approach__benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach__benefit {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(21, 48, 87, 0.03);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.approach__benefit:hover {
  transform: translateX(5px);
  background: rgba(21, 48, 87, 0.05);
}

.approach__benefit-icon {
  font-size: 1.5rem;
  color: var(--secondary-color);
  min-width: 32px;
  margin-top: 0.25rem;
}

.approach__benefit-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.approach__benefit-content p {
  color: #4a5568;
  line-height: 1.6;
}

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

.approach__illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.approach__main-icon {
  font-size: 8rem;
  color: var(--primary-color);
  opacity: 0.1;
}

.approach__elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.element {
  position: absolute;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.2;
  animation: float 8s ease-in-out infinite;
}

.element-1 {
  width: 40px;
  height: 40px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  width: 30px;
  height: 30px;
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.element-3 {
  width: 50px;
  height: 50px;
  bottom: 25%;
  left: 20%;
  animation-delay: 4s;
}

.element-4 {
  width: 35px;
  height: 35px;
  bottom: 10%;
  right: 10%;
  animation-delay: 6s;
}

/* Success Cases */
.cases__grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.case__card {
  background: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary-color);
}

.case__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.case__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.case__icon {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.case__sector {
  background: rgba(198, 156, 109, 0.2);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.case__title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.case__description {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.case__results {
  display: flex;
  gap: 2rem;
}

.case__result {
  text-align: center;
}

.case__number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
}

.case__label {
  font-size: 0.8rem;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Page Styles */
.contact__container {
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-align: left;
}

.contact__description {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  text-align: left;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
}

.contact__item-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact__item-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact__item-text {
  color: #4a5568;
  line-height: 1.6;
}

/* Contact Social */
.contact__social-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact__social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--container-color);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-color);
}

.contact__social-link:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-hover);
}

.contact__social-link.facebook i {
  color: #1877f2;
}

.contact__social-link.linkedin i {
  color: #0077b5;
}

.contact__social-link.whatsapp i {
  color: #25d366;
}

/* Contact Form */
.contact__form-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact__form-description {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form__group {
  display: flex;
  gap: 1rem;
}

.form__group--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__field {
  position: relative;
  flex: 1;
}

.form__input {
  width: 100%;
  padding: 1.25rem 1rem 0.75rem 3rem;
  border: 2px solid #e1e5e9;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: var(--container-color);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form__input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(198, 156, 109, 0.1);
}

.form__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-light);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form__field.focused .form__label,
.form__field.filled .form__label {
  top: 0.25rem;
  font-size: 0.8rem;
  color: var(--secondary-color);
}

.form__input.form__textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 1.5rem;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
}

.form__checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form__checkbox input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--secondary-color);
}

.form__checkbox-label {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form__link {
  color: var(--secondary-color);
  text-decoration: none;
}

.form__link:hover {
  text-decoration: underline;
}

.form__button {
  margin-top: 1rem;
  justify-content: center;
  font-size: 1.1rem;
  padding: 1.25rem 2rem;
}

/* Form Validation Styles */
.form__field.error .form__input {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form__error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: block;
}

/* Quick Contact */
.quick-contact__options {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.quick-option {
  background: var(--container-color);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.quick-option:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.quick-option__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.whatsapp-option .quick-option__icon {
  color: #25d366;
}

.call-option .quick-option__icon {
  color: var(--primary-color);
}

.email-option .quick-option__icon {
  color: var(--secondary-color);
}

.quick-option__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.quick-option__description {
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.quick-option__button {
  width: 100%;
  justify-content: center;
}

/* FAQ Styles */
.faq__content {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: var(--container-color);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__header {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq__header:hover {
  background: rgba(21, 48, 87, 0.03);
}

.faq__question {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin: 0;
  padding-right: 1rem;
}

.faq__icon {
  color: var(--secondary-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer {
  padding: 0 2rem 2rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

/* Sector Approaches Section - Tabs */
.sector-approaches {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 0;
}

.approaches__tabs {
  margin-top: 3rem;
}

.approaches__tab-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.approach__tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.approach__tab-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.approach__tab-btn.active {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, rgba(198, 156, 109, 0.05), rgba(198, 156, 109, 0.1));
  box-shadow: 0 4px 12px rgba(198, 156, 109, 0.2);
}

.tab__badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
}

.approaches__tab-content {
  position: relative;
  min-height: 300px;
}

.approach__tab-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.approach__tab-panel.active {
  display: block;
}

.approach__content {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  max-width: 900px;
  margin: 0 auto;
}

.approach__content .approach__icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.approach__content .approach__icon-wrapper i {
  font-size: 2.5rem;
  color: white;
}

.approach__content-title {
  font-size: 1.75rem;
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.approach__text {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  text-align: center;
}

.approach__text p {
  margin-bottom: 1rem;
}

.approach__text p:last-child {
  margin-bottom: 0;
}

.approach__text strong {
  color: var(--primary-color);
  font-weight: 700;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive for Approaches Section */
@media screen and (max-width: 768px) {
  .approaches__tab-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .approach__tab-btn {
    min-width: 100%;
  }

  .approach__content {
    padding: 2rem 1.5rem;
  }

  .approach__content-title {
    font-size: 1.4rem;
  }

  .approach__text {
    font-size: 1rem;
  }

  .approach__content .approach__icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .approach__content .approach__icon-wrapper i {
    font-size: 2rem;
  }
}

@media screen and (max-width: 640px) {
  .approaches__tab-buttons {
    gap: 0.65rem;
  }

  .approach__tab-btn {
    padding: 1.05rem 1.5rem;
    min-width: 100%;
    font-size: 0.9rem;
  }

  .tab__badge {
    padding: 0.25rem 0.7rem;
    font-size: 0.7rem;
  }

  .tab__title {
    font-size: 0.9rem;
  }

  .approach__content {
    padding: 1.75rem 1.25rem;
  }

  .approach__content-title {
    font-size: 1.3rem;
  }

  .approach__text {
    font-size: 0.95rem;
  }

  .approach__content .approach__icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .approach__content .approach__icon-wrapper i {
    font-size: 1.85rem;
  }
}

@media screen and (max-width: 480px) {
  .approaches__tab-buttons {
    gap: 0.5rem;
  }

  .approach__tab-btn {
    padding: 0.95rem 1.25rem;
    font-size: 0.85rem;
  }

  .tab__badge {
    padding: 0.2rem 0.6rem;
    font-size: 0.65rem;
  }

  .tab__title {
    font-size: 0.85rem;
  }

  .approach__content {
    padding: 1.5rem 1rem;
  }

  .approach__content-title {
    font-size: 1.2rem;
  }

  .approach__text {
    font-size: 0.9rem;
  }

  .approach__content .approach__icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
  }

  .approach__content .approach__icon-wrapper i {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 350px) {
  .approach__tab-btn {
    padding: 0.85rem 1rem;
    font-size: 0.8rem;
  }

  .tab__badge {
    padding: 0.18rem 0.55rem;
    font-size: 0.6rem;
  }

  .tab__title {
    font-size: 0.8rem;
  }

  .approach__content {
    padding: 1.25rem 0.85rem;
  }

  .approach__content-title {
    font-size: 1.1rem;
  }

  .approach__text {
    font-size: 0.85rem;
  }

  .approach__content .approach__icon-wrapper {
    width: 45px;
    height: 45px;
    margin-bottom: 1.25rem;
  }

  .approach__content .approach__icon-wrapper i {
    font-size: 1.6rem;
  }
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--container-color);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-hover);
  padding: 1.5rem;
  min-width: 350px;
  z-index: 1000;
  transform: translateX(100%);
  transition: all 0.3s ease;
  border-left: 4px solid #10b981;
}

.notification--show {
  transform: translateX(0);
}

.notification--fade-out {
  transform: translateX(100%);
  opacity: 0;
}

.notification__content {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.notification__icon {
  font-size: 1.5rem;
  color: #10b981;
}

.notification__message h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.notification__message p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.notification__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
}

@media screen and (max-width: 350px) {
  .container {
    padding: 0 0.85rem;
  }

  .section {
    padding: 2rem 0 1.25rem;
  }

  .hero__title {
    font-size: 1.5rem;
    padding: 0.5rem 0.75rem;
  }

  .hero__description {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }

  .section__title {
    font-size: 1.3rem;
  }

  .section__description {
    font-size: 0.85rem;
  }

  .stats__container {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .stats__card {
    padding: 1.25rem 0.85rem;
  }

  .stats__icon {
    font-size: 2rem;
  }

  .stats__number {
    font-size: 2.25rem;
  }

  .service__card {
    padding: 1.5rem 1rem;
  }

  .service__icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .service__title {
    font-size: 1.15rem;
  }

  .benefit__item {
    padding: 0.85rem;
    font-size: 0.85rem;
  }

  .button {
    padding: 0.8rem 1.25rem;
    font-size: 0.8rem;
    min-height: 44px;
  }

  /* Mobile adjustments */
  .page-hero__title {
    font-size: 1.75rem;
    padding: 0.5rem;
  }

  .page-hero__description {
    font-size: 0.9rem;
  }

  .about__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mvv__grid {
    grid-template-columns: 1fr;
  }

  .mvv__card {
    padding: 2rem 1.5rem;
  }

  .reasons__grid {
    grid-template-columns: 1fr;
  }

  .reason__card {
    padding: 1.5rem;
  }

  .contact__container {
    grid-template-columns: 1fr;
  }

  .form__group--half {
    grid-template-columns: 1fr;
  }

  .form__input {
    padding: 1rem 0.85rem 0.65rem 2.5rem;
    font-size: 0.9rem;
  }

  .approach__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .timeline__item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .timeline__number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .notification {
    right: 0.75rem;
    left: 0.75rem;
    min-width: auto;
    padding: 1.25rem;
  }

  .scrollup {
    left: 0.85rem;
    bottom: 1.5rem;
    width: 45px;
    height: 45px;
  }

  .scrollup__icon {
    font-size: 1rem;
  }
}