:root {
    --home-primary: #0f5d74;
    --home-primary-dark: #0054e6;
    --home-primary-soft: #eaf7fb;
    --home-accent: #13a6d1;
    --home-text: #102033;
    --home-muted: #6d7890;
    --home-border: #dce8f1;
    --home-bg: #f5f9fc;
    --home-white: #ffffff;
    --home-white-light: rgba(255, 255, 255, .90);
    --home-success: #0aad62;
    --home-shadow: 0 18px 45px rgba(16, 32, 51, .10);
    --home-soft-shadow: 0 10px 24px rgba(16, 32, 51, .06);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    background: var(--home-bg);
    color: var(--home-text);
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/*
|--------------------------------------------------------------------------
| Navbar
|--------------------------------------------------------------------------
*/

.home-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--home-border);
    backdrop-filter: blur(14px);
    transition: .2s ease;
}

.home-navbar.scrolled {
    box-shadow: 0 10px 25px rgba(16, 32, 51, .08);
}

.home-navbar-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.home-navbar .container,
.home-hero .container {
    max-width: 1240px;
}

.home-logo img {
    height: 50px;
    width: auto;
}

.home-menu {
    margin-left: auto;
    gap: 32px;
    align-items: center;
}

.home-menu a {
    position: relative;
    color: var(--home-primary);
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 29px 0;
}

.home-menu a i {
    font-size: 15px;
}

.home-menu a.active::after,
.home-menu a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--home-primary), var(--home-accent));
}

.home-menu a:hover {
    color: var(--home-primary);
}

/*
|--------------------------------------------------------------------------
| Dropdown móvil público
|--------------------------------------------------------------------------
*/

.home-mobile-dropdown-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.home-menu-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(15, 93, 116, .16);
    border-radius: 14px;
    background: rgba(255, 255, 255, .88);
    color: var(--home-primary);
    font-size: 22px;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(16, 32, 51, .055);
    transition: .18s ease;
}

.home-menu-btn i {
    line-height: 1;
}

.home-menu-btn.is-open {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--home-accent), var(--home-primary));
    box-shadow: 0 14px 28px rgba(15, 93, 116, .18);
}

.home-mobile-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 255px;
    padding: 10px;
    border: 1px solid rgba(220, 232, 241, .95);
    border-radius: 20px;
    background:
        radial-gradient(circle at 12% 0%, rgba(19, 166, 209, .08), transparent 28%),
        rgba(255, 255, 255, .98);
    box-shadow: 0 22px 48px rgba(16, 32, 51, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    transition: .18s ease;
    z-index: 1100;
}

.home-mobile-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.home-mobile-dropdown::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 15px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid rgba(220, 232, 241, .95);
    border-top: 1px solid rgba(220, 232, 241, .95);
    transform: rotate(45deg);
}

.home-mobile-dropdown a.section-link {
    min-height: 38px;
    padding: 0 8px;
    border-radius: 13px;
    color: var(--home-text);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .16s ease;
}

.home-mobile-dropdown a.section-link i {
    width: 27px;
    height: 27px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--home-primary);
    background: var(--home-primary-soft);
    font-size: 13px;
    flex: 0 0 auto;
}

.home-mobile-dropdown a.section-link:hover,
.home-mobile-dropdown a.section-link.active {
    color: var(--home-primary);
    background: rgba(234, 247, 251, .72);
}

.home-mobile-dropdown a.section-link.active i {
    color: #ffffff;
    background: linear-gradient(135deg, var(--home-accent), var(--home-primary));
}

.home-mobile-dropdown-separator {
    height: 1px;
    margin: 8px 4px;
    background: linear-gradient(90deg, transparent, rgba(15, 93, 116, .18), transparent);
}

.home-mobile-dropdown-btn {
    width: 100%;
    min-height: 38px;
    margin-top: 7px;
    border: 1px solid rgba(15, 93, 116, .25);
    border-radius: 13px;
    background: rgba(255, 255, 255, .86);
    color: var(--home-primary);
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.home-mobile-dropdown-btn.primary {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, #0067e8, var(--home-primary));
    box-shadow: 0 10px 20px rgba(0, 103, 232, .14);
}

@media (max-width: 370px) {
    .home-mobile-dropdown {
        width: 238px;
        right: -2px;
    }

    .home-mobile-dropdown a.section-link {
        font-size: 12px;
    }
}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/

.btn-home-main,
.btn-home-light {
    min-height: 46px;
    border-radius: 13px;
    padding: 10px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 900;
}

.btn-home-main {
    color: #fff;
    background: linear-gradient(135deg, var(--home-primary), var(--home-accent));
    border: 1px solid rgba(0, 103, 232, .20);
    box-shadow: 0 14px 26px rgba(0, 103, 232, .20);
}

.btn-home-main:hover {
    color: #fff;
    opacity: .94;
}

.btn-home-light {
    color: var(--home-primary);
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(15, 93, 116, .65);
}

.btn-home-light:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--home-primary), var(--home-accent));
}

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 0px 0 50px;
    background:
        radial-gradient(circle at 10% 25%, rgba(19, 166, 209, .09), transparent 28%),
        radial-gradient(circle at 88% 42%, rgba(0, 103, 232, .18), transparent 30%),
        linear-gradient(135deg, #fafdff, #eef9fc);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0 43%, rgba(19, 166, 209, .07) 43% 56%, transparent 56%),
        radial-gradient(circle at 97% 18%, rgba(0, 103, 232, .10), transparent 24%);
}

.home-hero-stage {
    position: relative;
    z-index: 2;
    min-height: 535px;
    display: grid;
    grid-template-columns: 485px 1fr;
    gap: 34px;
    align-items: center;
}

.home-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-primary);
    background: rgba(234, 247, 251, .92);
    border: 1px solid rgba(15, 93, 116, .13);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 24px;
    box-shadow: 0 10px 24px rgba(16, 32, 51, .04);
}

.home-hero-copy {
    position: relative;
    z-index: 4;
}

.home-hero-copy h1 {
    max-width: 485px;
    margin: 0 0 22px;
    color: #071b36;
    font-size: clamp(37px, 3.55vw, 50px);
    line-height: 1.16;
    letter-spacing: -.05em;
    font-weight: 900;
}

.home-hero-copy p {
    max-width: 500px;
    color: #63718f;
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 30px;
}

.home-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/*
|--------------------------------------------------------------------------
| Hero mockup
|--------------------------------------------------------------------------
*/

.home-hero-visual {
    position: relative;
    min-height: 520px;
}

.home-preview-bg {
    position: absolute;
    right: -22px;
    top: 34px;
    width: 88%;
    height: 82%;
    border-radius: 58px 58px 58px 140px;
    background:
        radial-gradient(circle at 90% 18%, rgba(255, 255, 255, .35), transparent 18%),
        linear-gradient(135deg, rgba(19, 166, 209, .12), rgba(0, 103, 232, .30));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .42);
}

.home-preview-bg::after {
    content: "";
    position: absolute;
    right: 42px;
    top: 62px;
    width: 135px;
    height: 135px;
    opacity: .38;
    background-image: radial-gradient(rgba(255, 255, 255, .95) 1.4px, transparent 1.4px);
    background-size: 13px 13px;
}

.home-desktop-device {
    position: absolute;
    top: 62px;
    right: 2px;
    width: 690px;
    border: 7px solid rgba(255, 255, 255, .96);
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(16, 32, 51, .18);
}

.home-device-top {
    height: 34px;
    padding-left: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(220, 232, 241, .85);
}

.home-device-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.home-device-top span:nth-child(1) {
    background: #ff5f57;
}

.home-device-top span:nth-child(2) {
    background: #ffbd2e;
}

.home-device-top span:nth-child(3) {
    background: #28c840;
}

.home-desktop-device img {
    width: 100%;
    display: block;
}

.home-phone-device {
    position: absolute;
    right: -14px;
    top: 88px;
    width: 245px;
    min-height: 430px;
    padding: 12px;
    border-radius: 44px;
    background: #ffffff;
    border: 2px solid rgba(210, 222, 235, .96);
    box-shadow:
        0 28px 65px rgba(16, 32, 51, .26),
        inset 0 0 0 7px rgba(255, 255, 255, .96);
    overflow: hidden;
}

.home-phone-device::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 40px;
    border: 2px solid rgba(12, 25, 42, .12);
    pointer-events: none;
    z-index: 2;
}

.home-phone-device img {
    width: 100%;
    height: 406px;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 32px;
}

.home-phone-speaker {
    position: absolute;
    top: 13px;
    left: 50%;
    width: 62px;
    height: 7px;
    border-radius: 999px;
    background: rgba(17, 29, 43, .18);
    transform: translateX(-50%);
    z-index: 3;
}

/*.home-phone-homebar {
    position: absolute;
    left: 50%;
    bottom: 14px;
    width: 58px;
    height: 5px;
    border-radius: 999px;
    background: rgba(17, 29, 43, .36);
    transform: translateX(-50%);
    z-index: 3;
}*/

/*
|--------------------------------------------------------------------------
| Hero trust row
|--------------------------------------------------------------------------
*/

.home-trust-row {
    position: relative;
    z-index: 2;
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.home-trust-row div {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--home-border);
    border-radius: 22px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: center;
    box-shadow: 0 18px 38px rgba(16, 32, 51, .07);
}

.home-trust-row i {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--home-primary-soft);
    color: var(--home-primary);
    font-size: 24px;
}

.home-trust-row span {
    color: #102033;
    font-size: 15px;
    font-weight: 900;
}

.home-trust-row small {
    display: block;
    color: var(--home-muted);
    font-weight: 600;
    line-height: 1.45;
    margin-top: 4px;
}

/*
|--------------------------------------------------------------------------
| Sections
|--------------------------------------------------------------------------
*/

.home-section {
    padding: 100px 0;
    background: var(--home-white-light);
}

.home-section.soft {
    background: var(--home-bg);
}

.home-title {
    max-width: 680px;
    margin: 0 auto 28px;
    text-align: center;
}

.home-title span,
.home-small-title {
    color: var(--home-primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
}

.home-title h2 {
    margin: 8px 0 0;
    color: var(--home-text);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    letter-spacing: -.03em;
}

/*
|--------------------------------------------------------------------------
| Services
|--------------------------------------------------------------------------
*/

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-service-card {
    background: var(--home-white-light);
    border: 1px solid var(--home-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--home-soft-shadow);
}

.home-service-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.home-service-icon.blue {
    color: #0d8cf0;
    background: #e8f5ff;
}

.home-service-icon.green {
    color: #22a95a;
    background: #eafbf0;
}

.home-service-icon.purple {
    color: #8054e8;
    background: #f0ebff;
}

.home-service-icon.cyan {
    color: var(--home-primary);
    background: var(--home-primary-soft);
}

.home-service-card h3 {
    font-size: 17px;
    font-weight: 900;
    margin: 0 0 8px;
}

.home-service-card p {
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/*
|--------------------------------------------------------------------------
| Steps
|--------------------------------------------------------------------------
*/

.home-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-step-card {
    position: relative;
    overflow: hidden;
    background: var(--home-white-light);
    border: 1px solid var(--home-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--home-soft-shadow);
}

.home-step-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 28px;
    border-radius: 999px;
    background: var(--home-primary-soft);
    color: var(--home-primary);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.home-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--home-white-light);
    color: var(--home-primary);
    border: 1px solid var(--home-border);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 14px;
    box-shadow: var(--home-soft-shadow);
}

.home-step-card h3 {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 8px;
}

.home-step-card p {
    color: var(--home-muted);
    line-height: 1.55;
    margin: 0;
}

/*
|--------------------------------------------------------------------------
| Methods
|--------------------------------------------------------------------------
*/

.home-method-panel {
    background: var(--home-white-light);
    border: 1px solid var(--home-border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--home-soft-shadow);
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 26px;
    align-items: center;
}

.home-method-panel h2,
.home-contact-panel h2 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.03em;
    margin: 8px 0 10px;
}

.home-method-panel p,
.home-contact-panel p {
    color: var(--home-muted);
    line-height: 1.6;
    margin: 0;
}

.home-method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.home-method-grid article {
    border: 1px solid var(--home-border);
    border-radius: 18px;
    padding: 20px;
}

.home-method-grid i {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: var(--home-primary);
    background: var(--home-primary-soft);
    font-size: 22px;
    margin-bottom: 14px;
}

.home-method-grid h3 {
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 7px;
}

.home-method-grid p {
    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| Brands
|--------------------------------------------------------------------------
*/

.home-brand-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.home-brand-card {
    min-height: 66px;
    border: 1px solid var(--home-border);
    border-radius: 17px;
    display: grid;
    place-items: center;
    padding: 12px;
    background: var(--home-white-light);
    box-shadow: var(--home-soft-shadow);
}

.home-brand-card img {
    max-height: 40px;
    object-fit: contain;
}

/*
|--------------------------------------------------------------------------
| Contact
|--------------------------------------------------------------------------
*/

.home-contact-panel {
    background: var(--home-white-light);
    border: 1px solid var(--home-border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--home-soft-shadow);
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 26px;
    align-items: center;
}

.home-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.home-contact-grid a {
    color: var(--home-text);
    border: 1px solid var(--home-border);
    border-radius: 18px;
    padding: 18px;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: center;
}

.home-contact-grid i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--home-primary);
    background: var(--home-primary-soft);
    font-size: 23px;
}

.home-contact-grid span {
    font-size: 14px;
    font-weight: 900;
}

.home-contact-grid small {
    display: block;
    color: var(--home-muted);
    font-weight: 500;
    margin-top: 3px;
}

/*
|--------------------------------------------------------------------------
| Auth modal
|--------------------------------------------------------------------------
*/

.home-auth-modal {
    position: relative;
    max-width: 400px;
    margin: auto;
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--home-shadow);
}

.home-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: 0;
    background: transparent;
    color: var(--home-muted);
    z-index: 2;
}

.home-auth-header {
    padding: 30px 30px 10px;
    text-align: center;
}

.home-auth-header h5 {
    font-size: 24px;
    font-weight: 900;
    margin: 0;
}

.home-auth-header p {
    color: var(--home-muted);
    margin: 8px 0 0;
    font-size: 14px;
}

.home-auth-body {
    padding: 18px 30px 30px;
    display: grid;
    gap: 13px;
}

.home-auth-field {
    position: relative;
}

.home-auth-field i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--home-primary);
}

.home-auth-field .form-control {
    min-height: 48px;
    border: 1px solid var(--home-border);
    border-radius: 12px;
    padding-left: 44px;
    box-shadow: none;
    font-size: 14px;
}

.home-auth-field .form-control:focus {
    border-color: var(--home-primary);
    box-shadow: 0 0 0 4px rgba(15, 93, 116, .09);
}

.home-link-btn {
    border: 0;
    background: transparent;
    color: var(--home-primary);
    font-weight: 800;
    font-size: 13px;
}

.ajax-error,
.ajax-success {
    margin: 0;
    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.home-footer {
    background: #06263a;
    color: #fff;
    padding: 20px 0;
}

.home-footer-inner {
    display: grid;
    grid-template-columns: 180px 1fr 150px;
    gap: 18px;
    align-items: center;
}

.home-footer img {
    height: 38px;
    filter: brightness(0) invert(1);
}

.home-footer span {
    text-align: center;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.home-footer a {
    color: #fff;
    justify-self: end;
    font-size: 13px;
    font-weight: 800;
}

/*
|--------------------------------------------------------------------------
| Auth pages
|--------------------------------------------------------------------------
*/

.auth-page {
    min-height: 100vh;
    padding: 24px;
    background:
        radial-gradient(circle at 12% 22%, rgba(19, 166, 209, .13), transparent 28%),
        radial-gradient(circle at 88% 30%, rgba(15, 93, 116, .10), transparent 30%),
        linear-gradient(135deg, #f9fdff, #eef8fb);
    display: grid;
    place-items: center;
}

.auth-shell {
    width: min(980px, 100%);
    min-height: 560px;
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--home-border);
    border-radius: 28px;
    box-shadow: var(--home-shadow);
    overflow: hidden;
}

.auth-brand-panel {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background:
        radial-gradient(circle at 16% 20%, rgba(19, 166, 209, .10), transparent 30%),
        linear-gradient(135deg, #ffffff, #f7fcff);
    padding: 42px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-logo {
    margin-bottom: 24px;
}

.auth-logo img {
    height: 48px;
    width: auto;
}

.auth-copy {
    max-width: 480px;
}

.auth-copy .home-pill {
    margin-bottom: 18px;
}

.auth-copy h1 {
    margin: 0 0 14px;
    color: var(--home-text);
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -.04em;
    font-weight: 900;
}

.auth-copy p {
    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.auth-benefits {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.auth-benefits div {
    background: var(--home-white-light);
    border: 1px solid var(--home-border);
    border-radius: 16px;
    padding: 13px 15px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    box-shadow: 0 8px 18px rgba(16, 32, 51, .045);
}

.auth-benefits i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--home-primary-soft);
    color: var(--home-primary);
    font-size: 20px;
}

.auth-benefits span {
    color: var(--home-text);
    font-size: 14px;
    font-weight: 900;
}

.auth-benefits small {
    display: block;
    color: var(--home-muted);
    font-size: 12px;
    font-weight: 500;
    margin-top: 3px;
}

.auth-card {
    border: 0;
    border-left: 1px solid var(--home-border);
    border-radius: 0;
    box-shadow: none;
    background: var(--home-white-light);
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-card-header h2 {
    margin: 0;
    color: var(--home-text);
    font-size: 26px;
    font-weight: 900;
}

.auth-card-header p {
    margin: 8px 0 0;
    color: var(--home-muted);
    font-size: 14px;
}

.auth-card .home-auth-field {
    margin-bottom: 13px;
}

.auth-card .btn-home-main {
    margin-top: 4px;
}

.auth-card .home-link-btn {
    margin-top: 4px;
    width: 100%;
    text-align: center;
}

.auth-card-footer {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.auth-card-footer a,
.auth-card-footer button {
    border: 0;
    background: transparent;
    color: var(--home-primary);
    font-size: 13px;
    font-weight: 800;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#registerForm.auth-card,
form[action*="registro"].auth-card {
    padding-top: 34px;
    padding-bottom: 34px;
}

/*
|--------------------------------------------------------------------------
| Ajustes visuales de cards públicas
|--------------------------------------------------------------------------
*/

.home-service-card,
.home-step-card,
.home-method-grid article,
.home-contact-grid a {
    min-height: 215px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.home-service-icon,
.home-step-icon,
.home-method-grid i,
.home-contact-grid i {
    margin-bottom: 22px;
}

.home-service-card h3,
.home-step-card h3,
.home-method-grid h3 {
    margin-bottom: 12px;
}

.home-service-card p,
.home-step-card p,
.home-method-grid p,
.home-contact-panel p,
.home-method-panel p {
    line-height: 1.65;
}

.home-services-grid,
.home-steps-grid,
.home-method-grid,
.home-contact-grid {
    gap: 20px;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 1199px) {
    .home-navbar .container,
    .home-hero .container {
        max-width: 960px;
    }

    .home-hero-stage {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home-hero-copy {
        text-align: center;
    }

    .home-hero-copy h1,
    .home-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-buttons {
        justify-content: center;
    }

    .home-hero-visual {
        min-height: 520px;
    }

    .home-desktop-device {
        left: 0;
        right: auto;
        width: calc(100% - 120px);
    }

    .home-phone-device {
        right: 0;
    }

    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-method-panel,
    .home-contact-panel {
        grid-template-columns: 1fr;
    }

    .home-method-grid,
    .home-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .home-hero-visual {
        min-height: 440px;
    }

    .home-desktop-device {
        width: 100%;
        right: auto;
    }

    .home-phone-device {
        display: none;
    }

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

    .home-footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .home-footer a {
        justify-self: center;
    }

    .auth-page {
        padding: 16px;
    }

    .auth-shell {
        width: min(540px, 100%);
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .auth-brand-panel {
        padding: 30px;
        text-align: center;
    }

    .auth-logo {
        margin-bottom: 18px;
    }

    .auth-copy {
        max-width: 100%;
    }

    .auth-copy h1 {
        font-size: 34px;
    }

    .auth-benefits {
        margin-top: 24px;
    }

    .auth-card {
        border-left: 0;
        border-top: 1px solid var(--home-border);
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .home-navbar-inner {
        min-height: 66px;
    }

    .home-logo img {
        height: 42px;
    }

    .home-hero {
        padding: 34px 0 28px;
    }

    .home-hero-copy h1 {
        font-size: 36px;
    }

    .home-hero-copy p {
        font-size: 15px;
    }

    .home-hero-visual {
        min-height: auto;
        margin-top: 28px;
    }

    .home-preview-bg {
        display: none;
    }

    .home-desktop-device {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        border-width: 5px;
        border-radius: 22px;
    }

    .home-device-top {
        height: 28px;
        padding-left: 16px;
    }

    .home-device-top span {
        width: 9px;
        height: 9px;
    }

    .home-trust-row {
        margin-top: 30px;
    }

    .home-trust-row div {
        padding: 18px;
        border-radius: 18px;
    }

    .home-services-grid,
    .home-brand-grid,
    .home-steps-grid {
        grid-template-columns: 1fr;
    }

    .home-brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .home-section {
        padding: 44px 0;
    }

    .home-service-card,
    .home-step-card,
    .home-method-grid article,
    .home-contact-grid a {
        min-height: auto;
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .home-service-icon,
    .home-step-icon,
    .home-method-grid i,
    .home-contact-grid i {
        margin-bottom: 18px;
    }

    .home-service-icon, 
    .home-step-icon, 
    .home-method-grid i {
        margin: auto;
    }

    .home-service-card, 
    .home-step-card,
    .home-method-panel,
    .home-contact-panel {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .auth-page {
        min-height: 100vh;
        padding: 18px;
        place-items: center;
    }

    .auth-shell {
        width: 100%;
        max-width: 420px;
        min-height: auto;
        display: block;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }

    .auth-brand-panel {
        display: none;
    }

    .auth-card {
        width: 100%;
        border: 1px solid var(--home-border);
        border-radius: 24px;
        box-shadow: var(--home-shadow);
        background: var(--home-white-light);
        padding: 26px 22px;
    }

    .auth-card-header h2 {
        font-size: 24px;
    }

    .auth-card-header p {
        font-size: 13px;
    }

    .auth-card-footer {
        margin-top: 16px;
    }
}

@media (max-width: 420px) {
    .home-hero-copy h1 {
        font-size: 31px;
    }

    .home-desktop-device {
        border-radius: 18px;
    }

    .home-auth-header {
        padding: 28px 22px 10px;
    }

    .home-auth-body {
        padding: 18px 22px 26px;
    }
}

/*
|--------------------------------------------------------------------------
| Mensajes flotantes públicos
|--------------------------------------------------------------------------
*/

.public-floating-message {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 3000;
    max-width: 360px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--home-white-light);
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow);
    color: var(--home-text);
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: .25s ease;
}

.public-floating-message.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.public-floating-message i {
    font-size: 20px;
}

.public-floating-message span {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

.public-floating-message.success i {
    color: var(--home-success);
}

.public-floating-message.error i {
    color: #dc3545;
}

@media (max-width: 575px) {
    .public-floating-message {
        top: 14px;
        left: 14px;
        right: 14px;
        max-width: none;
    }
}

/*
|--------------------------------------------------------------------------
| Ajustes hero móvil
|--------------------------------------------------------------------------
*/

@media (max-width: 575px) {
    .home-hero {
        padding: 28px 0 38px;
    }

    .home-hero-stage {
        display: block;
        min-height: auto;
    }

    .home-hero-copy {
        text-align: center;
    }

    .home-pill {
        margin-bottom: 22px;
        padding: 9px 14px;
        font-size: 12px;
    }

    .home-hero-copy h1 {
        max-width: 330px;
        margin: 0 auto 18px;
        font-size: 28px;
        line-height: 1.16;
        letter-spacing: -.045em;
    }

    .home-hero-copy p {
        max-width: 315px;
        margin: 0 auto 24px;
        font-size: 14px;
        line-height: 1.65;
    }

    .home-hero-buttons {
        max-width: 315px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .home-hero-buttons .btn-home-main,
    .home-hero-buttons .btn-home-light {
        width: 100%;
        min-height: 42px;
        padding: 8px 12px;
        border-radius: 12px;
        font-size: 13px;
    }

    .home-hero-visual {
        display: none;
    }
}

@media (max-width: 370px) {
    .home-hero {
        padding: 24px 0 34px;
    }

    .home-pill {
        padding: 8px 12px;
        font-size: 11px;
        margin-bottom: 20px;
    }

    .home-hero-copy h1 {
        max-width: 300px;
        font-size: 25px;
        line-height: 1.18;
        margin-bottom: 16px;
    }

    .home-hero-copy p {
        max-width: 292px;
        font-size: 13px;
        line-height: 1.62;
        margin-bottom: 22px;
    }

    .home-hero-buttons {
        max-width: 230px;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .home-hero-buttons .btn-home-main,
    .home-hero-buttons .btn-home-light {
        min-height: 39px;
        padding: 7px 12px;
        border-radius: 11px;
        font-size: 12px;
        justify-content: center;
    }

    .home-hero-buttons .btn-home-main i,
    .home-hero-buttons .btn-home-light i {
        font-size: 13px;
    }
}