    :root {
      --turquesa: #E4D3E6;
      --magenta: #dc3d54;
      --violeta: #653b65;
      --violeta-dark: #4a2a4a;
      --violeta-light: #8a5c8a;
      --cream: #faf7fb;
      --white: #ffffff;
      --dark: #1a0f1a;
      --gray-600: #6b5a6b;
      --gray-400: #a594a5;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--dark);
      background: var(--cream);
      overflow-x: hidden;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

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

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes slideRight {
      from {
        opacity: 0;
        transform: translateX(-60px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    @keyframes gradientShift {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    @keyframes countUp {
      from {
        opacity: 0;
        transform: scale(0.5);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 16px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(250, 247, 251, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(101, 59, 101, 0.08);
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 10px 40px;
      box-shadow: 0 4px 30px rgba(101, 59, 101, 0.1);
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 1.3rem;
      color: var(--violeta);
      text-decoration: none;
    }

    .nav-brand span {
      color: var(--magenta);
    }

    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--violeta);
      font-weight: 500;
      font-size: 0.9rem;
      transition: color 0.3s;
      letter-spacing: 0.02em;
    }

    .nav-links a:hover {
      color: var(--magenta);
    }

    .nav-cta {
      background: var(--magenta) !important;
      color: white !important;
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 600 !important;
      transition: all 0.3s !important;
    }

    .nav-cta:hover {
      background: var(--violeta) !important;
      transform: translateY(-2px);
    }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 120px 40px 80px;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(220, 61, 84, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 8s ease-in-out infinite;
      will-change: transform;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -20%;
      left: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(101, 59, 101, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 10s ease-in-out infinite reverse;
      will-change: transform;
    }

    .hero-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--turquesa);
      color: var(--violeta);
      padding: 8px 20px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.85rem;
      margin-bottom: 24px;
      animation: fadeUp 0.6s ease both;
      letter-spacing: 0.03em;
    }

    .hero-badge::before {
      content: '🇩🇪';
      font-size: 1.1rem;
    }

    .hero h1 {
      font-family: 'Outfit', sans-serif;
      font-size: 3.8rem;
      font-weight: 900;
      line-height: 1.05;
      color: var(--violeta-dark);
      margin-bottom: 20px;
      animation: fadeUp 0.6s ease 0.15s both;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--magenta);
      position: relative;
    }

    .hero h1 em::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 0;
      right: 0;
      height: 6px;
      background: rgba(220, 61, 84, 0.2);
      border-radius: 3px;
    }

    .hero-sub {
      font-size: 1.15rem;
      color: var(--gray-600);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 520px;
      animation: fadeUp 0.6s ease 0.3s both;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeUp 0.6s ease 0.45s both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--magenta);
      color: white;
      padding: 16px 36px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 8px 30px rgba(220, 61, 84, 0.3);
      letter-spacing: 0.02em;
    }

    .btn-primary:hover {
      background: var(--violeta);
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(101, 59, 101, 0.35);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--violeta);
      padding: 16px 36px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      border: 2px solid var(--violeta);
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      background: var(--violeta);
      color: white;
      transform: translateY(-3px);
    }

    /* Hero visual */
    .hero-visual {
      position: relative;
      animation: fadeIn 1s ease 0.4s both;
    }

    .hero-card {
      background: white;
      border-radius: 28px;
      padding: 44px;
      box-shadow: 0 20px 60px rgba(101, 59, 101, 0.12);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--magenta), var(--violeta), var(--magenta));
      background-size: 200% 100%;
      animation: gradientShift 3s ease infinite;
    }

    .hero-card-header {
      text-align: center;
      margin-bottom: 28px;
    }

    .hero-card-header h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--violeta-dark);
    }

    .hero-card-header p {
      color: var(--gray-600);
      font-size: 0.9rem;
      margin-top: 6px;
    }

    .price-display {
      text-align: center;
      margin-bottom: 28px;
    }

    .price-original {
      font-size: 1.2rem;
      color: var(--gray-400);
      text-decoration: line-through;
    }

    .price-new {
      font-family: 'Outfit', sans-serif;
      font-size: 3.2rem;
      font-weight: 900;
      color: var(--magenta);
      display: block;
      line-height: 1.1;
    }

    .price-detail {
      font-size: 0.85rem;
      color: var(--gray-600);
      margin-top: 4px;
    }

    .discount-badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--violeta), var(--magenta));
      color: white;
      padding: 6px 18px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-top: 8px;
      letter-spacing: 0.05em;
    }

    .hero-features {
      list-style: none;
      margin-bottom: 28px;
    }

    .hero-features li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      font-size: 0.95rem;
      color: var(--violeta-dark);
      border-bottom: 1px solid rgba(101, 59, 101, 0.06);
    }

    .hero-features li:last-child {
      border-bottom: none;
    }

    .hero-features li .check {
      width: 24px;
      height: 24px;
      background: var(--turquesa);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: var(--violeta);
      flex-shrink: 0;
      font-weight: 700;
    }

    .floating-stat {
      position: absolute;
      background: white;
      padding: 14px 22px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(101, 59, 101, 0.15);
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--violeta-dark);
      animation: float 5s ease-in-out infinite;
      z-index: 3;
      will-change: transform;
    }

    .floating-stat.top-right {
      top: -20px;
      right: -30px;
      animation-delay: 0.5s;
    }

    .floating-stat.bottom-left {
      bottom: -15px;
      left: -25px;
      animation-delay: 1.5s;
    }

    .floating-stat .emoji {
      font-size: 1.3rem;
      margin-right: 6px;
    }

    /* ===== STATS BAR ===== */
    .stats-bar {
      background: var(--violeta);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
    }

    .stats-bar::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(90deg,
          transparent,
          transparent 100px,
          rgba(255, 255, 255, 0.02) 100px,
          rgba(255, 255, 255, 0.02) 101px);
    }

    .stats-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      position: relative;
      z-index: 2;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-family: 'Outfit', sans-serif;
      font-size: 2.8rem;
      font-weight: 900;
      color: white;
      line-height: 1;
    }

    .stat-number span {
      color: var(--magenta);
    }

    .stat-label {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      margin-top: 8px;
      font-weight: 500;
    }

    /* ===== SECTION SHARED ===== */
    .section {
      padding: 100px 40px;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .section-tag {
      display: inline-block;
      background: var(--turquesa);
      color: var(--violeta);
      padding: 6px 18px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .section-header h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--violeta-dark);
      line-height: 1.15;
    }

    .section-header h2 em {
      font-style: normal;
      color: var(--magenta);
    }

    .section-header p {
      color: var(--gray-600);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-top: 16px;
    }

    /* ===== QUÉ INCLUYE ===== */
    .includes-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .include-card {
      background: white;
      border-radius: 20px;
      padding: 36px;
      transition: all 0.4s ease;
      border: 1px solid rgba(101, 59, 101, 0.06);
      position: relative;
      overflow: hidden;
    }

    .include-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--magenta);
      transform: scaleX(0);
      transition: transform 0.4s ease;
      transform-origin: left;
    }

    .include-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(101, 59, 101, 0.12);
    }

    .include-card:hover::after {
      transform: scaleX(1);
    }

    .include-icon {
      width: 56px;
      height: 56px;
      background: var(--turquesa);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
    }

    .include-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--violeta-dark);
      margin-bottom: 10px;
    }

    .include-card p {
      color: var(--gray-600);
      font-size: 0.92rem;
      line-height: 1.65;
    }

    /* ===== VACANTES ===== */
    .vacantes-section {
      background: var(--violeta-dark);
      position: relative;
      overflow: hidden;
    }

    .vacantes-section::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: radial-gradient(circle at top right, rgba(220, 61, 84, 0.15), transparent 70%);
    }

    .vacantes-section .section-header h2 {
      color: white;
    }

    .vacantes-section .section-header p {
      color: rgba(255, 255, 255, 0.6);
    }

    .vacantes-section .section-tag {
      background: rgba(220, 61, 84, 0.2);
      color: var(--magenta);
    }

    .vacantes-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
      z-index: 2;
    }

    .vacante-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 32px;
      transition: all 0.4s ease;
      backdrop-filter: blur(10px);
    }

    .vacante-card:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-4px);
      border-color: var(--magenta);
    }

    .vacante-location {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--magenta);
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 12px;
      letter-spacing: 0.03em;
    }

    .vacante-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: white;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .vacante-salary {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .vacante-salary strong {
      color: white;
      font-size: 1.1rem;
    }

    .vacante-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .vacante-tag {
      background: rgba(228, 211, 230, 0.1);
      color: rgba(255, 255, 255, 0.7);
      padding: 4px 12px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 500;
    }

    /* ===== HISTORIAS DE ÉXITO ===== */
    .testimonials-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial-card {
      background: white;
      border-radius: 20px;
      padding: 36px;
      position: relative;
      border: 1px solid rgba(101, 59, 101, 0.06);
      transition: all 0.4s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 40px rgba(101, 59, 101, 0.1);
    }

    .testimonial-quote {
      font-size: 2.5rem;
      color: var(--magenta);
      opacity: 0.3;
      font-family: Georgia, serif;
      line-height: 1;
      margin-bottom: 12px;
    }

    .testimonial-card p {
      color: var(--gray-600);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testimonial-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--turquesa);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--violeta);
      font-size: 1rem;
    }

    .testimonial-info strong {
      display: block;
      font-size: 0.9rem;
      color: var(--violeta-dark);
    }

    .testimonial-info span {
      font-size: 0.8rem;
      color: var(--gray-400);
    }

    .testimonial-result {
      display: inline-block;
      background: var(--turquesa);
      color: var(--violeta);
      padding: 4px 14px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 700;
      margin-top: 10px;
    }

    /* ===== PROCESO / TIMELINE ===== */
    .process-section {
      background: white;
    }

    .timeline {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      left: 32px;
      width: 3px;
      height: 100%;
      background: linear-gradient(to bottom, var(--magenta), var(--violeta));
      border-radius: 3px;
    }

    .timeline-item {
      display: flex;
      gap: 32px;
      margin-bottom: 48px;
      position: relative;
    }

    .timeline-item:last-child {
      margin-bottom: 0;
    }

    .timeline-dot {
      width: 64px;
      height: 64px;
      background: white;
      border: 3px solid var(--magenta);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--magenta);
      flex-shrink: 0;
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
    }

    .timeline-item:hover .timeline-dot {
      background: var(--magenta);
      color: white;
    }

    .timeline-content h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--violeta-dark);
      margin-bottom: 8px;
    }

    .timeline-content p {
      color: var(--gray-600);
      line-height: 1.7;
      font-size: 0.95rem;
    }

    /* ===== FORM SECTION ===== */
    .form-section {
      background: linear-gradient(135deg, var(--violeta-dark) 0%, var(--violeta) 50%, #7a4a7a 100%);
      position: relative;
      overflow: hidden;
    }

    .form-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(220, 61, 84, 0.2), transparent 70%);
      border-radius: 50%;
    }

    .form-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .form-info h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 2.6rem;
      font-weight: 800;
      color: white;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .form-info h2 em {
      font-style: normal;
      color: var(--magenta);
    }

    .form-info p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .form-guarantees {
      list-style: none;
    }

    .form-guarantees li {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.85);
      padding: 8px 0;
      font-size: 0.95rem;
    }

    .form-guarantees li .icon {
      width: 28px;
      height: 28px;
      background: rgba(220, 61, 84, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      flex-shrink: 0;
    }

    .form-container {
      background: white;
      border-radius: 28px;
      padding: 44px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    }

    .form-container h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--violeta-dark);
      margin-bottom: 6px;
    }

    .form-container>p {
      color: var(--gray-600);
      font-size: 0.88rem;
      margin-bottom: 28px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--violeta-dark);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 13px 18px;
      border: 2px solid rgba(101, 59, 101, 0.12);
      border-radius: 14px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      color: var(--dark);
      background: var(--cream);
      transition: all 0.3s ease;
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--magenta);
      box-shadow: 0 0 0 4px rgba(220, 61, 84, 0.1);
    }

    .form-group input::placeholder {
      color: var(--gray-400);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .btn-submit {
      width: 100%;
      padding: 16px;
      background: var(--magenta);
      color: white;
      border: none;
      border-radius: 14px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 8px;
      letter-spacing: 0.02em;
    }

    .btn-submit:hover {
      background: var(--violeta);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(101, 59, 101, 0.3);
    }

    .form-divider {
      text-align: center;
      color: var(--gray-400);
      font-size: 0.85rem;
      margin: 20px 0;
      position: relative;
    }

    .form-divider::before,
    .form-divider::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 40%;
      height: 1px;
      background: rgba(101, 59, 101, 0.1);
    }

    .form-divider::before {
      left: 0;
    }

    .form-divider::after {
      right: 0;
    }

    .btn-whatsapp {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      padding: 16px;
      background: #25D366;
      color: white;
      border: none;
      border-radius: 14px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .btn-whatsapp:hover {
      background: #1da851;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }

    .btn-whatsapp svg {
      width: 22px;
      height: 22px;
      fill: white;
    }

    /* ===== FLOATING WHATSAPP ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 64px;
      height: 64px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
      transition: all 0.3s ease;
      animation: pulse 2s ease-in-out infinite;
      cursor: pointer;
      text-decoration: none;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-float svg {
      width: 34px;
      height: 34px;
      fill: white;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--dark);
      padding: 48px 40px;
      text-align: center;
    }

    .footer-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;
      margin-bottom: 20px;
    }

    .footer-logo {
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 1.3rem;
      color: white;
    }

    .footer-logo span {
      color: var(--magenta);
    }

    .footer-x {
      color: var(--gray-400);
      font-size: 1.2rem;
    }

    .footer p {
      color: var(--gray-400);
      font-size: 0.85rem;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 968px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

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

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }

      .includes-grid,
      .vacantes-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }

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

      .nav-links {
        display: none;
      }

      .section-header h2 {
        font-size: 2rem;
      }

      .form-info h2 {
        font-size: 2rem;
      }

      .floating-stat {
        display: none;
      }
    }

    @media (max-width: 600px) {
      .section {
        padding: 60px 20px;
      }

      .hero {
        padding: 100px 20px 60px;
      }

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

      .navbar {
        padding: 12px 20px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .hero-card {
        padding: 28px;
      }

      .form-container {
        padding: 28px;
      }
    }