    /* ===== ESTILOS EXCLUSIVOS DE ESTA PÁGINA ===== */

    /* Page Hero */
    .page-hero {
      position: relative;
      padding: 9rem 0 5rem;
      overflow: hidden;
    }

    .page-hero-bg { position: absolute; inset: 0; z-index: -1; }

    .page-hero-blob-1 {
      position: absolute;
      top: -20%; right: -10%;
      width: 700px; height: 700px;
      background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(59, 130, 246, 0.05));
      border-radius: 50%;
      filter: blur(80px);
    }

    .page-hero-blob-2 {
      position: absolute;
      bottom: -20%; left: -10%;
      width: 500px; height: 500px;
      background: linear-gradient(225deg, rgba(29, 78, 216, 0.07), rgba(6, 182, 212, 0.04));
      border-radius: 50%;
      filter: blur(80px);
    }

    .page-hero-grid {
      position: absolute; inset: 0;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .page-hero-content {
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }

    .page-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: rgba(29, 78, 216, 0.08);
      border: 1px solid rgba(29, 78, 216, 0.12);
      color: var(--primary);
      font-size: 0.875rem;
      font-weight: 500;
      border-radius: var(--radius-full);
      margin-bottom: 1.5rem;
    }

    .page-hero-title {
      font-size: clamp(2.25rem, 5vw, 3.5rem);
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .page-hero-title span {
      background: linear-gradient(to right, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .page-hero-description {
      font-size: 1.125rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* Contact Layout */
    .contact-section {
      padding: 2rem 0 6rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;
    }

    @media (min-width: 1024px) {
      .contact-grid {
        grid-template-columns: 1fr 1.6fr;
        gap: 4rem;
      }
    }

    /* Info Cards */
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .contact-info-card {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-xl);
      padding: 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .contact-info-card:hover {
      border-color: rgba(29, 78, 216, 0.25);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .contact-info-icon {
      width: 2.75rem;
      height: 2.75rem;
      min-width: 2.75rem;
      background: rgba(29, 78, 216, 0.1);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.125rem;
    }

    .contact-info-body h4 {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.25rem;
    }

    .contact-info-body p,
    .contact-info-body a {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-primary);
      transition: var(--transition);
    }

    .contact-info-body a:hover { color: var(--primary); }

    /* Social */
    .contact-social-card {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-xl);
      padding: 1.5rem;
      box-shadow: var(--shadow-sm);
    }

    .contact-social-card h4 {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 1rem;
    }

    .social-links { display: flex; gap: 0.75rem; }

    .social-link {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.625rem 1.25rem;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--text-secondary);
      transition: var(--transition);
    }

    .social-link:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: rgba(29, 78, 216, 0.05);
    }

    .social-link i { font-size: 1.125rem; }

    /* Form Card */
    .contact-form-card {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-2xl);
      padding: 2.5rem;
      box-shadow: var(--shadow-lg);
    }

    .form-header { margin-bottom: 2rem; }

    .form-header h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
    }

    .form-header p {
      font-size: 0.9375rem;
      color: var(--text-secondary);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      margin-bottom: 1.25rem;
    }

    @media (min-width: 640px) {
      .form-row.two-cols { grid-template-columns: 1fr 1fr; }
    }

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

    .form-group label {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-primary);
    }

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

    .form-control {
      width: 100%;
      padding: 0.875rem 1rem;
      font-family: inherit;
      font-size: 0.9375rem;
      color: var(--text-primary);
      background: var(--bg-gray);
      border: 1.5px solid var(--border-color);
      border-radius: var(--radius-lg);
      outline: none;
      transition: var(--transition);
    }

    .form-control::placeholder { color: var(--text-muted); }

    .form-control:focus {
      border-color: var(--primary-light);
      background: white;
      box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.08);
    }

    textarea.form-control {
      resize: vertical;
      min-height: 140px;
    }

    .form-submit { margin-top: 1.75rem; }

    .btn-submit {
      width: 100%;
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      color: white;
      background: var(--primary-dark);
      border-radius: var(--radius-lg);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.625rem;
      transition: var(--transition);
      box-shadow: var(--shadow-primary);
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 50px -10px rgba(29, 78, 216, 0.5);
    }

    /* Success */
    .form-success {
      display: none;
      text-align: center;
      padding: 2rem 0;
    }

    .form-success.visible {
      display: block;
      animation: fadeInUp 0.5s ease;
    }

    .success-icon {
      width: 4rem;
      height: 4rem;
      background: var(--success-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.5rem;
      color: var(--success);
    }

    .form-success h4 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
    }

    .form-success p { color: var(--text-secondary); }
