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

  :root {
    --rojo-arriendo: #e6484b;
    --rojo-hover: #d43134;
    --azul-oscuro: #000;
    --gris-texto: #4a5568;
    --gris-claro: #f8fafc;
    --verde-success: #10b981;
  }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
  }

  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  /* Header con logo */
  .header {
    text-align: center;
    margin-bottom: 40px;
  }

 

  /* Layout principal */
  .main-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
  }

  /* Sección izquierda - Beneficios */
  .benefits-section {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
  }

  .benefits-section h2 {
    font-size: 32px;
    color: var(--azul-oscuro);
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .benefits-section .subtitle {
    color: var(--gris-texto);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .promo-badge {
    background: linear-gradient(135deg, var(--verde-success), #059669);
    color: white;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: pulse 2s infinite;
    text-align: center;
  }

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

  .benefit-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 0px;
    padding: 5px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .benefit-item:hover {
    background: var(--gris-claro);
    transform: translateX(5px);
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    /* background: linear-gradient(135deg, var(--rojo-arriendo), #ff6b6e); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  .benefit-content h3 {
    font-size: 1.1rem;
    color: var(--azul-oscuro);
    margin-bottom: 5px;
  }

  .benefit-content p {
    color: var(--gris-texto);
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .trust-badges {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
  }

  .trust-badges h4 {
    font-size: 0.9rem;
    color: var(--gris-texto);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

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

  .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rojo-arriendo);
    display: block;
  }

  .stat-label {
    font-size: 0.85rem;
    color: var(--gris-texto);
  }

  /* Sección derecha - Formulario */
  .form-section {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 20px;
  }

  .agency-form{
    width: 100% !important;
  }

  .agency-form .field label {
    font-size: 14px;
    font-weight: 500;
    margin: 0 !important;
    width: 100% !important;
}

.agency-form .send-button input{
    height: 45px !important;
     font-size: 20px !important;
}

.agency-form .send-button {
  margin: 0 !important ;
}
.agency-form .send-button p{
  width: 100% !important;
}


.form-terms{
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    width: 50%;
    margin: 16px auto;

    a{
      font-weight: 700;
    }
}

.agency-form .field span input {
    border-color: #ccc !important;
    text-indent: 8px !important;
}

.agency-form .field span input::placeholder {
  color: #060606 !important;
  opacity: 0.7;
}
.agency-form .field{
  height: 70px !important;
}

.agency-form .terms{
  width: 100% !important;
  input{
    width: auto !important;
    top: -10px !important;
  }

  label{
    display: flex !important;
    align-items: center !important;
    span{
      padding-left: 10px !important;
      font-weight: 400 !important;

      a{
        text-decoration: underline !important;
      }
    }
  }
  span{
    margin: 0 !important;
    font-size: 13px !important;
  }
}

.agency-form .field span select {
    border-color: #ccc !important;
}
  .form-section h2 {
    font-size: 29px;
    color: var(--azul-oscuro);
    margin-bottom: 10px;
    text-align: center;
  }

  .form-section .form-subtitle {
    text-align: center;
    color: var(--gris-texto);
    margin-bottom: 30px;
    font-size: 0.95rem;
  }

  .progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rojo-arriendo), #ff6b6e);
    width: 0%;
    transition: width 0.3s ease;
  }

  form {
    display: grid;
    gap: 20px;
  }

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

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

  .form p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--azul-oscuro);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 90%;
  }

  .required {
    color: var(--rojo-arriendo);
  }

  .optional {
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.85rem;
  }

  input, select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
  }

  input:focus, select:focus {
    border-color: var(--rojo-arriendo);
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 72, 75, 0.1);
  }

  input::placeholder {
    color: #9ca3af;
  }

  select {
    cursor: pointer;
  }

  .submit-btn {
    background: linear-gradient(135deg, var(--rojo-arriendo), #ff6b6e);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 72, 75, 0.3);
    margin-top: 10px;
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 72, 75, 0.4);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  .privacy-text {
    text-align: center;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 15px;
    line-height: 1.5;
  }

  .privacy-text a {
    color: var(--rojo-arriendo);
    text-decoration: none;
  }

  /* Sección adicional de integración */
  .integration-section {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    margin-top: 20px;
    border: 1px solid #e5e7eb;
  }

  .integration-section h3 {
    font-size: 1rem;
    color: var(--azul-oscuro);
    margin-bottom: 15px;
    text-align: center;
  }

  .integration-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
  }

  .integration-logo {
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--gris-texto);
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .main-layout {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .form-section {
      position: static;
    }

    .stats {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .container {
      padding: 20px 15px;
    }

    .form p{
      width: 100% !important;
    }

    .agency-form .field{
      min-height:  fit-content !important;
    }

    .benefits-section, .form-section {
      padding: 20px 20px;
    }

    .benefits-section h2 {
      font-size: 1.6rem;
    }

    .form-section h2 {
      font-size: 1.5rem;
    }

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

    .stat-number {
      font-size: 1.5rem;
    }

    .benefit-item {
      padding: 0px 10px;
    }

    .logo {
      font-size: 1.5rem;
      padding: 12px 30px;
    }

    .form-terms{
      width: 80%;
  }
  }

  @media (max-width: 480px) {
    .benefits-section h2 {
      font-size: 1.4rem;
    }

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

    .integration-logos {
      flex-direction: column;
      gap: 10px;
    }
  }