.elementor-571 .elementor-element.elementor-element-56f9c48{--spacer-size:70px;}body.elementor-page-571:not(.elementor-motion-effects-element-type-background), body.elementor-page-571 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#131313;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-dff91fd *//* ==========================================================================
   SISTEMA DE IDENTIDAD DE DISEÑO - CHAVELOIDE CONTACTO (SVG ACCESIBLE)
   ========================================================================== */
.chv-main-container {
    /* ADN Cromático */
    --chv-surface: #131313;
    --chv-surface-container-low: #1b1b1b;
    --chv-surface-container-high: #2a2a2a;
    --chv-on-surface: #e2e2e2;
    --chv-on-surface-variant: rgba(213, 195, 187, 0.8);
    --chv-primary: #f1bb9f;
    --chv-on-primary: #492815;
    --chv-marron: #A3755D;
    --chv-font: 'Space Grotesk', sans-serif;
    
    --chv-transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    background-color: var(--chv-surface);
    color: var(--chv-on-surface);
    font-family: var(--chv-font);
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 8vw, 96px);
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(48px, 10vw, 96px) 16px;
    box-sizing: border-box;
}

/* ==========================================================================
   SISTEMA DE ANIMACIÓN REVELADO
   ========================================================================== */
.chv-animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.chv-animate-fade-up.chv-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HEADER ADAPTATIVO
   ========================================================================== */
.chv-hero-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    width: 100%;
}
.chv-title-label {
    font-size: clamp(11px, 2vw, 14px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--chv-primary);
}
.chv-main-heading {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--chv-on-surface);
}
.chv-italic-accent {
    color: var(--chv-primary);
    font-style: italic;
    font-weight: 300;
}
.chv-hero-paragraph {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    color: var(--chv-on-surface-variant);
    font-weight: 300;
    max-width: 600px;
}

/* ==========================================================================
   GRID DE PROCESO (DISEÑO AUTOPLEGABLE RESPONSIVO)
   ========================================================================== */
.chv-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    width: 100%;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
}
.chv-step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--chv-transition-smooth);
    text-align: center;
}
.chv-animate-fade-up.chv-revealed .chv-step-card {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--chv-delay) * 120ms);
}
.chv-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--chv-surface-container-high);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--chv-primary);
    transition: var(--chv-transition-smooth);
}
.chv-step-card:hover .chv-icon-wrapper {
    border-color: var(--chv-primary);
    transform: scale(1.05);
}
.chv-step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--chv-on-surface);
}
.chv-step-desc {
    font-size: 14px;
    color: var(--chv-on-surface-variant);
    line-height: 1.5;
    max-width: 250px;
}

/* ==========================================================================
   ESTILOS DE CONTROLES SVG (CORRECCIÓN TOTAL DE RENDIMIENTO MÓVIL)
   ========================================================================== */
.chv-svg-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    flex-shrink: 0;
    color: currentColor;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.chv-spin {
    animation: chvSpinKey 1s infinite linear;
}
@keyframes chvSpinKey {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   PRUEBA SOCIAL (AUTOADAPTABLE MÓVIL/TABLET/DESKTOP)
   ========================================================================== */
.chv-social-proof {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}
.chv-proof-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 500;
    color: var(--chv-on-surface);
    text-align: center;
}
.chv-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}
.chv-stat-card {
    background-color: var(--chv-surface-container-low);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--chv-transition-smooth);
    opacity: 0;
    transform: translateY(15px);
    text-align: center;
    box-sizing: border-box;
}
.chv-animate-fade-up.chv-revealed .chv-stat-card {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--chv-delay) * 120ms);
}
.chv-stat-card:hover {
    border-color: rgba(241, 187, 159, 0.25);
    transform: translateY(-4px);
}
.chv-brand-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--chv-on-surface-variant);
}
.chv-dot-accent {
    color: var(--chv-primary);
}
.chv-stat-value {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--chv-primary);
    line-height: 1;
}

@media (min-width: 640px) {
    .chv-card-wide {
        grid-column: span 2;
    }
}
@media (min-width: 768px) {
    .chv-card-wide {
        grid-column: span 1;
    }
}

/* ==========================================================================
   FORMULARIO DE CAPTURA RESPONSIVO Y ERGONÓMICO
   ========================================================================== */
.chv-form-section {
    width: 100%;
    box-sizing: border-box;
}
.chv-conversion-form {
    background-color: var(--chv-surface-container-low);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: clamp(24px, 5vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-align: left;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    box-sizing: border-box;
}
.chv-form-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chv-form-title {
    font-size: clamp(1.4rem, 4vw, 1.75rem);
    font-weight: 600;
    color: var(--chv-on-surface);
}
.chv-form-subtitle {
    font-size: 14px;
    color: var(--chv-on-surface-variant);
}

/* Barra de Progreso */
.chv-progress-container {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    margin-top: 12px;
    overflow: hidden;
}
.chv-progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--chv-primary);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Contenedores de Campos */
.chv-form-fields {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.chv-input-group {
    position: relative;
    width: 100%;
}
.chv-input-field {
    width: 100%;
    background-color: transparent;
    border: none;
    border-b: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 0;
    color: var(--chv-on-surface);
    font-family: var(--chv-font);
    font-size: 16px;
    outline: none;
    transition: var(--chv-transition-smooth);
    border-radius: 0;
    box-sizing: border-box;
}
.chv-textarea {
    resize: none;
    height: 80px;
}

/* Línea Expansiva (Focus state) */
.chv-input-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background-color: var(--chv-primary);
    transition: var(--chv-transition-smooth);
    transform: translateX(-50%);
}
.chv-input-field:focus ~ .chv-input-line {
    width: 100%;
}

/* Etiquetas flotantes adaptativas */
.chv-floating-label {
    position: absolute;
    left: 0;
    top: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    pointer-events: none;
    transition: var(--chv-transition-smooth);
}
.chv-input-field:focus ~ .chv-floating-label,
.chv-input-field:not(:placeholder-shown) ~ .chv-floating-label {
    top: -16px;
    font-size: 11px;
    color: var(--chv-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Compatibilidad de Autocompletado del Navegador (Modo Oscuro) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px #1b1b1b inset !important;
    -webkit-text-fill-color: var(--chv-on-surface) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* ==========================================================================
   BOTÓN SUBMIT ERGONÓMICO CON ESTADOS DE CARGA
   ========================================================================== */
.chv-submit-btn {
    background-color: var(--chv-primary);
    color: var(--chv-on-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: clamp(16px, 3vw, 20px) 24px;
    border-radius: 9999px;
    border: 1px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--chv-transition-smooth);
    box-shadow: 0 0 20px rgba(241, 187, 159, 0.2);
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
}
.chv-submit-btn:hover {
    background-color: #FFFFFF;
    color: var(--chv-surface);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(241, 187, 159, 0.5);
}
.chv-submit-btn:hover .chv-svg-icon {
    transform: translateX(6px);
}
.chv-btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Clases de Estado de Procesamiento */
.chv-btn-loading {
    background-color: var(--chv-surface-container-high);
    color: var(--chv-primary);
    border-color: rgba(241, 187, 159, 0.15);
    pointer-events: none;
    box-shadow: none;
}
.chv-btn-success {
    background-color: #27c93f;
    color: #FFFFFF;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(39, 201, 63, 0.3);
}/* End custom CSS */