:root {
  /* ============================================
     COLORES 
     ============================================ */
  --white: #ffffff;
  --black: #000000;
  --blue-primary: #77b7db;
  --button-primary: #013c64;
  --bar-tittle-blue: #bbdaec;
  --section-tittle-primary: #013c64;
  --section-description: #1d1d1d;
  --section-tittle-secondary: #003b61;
  --form-background: #f5f5f3;
  --blue-white: #9db4c3;
  --background-secondary: #679fbe;
  --gray: #d1d5db;
  --color-primary: #1d5beb;
  --color-facebook: #1877f2;
  --color-linkedin: #0a66c2;
  --color-youtube: #ff0000;

  /* ============================================
     TAMAÑOS DE TEXTO 
     ============================================ */
  --text-hero-title: 3rem;
  --text-hero-subtitle: 1.5rem;
  --text-section-title: 2rem;
  --text-section-subtitle: 1.5rem;
  --text-body: 1rem;
  --text-small: 0.8rem;
  --text-tag: 1.5rem;
  --text-button: 1rem;
  --text-button-large: 1.5rem;

  /* ============================================
     ESPACIADOS
     ============================================ */
  --spacing-section: 80px 20px;
  --spacing-section-desktop: 80px 60px;
  --spacing-hero: 80px 20px 40px;
  --gap-large: 30px;
  --gap-medium: 20px;
  --gap-small: 10px;
  --padding-header: 16px 20px;
  --spacing-section-extra-page: 140px 20px;
}

/* ============================================
   RESET Y ESTRUCTURA BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

@keyframes desaparicionSuave {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes aparicionSuave {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SECCIÓN RUTA
   ============================================ */
section {
  scroll-margin-top: 84px;
}

#contacto {
  scroll-margin-top: 100px;
}

/* ============================================
   ANIMACIÓN POR SECCIÓN
   ============================================ */
.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--padding-header);
  background: transparent;
  width: 100%;
  overflow: hidden;
  transition: background 0.3s ease;
}

.header.scrolled {
  background: var(--button-primary);
}

.header-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============================================
   LOGO
   ============================================ */
.logo {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

/* ============================================
   MENÚ MOBILE - SLIDE DESDE DERECHA
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--button-primary);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 80px 20px 40px;
  box-sizing: border-box;
}

.nav.active {
  transform: translateX(0);
}

.nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-large);
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.nav-list a {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1.3px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-list .btn-primary {
  padding: 10px 32px;
  font-size: var(--text-button-large);
  border: 1px solid var(--white);
}

/* ============================================
   ICONO DE CIERRE (X) en el menú mobile
   ============================================ */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: all 0.3s ease;
  position: relative;
}

.menu-toggle.active i {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  height: 100vh;
  width: 100%;
  background-image: url("/img/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  padding: var(--spacing-hero);
  color: var(--white);
  position: relative;
  box-sizing: border-box;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  width: 100%;
  position: relative;
  max-width: 650px;
  margin: auto 0;
}

.hero h1 {
  font-family: "Martel", serif;
  font-weight: 700;
  font-size: var(--text-hero-title);
  line-height: 1.2;
  font-style: normal;
  margin-bottom: var(--gap-large);
  color: var(--blue-primary);
}

.hero p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--text-hero-subtitle);
  margin-bottom: var(--gap-large);
  line-height: 1.2;
}

.hero .btn-primary {
  font-size: var(--text-button-large);
}

/* ============================================
   BOTÓN PRIMARIO
   ============================================ */
.btn-primary {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--text-button);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border: none;
  background: var(--button-primary);
  color: var(--white);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.5s ease;
  text-decoration: none;
}

.btn-primary i {
  transition: transform 0.3s ease;
  font-size: var(--text-button-large);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--spacing-section);
  background: var(--background-secondary);
  display: flex;
  flex-direction: column;
  gap: var(--gap-small);
}

.services-header {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 40px;
}

.services-title {
  font-family: "Martel", serif;
  font-weight: 700;
  font-size: var(--text-section-title);
  color: var(--section-tittle-secondary);
  line-height: 1.5;
  max-width: 700px;
  position: relative;
  padding-left: var(--gap-large);
  margin: 0;
}

.services-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  width: 2px;
  height: calc(100% + 40px);
  background: linear-gradient(
    to bottom,
    var(--bar-tittle-blue) 0%,
    var(--bar-tittle-blue) 25%,
    var(--section-tittle-secondary) 25%,
    var(--section-tittle-secondary) 75%,
    var(--bar-tittle-blue) 75%,
    var(--bar-tittle-blue) 100%
  );
}

.services-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-large);
}

.service {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: var(--gap-small);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--gap-small);
}

.service-header h2 {
  font-family: "Martel", serif;
  font-weight: 700;
  font-size: var(--text-section-subtitle);
  color: var(--section-tittle-secondary);
}

.service-header i {
  font-size: var(--text-section-subtitle);
  color: var(--section-tittle-secondary);
  display: block;
}

.service p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--section-description);
  margin: 0px 5px;
  line-height: 1.2;
  font-size: var(--text-body);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: var(--spacing-section);
  background: var(--white);
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-large);
  overflow: hidden;
}

.features-title {
  font-family: "Martel", serif;
  font-weight: 700;
  font-size: var(--text-section-title);
  color: var(--section-tittle-primary);
  line-height: 1.5;
  max-width: 1200px;
  position: relative;
  padding-left: var(--gap-large);
  margin-bottom: 60px;
}

.features-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  width: 2px;
  height: calc(100% + 40px);
  background: linear-gradient(
    to bottom,
    var(--bar-tittle-blue) 0%,
    var(--bar-tittle-blue) 25%,
    var(--section-tittle-primary) 25%,
    var(--section-tittle-primary) 75%,
    var(--bar-tittle-blue) 75%,
    var(--bar-tittle-blue) 100%
  );
}

.features-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.features-tag {
  font-family: "Martel", serif;
  font-weight: 700;
  display: inline-block;
  font-size: var(--text-tag);
  color: var(--button-primary);
  margin-bottom: var(--gap-medium);
}

.features-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--text-body);
  color: var(--section-description);
  line-height: 1.2;
  margin-bottom: var(--gap-medium);
}

.features-text .btn-primary {
  padding: 10px 24px;
  font-size: var(--text-body);
  margin-bottom: var(--gap-large);
}

.features-text .btn-primary i {
  font-size: var(--text-body);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: var(--gap-large);
}

.features-list::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 15px;
  width: 2px;
  height: 75%;
  background: var(--bar-tittle-blue);
}

.features-list::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 15px;
  width: 10px;
  height: 10px;
  background: var(--blue-primary);
  border-radius: 50%;
}

.features-list li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--text-body);
  color: var(--section-description);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.features-list li:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--blue-primary);
  border-radius: 50%;
}

.features-list li:nth-child(3)::before {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 15px;
  width: 10px;
  height: 10px;
  background: var(--blue-primary);
  border-radius: 50%;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  width: 100%;
  padding: var(--spacing-section);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.75) 50%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    url("/img/about.webp");
}

.about-title {
  font-family: "Martel", serif;
  font-weight: 700;
  font-size: var(--text-section-title);
  color: var(--blue-primary);
  line-height: 1.5;
  max-width: 1200px;
  position: relative;
  padding-left: var(--gap-large);
  margin-bottom: 60px;
}

.about-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  width: 2px;
  height: calc(100% + 40px);
  background: linear-gradient(
    to bottom,
    var(--bar-tittle-blue) 0%,
    var(--bar-tittle-blue) 25%,
    var(--blue-primary) 25%,
    var(--blue-primary) 75%,
    var(--bar-tittle-blue) 75%,
    var(--bar-tittle-blue) 100%
  );
}

.about-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--text-body);
  color: var(--white);
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: var(--gap-medium);
}

.about-text:last-of-type {
  margin-bottom: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--spacing-section);
  background: var(--background-secondary);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-medium);
}

.faq-block {
  flex: 1;
}

.faq-title {
  font-family: "Martel", serif;
  font-weight: 700;
  font-size: var(--text-section-title);
  color: var(--section-tittle-secondary);
  line-height: 1.5;
  max-width: 1200px;
  position: relative;
  padding-left: var(--gap-large);
  margin-bottom: 60px;
}

.faq-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  width: 2px;
  height: calc(100% + 40px);
  background: linear-gradient(
    to bottom,
    var(--bar-tittle-blue) 0%,
    var(--bar-tittle-blue) 25%,
    var(--section-tittle-secondary) 25%,
    var(--section-tittle-secondary) 75%,
    var(--bar-tittle-blue) 75%,
    var(--bar-tittle-blue) 100%
  );
}

/* ============================================
   ACORDEÓN
   ============================================ */
.accordion-wrapper {
  display: flex;
  gap: var(--gap-medium);
  align-items: stretch;
  height: auto;
}

.accordion-bar {
  display: none;
}

.accordion-item {
  background-color: var(--button-primary);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--white);
  overflow: hidden;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 16px 20px;
  font-family: "Inter", sans-serif;
  font-size: var(--text-body);
  font-weight: 400;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.accordion-header span {
  flex: 1;
}

.accordion-header i {
  font-size: var(--text-body);
  color: var(--white);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-item.active {
  background: var(--white);
  border-color: var(--button-primary);
  box-shadow: 0 4px 20px rgba(29, 91, 235, 0.08);
}

.accordion-item.active .accordion-header {
  color: var(--button-primary);
}

.accordion-item.active .accordion-header i {
  color: var(--button-primary);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body p {
  font-family: "Inter", sans-serif;
  font-size: var(--text-body);
  color: var(--black);
  line-height: 1.2;
  padding: 0 20px 20px 20px;
  margin: 0;
}

/* ============================================
   FORM
   ============================================ */
.faq-form {
  padding: var(--gap-medium);
  border-radius: 10px;
  background-color: var(--form-background);
  flex: 1;
  max-width: 100%;
}

.faq-form h3 {
  font-family: "Martel", serif;
  font-weight: 700;
  font-size: var(--text-section-subtitle);
  line-height: 1.5;
  color: var(--section-tittle-primary);
  margin-bottom: 12px;
}

.faq-form > p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--text-body);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: var(--gap-large);
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: "Inter", sans-serif;
  font-size: var(--text-body);
  border: 1px solid var(--gray);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.faq-form .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  padding: var(--gap-large) var(--gap-medium);
  height: 390px;
  background-color: var(--button-primary);
  width: 100%;
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  padding-bottom: var(--gap-large);
}

.footer-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--bar-tittle-blue) 30%,
    var(--bar-tittle-blue) 70%,
    transparent
  );
  opacity: 0.3;
}

.footer-logo {
  font-weight: 600;
  font-size: var(--text-section-subtitle);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--gap-small);
}

.footer-nav a {
  font-size: var(--text-body);
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.footer-contact-nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-contact i {
  margin-right: 5px;
  font-size: var(--text-body);
  color: var(--white);
}

.footer-contact-nav a {
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.footer-copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 16px;
  text-align: center;
}

.footer-copyright p {
  color: var(--gray);
  font-size: var(--text-small);
}

/* ============================================
   PÁGINA LEGAL
   ============================================ */
.legal-page {
  font-family: "Martel", serif;
  font-weight: 700;
  padding: var(--spacing-section-extra-page);
  background: var(--white);
  min-height: 80vh;
}

.legal-container {
  margin: 0 auto;
}

.legal-title {
  font-size: var(--text-section-title);
  color: var(--section-tittle-secondary);
  line-height: 1.5;
  max-width: 700px;
  position: relative;
  padding-left: var(--gap-large);
  margin: 0;
}

.legal-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  width: 2px;
  height: calc(100% + 40px);
  background: linear-gradient(
    to bottom,
    var(--bar-tittle-blue) 0%,
    var(--bar-tittle-blue) 25%,
    var(--section-tittle-secondary) 25%,
    var(--section-tittle-secondary) 75%,
    var(--bar-tittle-blue) 75%,
    var(--bar-tittle-blue) 100%
  );
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--section-tittle-secondary);
  margin-top: 30px;
  margin-bottom: 30px;
}

.legal-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--section-description);
  line-height: 1.5;
  margin-bottom: 15px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.legal-content ul li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--section-description);
  line-height: 1.5;
  margin-bottom: 8px;
}

.legal-date {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--gray);
  font-size: 1rem;
  color: var(--gray);
}

/* ============================================
   TABLET (768px en adelante)
   ============================================ */
@media (min-width: 768px) {
  :root {
    --text-hero-title: 4rem;
    --text-section-title: 3rem;
    --text-section-subtitle: 2rem;
    --text-tag: 2rem;
    --text-body: 1.5rem;
    --text-button-large: 2.5rem;
    --text-small: 1.3rem;
    --spacing-section: 100px 40px;
    --spacing-hero: 120px 60px 60px;
    --padding-header: 20px 40px;
    --gap-large: 40px;
    --spacing-section-extra-page: 160px 40px;
  }

  .header {
    padding: var(--padding-header);
  }
  .logo {
    font-size: 2rem;
  }

  .menu-toggle {
    font-size: 2.5rem;
  }
  .nav-list a {
    font-size: 2.5rem;
  }

  .nav-list .btn-primary {
    font-size: 2.5rem;
  }

  .hero {
    padding: var(--spacing-hero);
  }

  .hero .btn-primary {
    padding: 15px 32px;
  }

  .services {
    padding: var(--spacing-section);
  }

  .service-header h2 {
    font-size: var(--text-section-subtitle);
  }

  .service-header i {
    font-size: var(--text-section-subtitle);
  }

  .service p {
    font-size: var(--text-body);
  }

  .features {
    padding: var(--spacing-section);
  }

  .features-tag {
    font-size: var(--text-tag);
  }

  .features-description {
    font-size: var(--text-body);
  }

  .features-text .btn-primary {
    font-size: var(--text-body);
  }

  .features-list li {
    font-size: var(--text-body);
  }

  .about {
    padding: var(--spacing-section);
  }

  .about-title {
    font-size: var(--text-section-title);
  }

  .about-text {
    font-size: var(--text-body);
  }

  .faq {
    padding: var(--spacing-section);
  }

  .faq-title {
    font-size: var(--text-section-title);
  }

  .accordion-header {
    font-size: var(--text-body);
  }

  .faq-form h3 {
    font-size: var(--text-section-subtitle);
  }

  .faq-form > p {
    font-size: var(--text-body);
  }

  .form-group input,
  .form-group textarea,
  .faq-form .btn-primary {
    font-size: var(--text-body);
  }

  .footer {
    height: 485px;
    padding: 50px 40px;
  }

  .footer-logo {
    font-size: var(--text-section-subtitle);
  }

  .footer-nav a {
    font-size: var(--text-body);
  }

  .footer-contact i {
    font-size: var(--text-body);
  }

  .footer-contact-nav a {
    font-size: var(--text-body);
  }

  .footer-copyright p {
    font-size: var(--text-small);
  }

  .legal-page {
    padding: var(--spacing-section-extra-page);
  }

  .legal-title {
    font-size: var(--text-section-title);
  }

  .legal-content h2 {
    font-size: var(--text-tag);
  }
}

/* ============================================
   ESCRITORIO (1024px en adelante)
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --text-hero-title: 3rem;
    --text-hero-subtitle: 1.5rem;
    --text-section-title: 2.2rem;
    --text-section-subtitle: 1.3rem;
    --text-body: 1rem;
    --text-small: 0.8rem;
    --text-tag: 1.5rem;
    --text-button: 1rem;
    --text-button-large: 1.2rem;
    --spacing-section: 80px 60px;
    --spacing-hero: 150px 60px 80px;
    --padding-header: 15px 60px;
    --gap-large: 40px;
    --gap-medium: 20px;
    --gap-small: 10px;
    --spacing-section-extra-page: 120px 60px;
  }

  section {
    scroll-margin-top: 65px;
  }

  .header {
    padding: var(--padding-header);
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    transform: none !important;
    transition: none;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: auto;
  }

  .nav-list {
    flex-direction: row;
    gap: var(--gap-large);
  }

  .nav-list a {
    font-size: var(--text-body);
  }

  .nav-list a:not(.btn-primary):hover {
    color: var(--blue-primary);
  }

  .nav-list .btn-primary {
    padding: 8px 20px;
    font-size: var(--text-button);
    border: 1px solid transparent;
  }

  .btn-primary i {
    font-size: var(--text-button);
  }

  .btn-primary:hover {
    background: var(--blue-primary) !important;
    color: var(--white);
    transform: scale(1.05) !important;
  }

  .btn-primary:hover i {
    transform: translateX(5px);
  }

  .header.scrolled .btn-primary {
    border-color: var(--white);
  }

  .hero {
    padding: var(--spacing-hero);
  }

  .hero-content {
    max-width: 750px;
  }

  .hero h1 {
    font-size: var(--text-hero-title);
  }

  .hero p {
    font-size: var(--text-hero-subtitle);
  }

  .hero .btn-primary {
    padding: 10px 30px;
    font-size: var(--text-button-large);
  }

  .logo {
    font-size: 1.3rem;
  }

  .nav-list {
    gap: 40px;
  }

  .nav-list a {
    font-size: var(--text-body);
  }

  .services {
    padding: var(--spacing-section);
  }

  .services-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .services-title {
    font-size: var(--text-section-title);
  }

  .services-image {
    flex: 0.8;
    overflow: hidden;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .service {
    padding: 30px 45px;
    gap: 16px;
    position: relative;
  }

  .service-header {
    gap: 12px;
  }

  .service-header h2 {
    font-size: var(--text-section-subtitle);
  }

  .service p {
    font-size: var(--text-body);
  }

  .service:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 70%;
    background: var(--bar-tittle-blue);
  }

  .features {
    padding: var(--spacing-section);
  }

  .features-title {
    font-size: var(--text-section-title);
  }

  .features-container {
    flex-direction: row;
    gap: 80px;
  }

  .features-image {
    flex: 1;
  }

  .features-text {
    flex: 1;
  }

  .features-tag {
    font-size: var(--text-tag);
  }

  .features-description {
    font-size: 1.3rem;
  }

  .features-text .btn-primary {
    font-size: var(--text-button);
  }

  .features-list li {
    font-size: 1.3rem;
  }

  .about {
    padding: var(--spacing-section);
    background-image:
      linear-gradient(
        to right,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.85) 35%,
        rgba(0, 0, 0, 0.75) 60%,
        transparent 100%
      ),
      url("/img/about.webp");
  }

  .about-title {
    font-size: var(--text-section-title);
  }

  .about-text {
    font-size: 1.2rem;
  }

  .faq {
    padding: var(--spacing-section);
  }

  .faq-title {
    font-size: var(--text-section-title);
  }

  .faq-container {
    flex-direction: row;
    gap: 80px;
  }

  .accordion-bar {
    display: block;
    width: 2px;
    background: var(--bar-tittle-blue);
    position: relative;
    flex-shrink: 0;
    margin: 0;
  }

  .accordion-bar .dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--button-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .accordion-bar .dot:nth-child(1) {
    top: 8%;
  }

  .accordion-bar .dot:nth-child(2) {
    top: 35%;
  }

  .accordion-bar .dot:nth-child(3) {
    top: 62%;
  }

  .accordion-bar .dot:nth-child(4) {
    bottom: 8%;
    top: auto;
  }

  .faq-accordion {
    flex: 1;
  }

  .accordion-wrapper {
    height: 260px;
  }

  .faq-form {
    flex: 1;
  }

  .accordion-header {
    font-size: var(--text-body);
  }

  .accordion-item:not(.active):hover {
    background-color: var(--blue-primary);
  }

  .faq-form h3 {
    font-size: var(--text-section-subtitle);
  }

  .faq-form .btn-primary {
    padding: 10px 24px;
    font-size: var(--text-button);
  }

  .faq-form > p {
    font-size: var(--text-body);
  }

  .form-group input,
  .form-group textarea {
    font-size: var(--text-body);
  }

  .faq-form textarea {
    min-height: 60px;
    max-height: 150px;
    resize: vertical;
  }

  .footer {
    height: 300px;
    padding: 40px 60px;
  }

  .footer-logo {
    font-size: var(--text-section-subtitle);
  }

  .footer-social {
    gap: 10px;
  }

  .footer-social a {
    width: 2rem;
    height: 2rem;
  }

  .footer-social a:hover .fa-facebook-f {
    color: var(--color-facebook);
  }

  .footer-social a:hover .fa-linkedin-in {
    color: var(--color-linkedin);
  }

  .footer-social a:hover .fa-youtube {
    color: var(--color-youtube);
  }

  .footer-container {
    flex-direction: row;
  }

  .footer-nav {
    flex-direction: row;
    gap: 5px;
  }

  .footer-contact-nav {
    gap: 10px;
  }

  .footer-social a,
  .footer-nav a,
  .footer-contact-nav a,
  .footer-contact i {
    font-size: var(--text-body);
  }

  .footer-copyright p {
    font-size: var(--text-small);
  }

  .footer-nav a:not(:last-child)::after {
    content: "•";
    margin-left: 5px;
    color: var(--gray);
  }

  .footer-nav a:hover,
  .footer-contact-nav a:hover,
  .footer-contact-nav i:hover {
    color: var(--blue-primary);
  }

  .legal-page {
    padding: var(--spacing-section-extra-page);
  }

  .legal-title {
    font-size: var(--text-section-title);
  }

  .legal-content h2 {
    font-size: var(--text-tag);
  }
}
