:root {
    --primary: #0eb4b0;
    --secondary: #22ccaf;
    --dark: #1f2933;
    --gray: #6b7280;
    --light: #f5f7fa;
    --white: #ffffff;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
  
    background-image: url('../img/fondo.png');
    background-repeat: repeat;
    background-position: top center;
    background-size: cover;
  }
  
  
  /* ===== HEADER ===== */
  header {
    background: #e5e5e567;
    padding: 12px 40px;
    border-radius: 0 0 40px 40px;
    position: relative;
    z-index: 10;
  }
  
  .nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    position: relative;
    top: 40px; /* controla cuánto sobresale */
  }
  
  .logo img {
    width: 90px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
  }
  

  .menu {
    display: flex;
    gap: 24px;
    list-style: none;
  }
  
  .menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
  }
  
  .menu a:hover {
    color: var(--primary);
  }
  
  /* ===== HERO ===== */
  .hero {
    background: rgba(255, 255, 255, 0.596);
    border-radius: 24px;
    position: relative;
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
    border-radius: 24px;
    opacity: 0.25;
  }
  
  .hero img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  
  .hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .hero h1 span {
    color: var(--primary);
  }
  
  .hero p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 24px;
  }
  
  .hero .quote {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(14,180,176,0.4);
    transition: transform 0.3s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .menu {
        display: none;
      }
    .hero::after {
      display: none;
    }
  }
  
  @media (max-width: 600px) {
    header {
      padding: 16px 20px;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  }
  @media (max-width: 600px) {
    .logo {
      top: 10px;
    }
  
    .logo img {
      width: 56px;
    }
  }
  /* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .hamburger span {
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  /* ===== MENÚ MÓVIL ===== */
  @media (max-width: 900px) {
    .hamburger {
      display: flex;
    }
  
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
    /* ===== OFFCANVAS ===== */
.offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.247);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    padding: 100px 24px 24px;
    transition: right 0.35s ease;
    z-index: 999;
  }
  
  .offcanvas.active {
    right: 0;
  }
  
  .offcanvas-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .offcanvas-menu a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .offcanvas-menu a:hover {
    color: var(--primary);
  }
  
  /* Overlay oscuro */
  .offcanvas::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .offcanvas.active::before {
    opacity: 1;
    pointer-events: auto;
  }
  .offcanvas-close {
    position: absolute;
    top: 24px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark);
  }
  
  .offcanvas-close:hover {
    color: var(--primary);
  }
  /* ===== INFO CARD ===== */
.info-card {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px;
    border-radius: 32px;
    background: linear-gradient(
      135deg,
      rgba(14, 180, 176, 0.85),
      rgba(34, 204, 175, 0.85)
    );
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  }
  
  .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .info-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
  }
  
  .info-item p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .info-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  
    .info-card {
      padding: 36px 28px;
    }
  }
  /* ===== SERVICES PREVIEW ===== */
.services-preview {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 24px;
    text-align: center;
  }
  
  .services-preview h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
  }
  
  .services-intro {
    max-width: 700px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
    color: var(--gray);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 32px 28px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
  }
  
  .service-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(14,180,176,0.25);
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .services-preview h2 {
      font-size: 2rem;
    }
  }
  .services-cta {
    margin-top: 48px;
    text-align: center;
  }
    /* ===== COURSES PREVIEW ===== */
.courses-preview {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 24px;
  }
  
  .courses-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 32px;
    padding: 48px;
    position: relative;
    overflow: hidden;
  }
  
  /* Acento visual tipo mockup */
  .courses-content::before {
    content: "";
    position: absolute;
    left: -20%;
    top: 0;
    width: 60%;
    height: 100%;
    clip-path: polygon(0 0, 70% 0, 40% 100%, 0 100%);
    z-index: 0;
  }
  
  .courses-text {
    position: relative;
    z-index: 1;
  }
  
  .courses-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .courses-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .courses-image {
    position: relative;
    z-index: 1;
  }
  
  .courses-image img {
    width: 130%;
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .courses-content {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 36px 28px;
    }
  
    .courses-content::before {
      display: none;
    }
  
    .courses-text h2 {
      font-size: 2rem;
    }
  }
  /* ===== ADMIN SOLUTIONS ===== */
.admin-solutions {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 24px;
}

.admin-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 32px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

/* Acento visual */
.admin-content::after {
  content: "";
  position: absolute;
  right: -20%;
  top: 0;
  width: 60%;
  height: 100%;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.admin-text {
  position: relative;
  z-index: 1;
}

.admin-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.admin-text p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.admin-image {
  position: relative;
  z-index: 1;
}

.admin-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .admin-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 28px;
  }

  .admin-content::after {
    display: none;
  }

  .admin-text h2 {
    font-size: 2rem;
  }
}
/* ===== FINAL CTA ===== */
.final-cta {
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 0 24px 80px;
  text-align: center;
}

.final-content {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  padding: 56px 48px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.final-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.final-content p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.final-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 28px;
}

.final-sub {
  margin-bottom: 36px;
}

.final-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Botón secundario */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 16px;
  text-align: center;
}

.site-footer p {
  color: white;
  font-size: 0.9rem;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .final-content {
    padding: 40px 28px;
  }

  .final-content h2 {
    font-size: 1.8rem;
  }
}
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1500;
}

.offcanvas-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
body.no-scroll {
  overflow: hidden;
}
.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  z-index: 2000;
}

.offcanvas.active {
  transform: translateX(0);
  opacity: 1;
}
/* ===== CONTACT HERO ===== */
.contact-hero {
  max-width: 1200px;
  margin: 60px auto;
  min-height: calc(100vh - 160px);
  padding: 60px 40px;
  background: rgba(255,255,255,0.75);
  border-radius: 28px;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
  height: 100%;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.25;
}

/* Contenido */
.contact-content {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 36px;
}

/* Icono */
.contact-icon {
  margin: 10px auto;
}

.contact-icon img {
  width: 200px;
  height: auto;
}

/* Acciones */
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Botón secundario */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-hero {
    padding: 40px 24px;
  }

  .contact-hero::after {
    display: none;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }
}
/* ===== CONTACT INFO ===== */
.contact-info {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.contact-info h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

.contact-info h3 {
  margin: 48px 0 16px;
  font-size: 1.8rem;
  font-weight: 700;
}

/* Método de contacto */
.contact-method {
  margin-top: 24px;
}

.whatsapp-title {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #25d366;
  margin-bottom: 8px;
}

.whatsapp-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #25d366;
  text-decoration: none;
}

.whatsapp-link img {
  width: 60px;
  height: auto;
}

.whatsapp-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info h2 {
    font-size: 2rem;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }
}
/* ===== CONTACT FORM (DARK) ===== */
.contact-form-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-form-card.dark {
  max-width: 900px;
  margin: auto;
  padding: 56px 48px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    #0b6760 0%,
    #084f4a 50%,
    #021211 100%
  );
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  color: white;
}

.contact-form-card.dark h2 {
  font-size: 2.3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-card.dark p {
  text-align: center;
  color: #cbd5e1;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* Formulario */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Filas horizontales */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #e5e7eb;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border-radius: 14px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 0.95rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(14,180,176,0.35);
}

/* Botón */
.contact-form .btn {
  align-self: center;
  padding: 14px 48px;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form-card.dark {
    padding: 40px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card.dark h2 {
    font-size: 1.9rem;
  }
}
/* ===== CONTACT INFO (CARD) ===== */
.contact-info {
  padding: 60px 20px 30px;
}

.contact-info-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 50px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

/* Detalle diagonal */
.contact-info-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.25;
}

.contact-info-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Proceso */
.contact-process h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-process .intro {
  font-weight: 600;
  margin-bottom: 12px;
}

.process-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

.process-list li {
  margin-bottom: 10px;
}

.contact-process .note {
  font-style: italic;
  color: var(--gray);
}

/* Meta */
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.meta-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.meta-block span {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-info-card {
    padding: 40px 24px;
  }

  .contact-info-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-card::after {
    display: none;
  }
}
/* ===== CONTACT NOTICE ===== */
.contact-notice {
  padding: 60px 20px 30px;
}

.contact-notice-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 50px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  text-align: center;
}

.contact-notice h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.notice-intro {
  font-weight: 600;
  margin-bottom: 16px;
}

.notice-list {
  list-style: disc;
  max-width: 600px;
  margin: 0 auto 20px;
  text-align: left;
}

.notice-list li {
  margin-bottom: 10px;
}

/* CTA final */
.notice-cta h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.notice-cta p {
  margin-bottom: 28px;
}

.notice-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 700px) {
  .contact-notice-card {
    padding: 40px 24px;
  }

  .notice-list {
    padding-left: 18px;
  }
}
/* ===== SERVICE SECTIONS ===== */
.service-section {
  padding: 60px 20px;
}

.service-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 48px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.2;
}

.service-card h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
}

.service-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 24px;
}

.service-ideal {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.service-ideal strong {
  color: var(--dark);
}
.service-section:nth-child(even) .service-card {
  border-left: 6px solid var(--primary);
}

.service-section:nth-child(odd) .service-card {
  border-right: 6px solid var(--secondary);
}
/*---------------------------------------------------*/
.service-hero {
  max-width: 1200px;
  margin: 80px auto;
  padding: 80px 40px;
  background: rgba(255,255,255,0.75);
  border-radius: 28px;
  position: relative;
}

.service-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-hero h1 span {
  color: var(--primary);
}

.service-tag {
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}
.service-content {
  max-width: 900px;
  margin: 80px auto;
  font-size: 1.05rem;
  color: var(--gray);
}

.service-content p {
  margin-bottom: 24px;
}

.service-box {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  border-radius: 24px;
}

.service-includes {
  background: rgba(14,180,176,0.08);
}

.service-excludes {
  background: rgba(2,18,17,0.08);
}

.service-box h2 span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
}

.service-box ul {
  list-style: none;
  margin-top: 24px;
}

.service-box li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
}

.service-includes li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.service-excludes li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #b91c1c;
}
.service-final-cta {
  max-width: 1000px;
  margin: 100px auto 80px;
  padding: 64px 40px;
  text-align: center;

  background: linear-gradient(
    135deg,
    rgba(14,180,176,0.18),
    rgba(34,204,175,0.12)
  );

  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

/* Detalle decorativo sutil */
.service-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255,255,255,0.35),
    transparent 60%
  );
  pointer-events: none;
}

.service-final-cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
}

.service-final-cta p {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: var(--gray);
}

/* Ajuste fino al botón */
.service-final-cta .btn {
  font-size: 1rem;
  padding: 16px 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .service-final-cta {
    padding: 48px 24px;
  }

  .service-final-cta h2 {
    font-size: 1.8rem;
  }
}
/* ===== ABOUT / NUESTRA HISTORIA ===== */
.about-hero {
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

/* Forma diagonal decorativa */
.about-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
  );
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.25;
}

/* Contenido */
.about-hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

/* Línea decorativa bajo el título */
.about-divider {
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
  margin-bottom: 32px;
}

.about-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero {
    padding: 40px 24px;
  }

  .about-hero::after {
    display: none;
  }

  .about-hero h1 {
    font-size: 2rem;
  }
}
/* ===== ABOUT - PROCESO DE TRABAJO ===== */
.about-process {
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 40px;
  position: relative;
}
.about-process-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.about-process::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: rgba(179, 239, 230, 0.6);
  clip-path: polygon(0 0, 85% 0, 60% 100%, 0 100%);
  z-index: 0;
}

.about-process-content {
  max-width: 640px;
  margin-left: auto;
  margin-right: 0;
  padding-right: 40px;
  position: relative;
  z-index: 1;
}


.about-process h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-process p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 20px;
}

.about-process-icon {
  margin-top: 40px;
}

.about-process-image img {
  width: 100%;
  max-width: 380px;
  display: block;
}


@media (max-width: 900px) {
  .about-process-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-process-content {
    margin: 0 auto;
  }

  .about-process-image {
    justify-content: center;
  }
}
.about-commitment {
  padding: 100px 40px;
  position: relative;
}

.about-commitment-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-commitment-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 28px;
}

.about-commitment-text p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-commitment-image img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .about-commitment-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-commitment-image img {
    margin: 40px auto 0;
  }
}
.about-ethics {
  position: relative;
  padding: 100px 40px;
  overflow: hidden;
}

/* Fondo diagonal */
.about-ethics::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: var(--secondary);
  clip-path: polygon(0 0, 85% 0, 60% 100%, 0 100%);
  z-index: 0;
}

.about-ethics-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-ethics-image img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

.about-ethics-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 28px;
  position: relative;
}

.about-ethics-text h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: var(--primary);
  margin-top: 12px;
}

.about-ethics-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 16px;
}

.about-ethics-text ul {
  margin: 12px 0 16px 20px;
}

.about-ethics-text ul li {
  margin-bottom: 8px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .about-ethics::before {
    display: none;
  }

  .about-ethics-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-ethics-image img {
    margin: 0 auto 40px;
  }

  .about-ethics-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }
}
.about-who {
  position: relative;
  padding: 100px 40px;
  overflow: hidden;

  display: flex;
  justify-content: center; /* 👈 centra horizontalmente */
}


.about-who::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.25;
}

.about-who-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
  text-align: center; /* 👈 texto centrado */
}


.about-who h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: var(--dark);
  margin: 12px auto 0; /* 👈 centra la línea */
}


.about-who h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: var(--dark);
  margin-top: 12px;
}

.about-who p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
  max-width: 720px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-who {
    padding: 80px 24px;
  }

  .about-who::after {
    display: none;
  }

  .about-who h2 {
    font-size: 2rem;
  }
}
/* ===== GUIDES HERO ===== */
.guides-hero {
  max-width: 1200px;
  margin: 80px auto;
  padding: 80px 40px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.guides-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.25;
}

.guides-hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.guides-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.guides-hero p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 40px;
}

.guides-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .guides-hero {
    padding: 60px 24px;
    text-align: center;
  }

  .guides-hero::after {
    display: none;
  }

  .guides-hero-content {
    margin: auto;
  }

  .guides-actions {
    justify-content: center;
  }

  .guides-hero h1 {
    font-size: 2rem;
  }
}
.guides-info {
  position: relative;
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
}

.guides-info-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: #bff1ea;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.guides-info-content {
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  z-index: 2;
}

.guides-info h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.guides-info p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 700px;
}

.guides-info ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
}

.guides-info ul li {
  font-size: 16px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .guides-info {
    padding: 60px 20px;
  }

  .guides-info-bg {
    width: 100%;
    clip-path: none;
    height: 40%;
  }

  .guides-info-content {
    padding-left: 0;
  }
}
/*----------------------------carrusel--------------------------------------*/
.guides-carousel {
  padding: 40px 20px;
  text-align: center;
  background: #ffffff;
}

.guides-carousel h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.guides-subtitle {
  font-size: 16px;
  margin-bottom: 50px;
  color: #555;
}

.guide-card {
  background: #bff1ea;
  border-radius: 24px;
  padding: 30px 20px;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.guide-card img {
  width: 120px;
  margin-bottom: 20px;
}

.guide-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.guide-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.btn-outline {
  margin-top: auto;
  padding: 10px 24px;
  border: 2px solid #000;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}
.guidesSwiper .swiper-slide {
  height: auto;
  display: flex;
}

@media (max-width: 768px) {
  .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }
  }

  .guides-disclaimer {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
  }
  
  .guides-disclaimer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  .guides-disclaimer h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 12px;
  }
  
  .guides-disclaimer p {
    margin-bottom: 14px;
    line-height: 1.6;
  }
  
  .guides-disclaimer ul {
    margin: 12px 0 20px 20px;
  }
  
  .guides-disclaimer li {
    margin-bottom: 8px;
  }
  
  .guides-disclaimer .note {
    font-size: 0.95rem;
    opacity: 0.85;
  }
  
  .guides-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  /* Botones */
  .guides-cta-buttons .btn {
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
  }
  
  .guides-cta-buttons .btn.primary {
    background-color: #19c6b3;
    color: #000;
  }
  
  .guides-cta-buttons .btn.secondary {
    background-color: #19c6b3;
    color: #000;
  }
  @media (max-width: 768px) {
    .guides-disclaimer {
      margin: 60px auto;
      padding: 0 16px;
      text-align: left;
    }
  
    .guides-disclaimer h3 {
      font-size: 1.5rem;
    }
  
    .guides-disclaimer h4 {
      font-size: 1.4rem;
    }
  
    .guides-disclaimer p,
    .guides-disclaimer li {
      font-size: 0.95rem;
    }
  
    .guides-disclaimer ul {
      margin-left: 16px;
    }
  
    .guides-cta-buttons {
      flex-direction: column;
      gap: 14px;
      align-items: stretch;
    }
  
    .guides-cta-buttons .btn {
      width: 100%;
      padding: 14px 0;
    }
  }
/* ===== SOLUTIONS HERO ===== */
.solutions-hero {
  max-width: 1200px;
  margin: 80px auto;
  padding: 80px 40px;
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  overflow: hidden;
}

/* Diagonal decorativa */
.solutions-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.25;
}

.solutions-hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.solutions-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 28px;
}

.solutions-hero p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.solutions-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .solutions-hero {
    padding: 50px 24px;
  }

  .solutions-hero::after {
    display: none;
  }

  .solutions-hero h1 {
    font-size: 2rem;
  }

  .solutions-hero-content {
    text-align: center;
  }

  .solutions-actions {
    flex-direction: column;
    gap: 16px;
  }

  .solutions-actions .btn {
    width: 100%;
  }
}
/* ===== SOLUTIONS EXPLAIN ===== */
.solutions-explain {
  max-width: 1200px;
  margin: 80px auto;
  padding: 80px 40px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
  border-radius: 28px;
}

/* Diagonal izquierda */
.solutions-explain::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  clip-path: polygon(0 0, 70% 0, 30% 100%, 0 100%);
  opacity: 0.25;
}

.solutions-explain-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.solutions-explain h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.solutions-explain p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 22px;
}
    /* ===== SOLUTIONS FOR ===== */
.solutions-for {
  max-width: 1200px;
  margin: 80px auto;
  padding: 80px 40px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
  border-radius: 28px;
}

/* Diagonal derecha */
.solutions-for::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.25;
}

.solutions-for-content {
  position: relative;
  z-index: 1;
}

.solutions-for h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 48px;
}

.solutions-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.solutions-col h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.solutions-col ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.solutions-col li {
  margin-bottom: 10px;
  color: var(--gray);
}

.solutions-note {
  font-size: 0.95rem;
  color: var(--gray);
}
@media (max-width: 900px) {
  .solutions-for {
    padding: 50px 24px;
  }

  .solutions-for::after {
    display: none;
  }

  .solutions-columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .solutions-for h2 {
    font-size: 2rem;
  }
}
/* ===== QUE SÍ / QUE NO ===== */
.solutions-are {
  max-width: 1200px;
  margin: 80px auto;
  padding: 80px 40px;
  background: #ffffff;
  border-radius: 28px;
}

.solutions-are-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.solutions-are-col h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.solutions-are-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.solutions-are-col ul {
  list-style: disc;
  padding-left: 20px;
  flex-grow: 1;
}

.solutions-are-col li {
  margin-bottom: 12px;
  color: var(--gray);
}

/* Iconos */
.icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
}

.icon-circle.success {
  background: #2ecc71;
}

.icon-circle.danger {
  background: #ff3b3b;
}

/* Footer */
.solutions-are-footer {
  margin-top: 60px;
  text-align: center;
  font-style: italic;
  font-weight: 600;
}
@media (max-width: 900px) {
  .solutions-are {
    padding: 50px 24px;
  }

  .solutions-are-columns {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .icon-circle {
    width: 90px;
    height: 90px;
    font-size: 3rem;
  }

  .solutions-are-col h3 {
    text-align: center;
  }
}
/*----------------------------------------------------*/
.solutions-modular {
  position: relative;
  background: #ffffff;
  padding: 80px 20px;
  overflow: hidden;
}

.solutions-modular-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.solutions-modular h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.solutions-modular p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.modules-title {
  font-weight: 600;
  margin-top: 24px;
}

.solutions-modular ul {
  margin: 12px 0 20px 20px;
}

.solutions-modular li {
  margin-bottom: 8px;
}

.solutions-note {
  font-style: italic;
  margin-top: 20px;
}

/* Figura decorativa */
.solutions-modular-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: #bff1ea;
  clip-path: polygon(100% 0, 100% 100%, 0 70%);
  z-index: 1;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .solutions-modular {
    padding: 60px 20px;
  }

  .solutions-modular-bg {
    width: 100%;
    height: 180px;
    top: auto;
    bottom: 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
  }

  .solutions-modular-content {
    padding-bottom: 200px;
  }
}
/*---------------------------------------------------------------*/
.solutions-final {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.solutions-final-content {
  max-width: 700px;
  margin: 0 auto;
}

.solutions-final h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.solutions-final p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.solutions-final-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Botones */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #1cc7b6;
  color: #000;
}

.btn-primary:hover {
  background: #17b1a2;
}

.btn-secondary {
  background: #1cc7b6;
  color: #000;
}

.btn-secondary:hover {
  background: #17b1a2;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .solutions-final {
    padding: 60px 20px;
  }

  .solutions-final h2 {
    font-size: 1.6rem;
  }

  .solutions-final p {
    font-size: 0.95rem;
  }

  .solutions-final-actions {
    flex-direction: column;
    gap: 16px;
  }
}
.courses-hero {
  position: relative;
  background: #ffffff;
  padding: 90px 20px;
  overflow: hidden;
}

.courses-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.courses-hero-image {
  margin-bottom: 30px;
}

.courses-hero-image img {
  max-width: 260px;
  width: 100%;
  height: auto;
}

.courses-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.courses-hero p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
}

.courses-hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Figura decorativa */
.courses-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: #bff1ea;
  clip-path: polygon(100% 0, 100% 100%, 0 65%);
  z-index: 1;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .courses-hero {
    padding: 70px 20px;
  }

  .courses-hero h1 {
    font-size: 1.7rem;
  }

  .courses-hero p {
    font-size: 0.95rem;
  }

  .courses-hero-bg {
    width: 100%;
    height: 200px;
    top: auto;
    bottom: 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
  }

  .courses-hero-content {
    padding-bottom: 220px;
  }
}
/*------------------------------------------------------------------*/
.courses-clear {
  position: relative;
  background: #ffffff;
  padding: 90px 20px 70px;
  overflow: hidden;
}

.courses-clear-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.courses-clear h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.courses-clear p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto 16px;
}

.courses-clear-image {
  margin-top: 40px;
}

.courses-clear-image img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

/* Figura decorativa */
.courses-clear-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: #bff1ea;
  clip-path: polygon(0 0, 70% 0, 0 70%);
  z-index: 1;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .courses-clear {
    padding: 70px 20px 60px;
  }

  .courses-clear h2 {
    font-size: 1.6rem;
  }

  .courses-clear p {
    font-size: 0.95rem;
  }

  .courses-clear-bg {
    width: 100%;
    height: 220px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
}
/*-----------------------------------------------------------------------------*/
.courses-target {
  position: relative;
  background: #ffffff;
  padding: 90px 20px;
  overflow: hidden;
}

.courses-target-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.courses-target-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.courses-target-text ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.courses-target-text li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.courses-note {
  font-weight: 500;
}

/* Imagen */
.courses-target-image img {
  width: 220%;
  height: auto;
  border-radius: 4px;
}

/* Figura decorativa */
.courses-target-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: #bff1ea;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 70%);
  z-index: 1;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .courses-target-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .courses-target-text ul {
    margin-left: 0;
    padding-left: 0;
    list-style-position: inside;
  }

  .courses-target-bg {
    width: 100%;
    height: 220px;
    top: auto;
    bottom: 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
  }

  .courses-target {
    padding-bottom: 260px;
  }
  .courses-target-image {
    overflow: hidden;
    width: 100%;
  }
  .courses-target-image img {
    width: 130%;
    max-width: none;
    transform: translateX(-10%);
    border-radius: 0;
  }
}
/*--------------------------------------------------------------------------------*/
.courses-info {
  background: #ffffff;
  padding: 80px 20px;
}

.courses-info-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.courses-info-block h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.courses-info-block ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.courses-info-block li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.courses-note {
  font-size: 0.95rem;
  margin-top: 12px;
}

.courses-subtitle {
  font-weight: 600;
  margin: 20px 0 10px;
}
.courses-info-block {
  display: flex;
  flex-direction: column;
  height: 100%;
}


.dashed-line {
  margin-top: auto;
  border-top: 2px dashed #000;
  width: 100%;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .courses-info {
    padding: 60px 20px;
  }

  .courses-info-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dashed-line {
    margin-top: 24px;
  }
}
/*---------------------------------------------------------------------*/
.courses-clarity {
  padding: 80px 20px;
  background: #ffffff;
}

.clarity-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.clarity-block {
  text-align: left;
}

.clarity-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.clarity-block h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.clarity-block ul {
  padding-left: 20px;
}

.clarity-block li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.clarity-note {
  margin-top: 50px;
  text-align: center;
  font-style: italic;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .clarity-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .clarity-icon {
    font-size: 40px;
  }
}
/*---------------------------------------------------------------------*/
.courses-catalog {
  padding: 90px 20px;
  background: #f9f9f9;
}

.courses-header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.courses-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.courses-header p {
  font-size: 18px;
  color: #555;
}

.course-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.course-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-status {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.course-status.available {
  color: #1fbfa8;
}

.course-status.upcoming {
  color: #f0a500;
}

.course-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.course-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.course-btn {
  margin-top: auto;
  background: #1fbfa8;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.course-btn:hover {
  background: #17a893;
}

.course-btn.disabled {
  background: #ccc;
  cursor: not-allowed;
}
.courses-catalog .swiper-pagination {
  position: relative;
  margin-top: 35px;
}
/*---------------------------cierre--------------------------------------*/
.courses-closing {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.courses-closing-content {
  max-width: 720px;
  margin: 0 auto;
}

.courses-closing h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.courses-closing p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .courses-closing {
    padding: 60px 16px;
  }

  .courses-closing h2 {
    font-size: 1.6rem;
  }

  .courses-closing p {
    font-size: 1rem;
  }
}
