/* GAPDIGITAL.BIZ - Formulario WhatsApp */
.gapwa-wrap,
.gapwa-wrap * {
    box-sizing: border-box;
}

.gapwa-wrap {
    --gapwa-accent: #d54466;
    --gapwa-accent-dark: #bc3153;
    --gapwa-text: #2f3033;
    --gapwa-muted: #72757d;
    --gapwa-line: #e7e8ec;
    --gapwa-soft: #f8f8fa;
    --gapwa-white: #ffffff;
    --gapwa-whatsapp: #25d366;
    --gapwa-danger: #c62d42;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    color: var(--gapwa-text);
    font-family: inherit;
}

.gapwa-card {
    background: var(--gapwa-white);
    border: 1px solid rgba(30, 31, 36, .08);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(28, 31, 38, .09);
    overflow: hidden;
}

.gapwa-heading {
    position: relative;
    padding: 36px 42px 30px;
    background:
        radial-gradient(circle at 92% 10%, rgba(213, 68, 102, .13), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fbf7f8 100%);
    border-bottom: 1px solid var(--gapwa-line);
}

.gapwa-heading:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gapwa-accent);
}

.gapwa-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(213, 68, 102, .1);
    color: var(--gapwa-accent-dark);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
}

.gapwa-heading h2 {
    margin: 0 0 9px;
    color: var(--gapwa-text);
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.12;
    letter-spacing: -.025em;
}

.gapwa-heading p {
    max-width: 760px;
    margin: 0;
    color: var(--gapwa-muted);
    font-size: 16px;
    line-height: 1.65;
}

.gapwa-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin-top: 20px;
    color: #4d5057;
    font-size: 13px;
    font-weight: 650;
}

.gapwa-form {
    padding: 34px 42px 40px;
}

.gapwa-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 2px 0 18px;
}

.gapwa-section-title:not(:first-child) {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--gapwa-line);
}

.gapwa-step {
    display: inline-flex;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gapwa-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(213, 68, 102, .22);
}

.gapwa-section-title strong,
.gapwa-section-title small {
    display: block;
}

.gapwa-section-title strong {
    font-size: 17px;
    line-height: 1.25;
}

.gapwa-section-title small {
    margin-top: 2px;
    color: var(--gapwa-muted);
    font-size: 12px;
}

.gapwa-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.gapwa-field {
    min-width: 0;
}

.gapwa-full {
    grid-column: 1 / -1;
}

.gapwa-field label {
    display: block;
    margin: 0 0 8px;
    color: #3e4046;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.gapwa-field label span,
.gapwa-consent b {
    color: var(--gapwa-accent);
}

.gapwa-field input,
.gapwa-field select,
.gapwa-field textarea {
    width: 100%;
    min-height: 50px;
    margin: 0;
    border: 1px solid #dfe1e6;
    border-radius: 12px;
    background: #fff;
    color: var(--gapwa-text);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.35;
    outline: none;
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.gapwa-field input,
.gapwa-field select {
    padding: 0 14px;
}

.gapwa-field textarea {
    min-height: 126px;
    padding: 13px 14px;
    resize: vertical;
}

.gapwa-field select {
    appearance: auto;
    -webkit-appearance: menulist;
}

.gapwa-field input::placeholder,
.gapwa-field textarea::placeholder {
    color: #a4a7ae;
    opacity: 1;
}

.gapwa-field input:focus,
.gapwa-field select:focus,
.gapwa-field textarea:focus {
    border-color: var(--gapwa-accent);
    box-shadow: 0 0 0 4px rgba(213, 68, 102, .10);
}

.gapwa-field .gapwa-invalid,
.gapwa-consent.gapwa-invalid {
    border-color: var(--gapwa-danger) !important;
}

.gapwa-helper {
    display: block;
    margin-top: 7px;
    color: #8c8f96;
    font-size: 11px;
}

.gapwa-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 24px 0 0;
    padding: 14px 15px;
    border: 1px solid var(--gapwa-line);
    border-radius: 12px;
    background: var(--gapwa-soft);
    color: #60636a;
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
}

.gapwa-consent input {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin: 1px 0 0;
    accent-color: var(--gapwa-accent);
}

.gapwa-status {
    display: none;
    margin-top: 15px;
    padding: 11px 13px;
    border-radius: 10px;
    background: #fff1f3;
    color: var(--gapwa-danger);
    font-size: 13px;
    font-weight: 650;
}

.gapwa-status.is-visible {
    display: block;
}

.gapwa-submit {
    display: inline-flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 0;
    padding: 14px 20px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, #25d366, #18b957);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(37, 211, 102, .24);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.gapwa-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 32px rgba(37, 211, 102, .30);
    filter: saturate(1.05);
}

.gapwa-submit:focus-visible {
    outline: 3px solid rgba(37, 211, 102, .30);
    outline-offset: 3px;
}

.gapwa-submit svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.gapwa-privacy {
    margin: 11px 0 0;
    text-align: center;
    color: #9699a0;
    font-size: 11px;
    line-height: 1.5;
}

.gapwa-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 767px) {
    .gapwa-card {
        border-radius: 18px;
    }

    .gapwa-heading {
        padding: 28px 22px 24px;
    }

    .gapwa-heading h2 {
        font-size: 28px;
    }

    .gapwa-benefits {
        display: grid;
        gap: 7px;
    }

    .gapwa-form {
        padding: 26px 20px 28px;
    }

    .gapwa-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gapwa-full,
    .gapwa-full-mobile {
        grid-column: auto;
    }

    .gapwa-section-title:not(:first-child) {
        margin-top: 28px;
        padding-top: 24px;
    }

    .gapwa-submit {
        font-size: 15px;
    }
}
