:root {
    --brand: #111111;
    --brand-dark: #000000;
    --brand-text: #ffffff;
    --accent-dark: #111111;
    --accent-grey: #3f3f46;
    --bg-page: #f5f6f7;
    --bg-card: #ffffff;
    --text-main: #222222;
    --text-soft: #555555;
    --text-muted: #777777;
    --border-light: #e6e6e6;
    --border-soft: #eeeeee;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    --container-text: 820px;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: 'Arimo', Arial, Helvetica, sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
}

#container {
    background: #fff;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #1e272e;
}

a {
    color: #111111;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #444444;
    text-decoration: none;
}

#main-header {
    background: #fff;
    border-bottom: 1px solid var(--border-soft);
}

.top-bar {
    display: none;
}

.top-bar-separator {
    opacity: 0.45;
    margin: 0 6px;
}

.promo-bar {
    background: #1476db;
    color: #ffffff;
    padding: 16px 0;
}

.promo-bar__inner {
    max-width: 1380px;
    margin: 0 auto;
    padding-left: 38px;
    padding-right: 38px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.promo-bar__item {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
}

.promo-bar__item--left {
    text-align: left;
}

.promo-bar__item--center {
    text-align: center;
}

.promo-bar__item--right {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 600;
}

.promo-bar__item--center a,
.promo-bar__item--right a {
    color: #ffffff;
    text-decoration: none;
}

.promo-bar__item--center span {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.promo-bar__item--center a:hover,
.promo-bar__item--center a:focus,
.promo-bar__item--right a:hover,
.promo-bar__item--right a:focus {
    color: #ffffff;
    opacity: 0.92;
}

@media (max-width: 980px) {
    .promo-bar {
        padding: 12px 0;
    }

    .promo-bar__inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .promo-bar__item,
    .promo-bar__item--left,
    .promo-bar__item--center,
    .promo-bar__item--right {
        text-align: center;
        justify-content: center;
        font-size: 15px;
    }
}

.header-main,
.head,
.site-header {
    background: #fff;
    padding: 25px 0;
    text-align: center;
}

#logo img {
    max-height: 70px;
    width: auto;
}

#nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav li {
    display: inline-block;
}

.main-nav {
    background: #4a4a52;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.main-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 42px;
    padding: 14px 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.main-nav li {
    display: flex;
    align-items: center;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 0 0 3px;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease, opacity .2s ease;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #ffffff;
    border-bottom-color: rgba(255,255,255,0.65);
}

.main-nav a.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

@media (max-width: 900px) {
    .main-nav .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .main-nav ul {
        gap: 20px;
        padding: 12px 0;
    }

    .main-nav a {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 640px) {
    .main-nav .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .main-nav ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px 0;
    }

    .main-nav li {
        width: 100%;
        justify-content: center;
    }

    .main-nav a {
        width: 100%;
        min-height: 36px;
        padding: 0 10px;
        font-size: 11px;
        letter-spacing: 0.4px;
        border-bottom: none;
        border-radius: 6px;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(255,255,255,0.10);
        border-bottom: none;
    }
}
.btn,
.btn-primary,
.btn-success,
.btn-wp,
.btn-wp-primary {
    background-color: #111111 !important;
    border-color: #111111 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    padding: 12px 26px !important;
    font-size: 14px !important;
    line-height: 1.2;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn:hover,
.btn:focus,
.btn-primary:hover,
.btn-primary:focus,
.btn-success:hover,
.btn-success:focus,
.btn-wp:hover,
.btn-wp:focus,
.btn-wp-primary:hover,
.btn-wp-primary:focus {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.wp-banner {
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
    color: #ffffff;
    padding: 70px 0;
    margin: 60px 0 0;
    text-align: center;
}

.wp-banner .container {
    max-width: 980px;
    margin: 0 auto;
}

.wp-banner h2 {
    margin: 0 0 16px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.wp-banner p {
    margin: 0 auto 28px;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
}

.wp-banner .btn-wp {
    min-width: 240px;
    border-radius: 8px !important;
    padding: 14px 28px !important;
}

#footer {
    background: #050505;
    color: rgba(255,255,255,0.78);
    padding: 72px 0 26px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-shell {
    max-width: 1380px;
    margin: 0 auto;
    padding-left: 38px;
    padding-right: 38px;
}

.footer-grid {
    display: grid;
    align-items: start;
    gap: 54px;
}

.footer-grid--4 {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-brand__logo {
    display: inline-block;
    text-decoration: none;
}

.footer-brand__logo img {
    display: block;
    max-width: 220px;
    max-height: 56px;
    width: auto;
    height: auto;
}

.footer-col {
    text-align: left;
}

.footer-col h4 {
    margin: 0 0 22px;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(255,255,255,0.68);
    letter-spacing: 0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: opacity .2s ease;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #ffffff;
    opacity: 0.75;
}

.footer-bottom {
    margin-top: 56px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.10);
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.42);
}

@media (max-width: 1200px) {
    .footer-grid--4 {
        grid-template-columns: 1fr 1fr;
        gap: 40px 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    #footer {
        padding: 52px 0 22px;
    }

    .footer-shell {
        padding-left: 22px;
        padding-right: 22px;
    }

    .footer-grid--4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        justify-content: flex-start;
    }

    .footer-brand__logo img {
        max-width: 180px;
        max-height: 46px;
    }

    .footer-col h4 {
        margin-bottom: 18px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 17px;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 28px;
    }

    .footer-col {
        text-align: center;
    }
}


.fv-home {
    max-width: 1180px;
    margin: 34px auto 0;
    padding: 0 24px 10px;
}

.fv-home__hero {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.05);
    padding: 64px 56px;
    text-align: center;
}

.fv-home__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(20,118,219,0.10);
    color: #1476db;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.fv-home__title {
    margin: 0 0 18px;
    font-size: 54px;
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: #111111;
}

.fv-home__subtitle {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
}

.fv-home__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.fv-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: .2s ease;
    box-sizing: border-box;
}

.fv-home-btn--primary {
    background: #111111;
    color: #ffffff !important;
    border: 1px solid #111111;
}

.fv-home-btn--primary:hover {
    background: #000000;
    color: #ffffff !important;
}

.fv-home-btn--secondary {
    background: #ffffff;
    color: #111111 !important;
    border: 1px solid #d9d9d9;
}

.fv-home-btn--secondary:hover {
    border-color: #111111;
    color: #111111 !important;
}

.fv-home__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.fv-home__card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.04);
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.fv-home__card-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #777777;
}

.fv-home__card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.15;
    color: #111111;
}

.fv-home__card p {
    margin: 0;
    color: #555555;
    line-height: 1.7;
    font-size: 15px;
}

.fv-home__card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 18px auto 0;
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    transition: .2s ease;
    text-align: center;
}

.fv-home__card-link:hover {
    color: #1476db;
    text-decoration: underline;
}

.fv-home-kb {
    margin-top: 24px;
}

.fv-home-kb__inner {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.04);
    padding: 34px;
    text-align: center;
}

.fv-home-kb__title {
    margin: 0 0 10px;
    font-size: 28px;
    color: #111111;
}

.fv-home-kb__text {
    margin: 0 auto 22px;
    max-width: 680px;
    color: #555555;
    font-size: 16px;
    line-height: 1.7;
}

.fv-home-kb__search {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fv-home-kb__search input[type="text"] {
    width: 100%;
    max-width: 460px;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .fv-home__hero {
        padding: 44px 24px;
    }

    .fv-home__title {
        font-size: 38px;
    }

    .fv-home__subtitle {
        font-size: 16px;
    }

    .fv-home__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .fv-home {
        margin-top: 20px;
        padding: 0 14px 10px;
    }

    .fv-home__title {
        font-size: 32px;
    }

    .fv-home__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fv-home-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .fv-home-kb__inner {
        padding: 24px 18px;
    }

    .fv-home-kb__search {
        flex-direction: column;
    }

    .fv-home-kb__search input[type="text"] {
        max-width: 100%;
    }
}

.fv-home__card-link {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    transition: .2s ease;
}

.fv-home__card-link:hover {
    color: #1476db;
    text-decoration: underline;
}

/* PAGINA ABRIR UN TICKET*/ 
.fv-ticket-page {
    max-width: 1180px;
    margin: 34px auto 0;
    padding: 0 24px 24px;
}

.fv-ticket-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.05);
    padding: 56px 48px;
    text-align: center;
    margin-bottom: 22px;
}

.fv-ticket-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(20,118,219,0.10);
    color: #1476db;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.fv-ticket-hero__title {
    margin: 0 0 16px;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #111111;
}

.fv-ticket-hero__text {
    max-width: 820px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
}

.fv-ticket-box {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.04);
    padding: 34px 36px;
    overflow: hidden;
}

.fv-ticket-box hr {
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.12);
    margin: 18px 0 22px;
}

.fv-ticket-section {
    margin-bottom: 28px;
}

.fv-ticket-section__header {
    margin-bottom: 14px;
    color: #111111;
    font-weight: 700;
}

.fv-ticket-client {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.fv-ticket-client__row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.fv-ticket-client__label {
    font-weight: 600;
    color: #111111;
}

.fv-ticket-client__value {
    color: #111111;
    min-width: 0;
}

.fv-ticket-field {
    width: 100%;
}

.fv-ticket-box select,
.fv-ticket-box input[type="text"],
.fv-ticket-box input[type="email"],
.fv-ticket-box input[type="password"],
.fv-ticket-box input[type="file"],
.fv-ticket-box textarea {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 15px;
    color: #111111;
    background: #ffffff;
    box-shadow: none;
}

.fv-ticket-box textarea {
    min-height: 160px;
    padding: 14px 16px;
    resize: vertical;
}

.fv-ticket-box select:focus,
.fv-ticket-box input[type="text"]:focus,
.fv-ticket-box input[type="email"]:focus,
.fv-ticket-box input[type="password"]:focus,
.fv-ticket-box input[type="file"]:focus,
.fv-ticket-box textarea:focus {
    outline: none;
    border-color: #1476db;
    box-shadow: 0 0 0 3px rgba(20,118,219,0.10);
}

.fv-ticket-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #111111;
}

.fv-ticket-box .form-header,
.fv-ticket-box b,
.fv-ticket-box strong {
    color: #111111;
    font-weight: 700;
}

.fv-ticket-box .error,
.fv-ticket-box font.error {
    display: inline-block;
    margin-top: 8px;
    color: #b42318 !important;
    font-size: 13px;
    font-weight: 600;
}

.fv-ticket-box .required {
    color: #111111;
}

.fv-ticket-dynamic {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.fv-ticket-dynamic table,
.fv-ticket-dynamic tbody,
.fv-ticket-dynamic tr,
.fv-ticket-dynamic td {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.fv-ticket-dynamic tr {
    display: block;
    width: 100% !important;
    margin-bottom: 18px;
}

.fv-ticket-dynamic td {
    display: block;
    width: 100% !important;
    padding: 0 !important;
}

.fv-ticket-dynamic td[colspan="2"] {
    width: 100% !important;
    max-width: 100% !important;
}

.fv-ticket-dynamic .form-header {
    width: 100%;
    margin-bottom: 12px !important;
}

.fv-ticket-dynamic .form-header h3,
.fv-ticket-dynamic h3 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.2;
    color: #111111;
}

.fv-ticket-dynamic .form-header div,
.fv-ticket-dynamic .instructions,
.fv-ticket-dynamic .field-desc,
.fv-ticket-dynamic .description {
    margin-top: 6px;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

.fv-ticket-dynamic label {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

.fv-ticket-dynamic input[type="text"],
.fv-ticket-dynamic input[type="email"],
.fv-ticket-dynamic input[type="password"],
.fv-ticket-dynamic select,
.fv-ticket-dynamic textarea {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.fv-ticket-dynamic textarea.richtext,
.fv-ticket-dynamic .richtext,
.fv-ticket-dynamic .redactor-box,
.fv-ticket-dynamic .redactor-layer,
.fv-ticket-dynamic .redactor-editor {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.fv-ticket-dynamic .filedrop,
.fv-ticket-dynamic .files,
.fv-ticket-dynamic .dropzone,
.fv-ticket-dynamic .attachments,
.fv-ticket-dynamic .files-canvas {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.fv-ticket-box .files-canvas,
.fv-ticket-box .attachments,
.fv-ticket-box .dragdrop,
.fv-ticket-box .filedrop {
    border: 1px dashed #cfcfcf;
    border-radius: 10px;
    background: #fafafa;
    padding: 14px;
}

.fv-ticket-box .files-canvas a,
.fv-ticket-box .attachments a,
.fv-ticket-box .dragdrop a,
.fv-ticket-box .filedrop a {
    color: #1476db;
    text-decoration: none;
    font-weight: 600;
}

.fv-ticket-box .files-canvas a:hover,
.fv-ticket-box .attachments a:hover,
.fv-ticket-box .dragdrop a:hover,
.fv-ticket-box .filedrop a:hover {
    text-decoration: underline;
}

.fv-ticket-captcha {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.fv-ticket-captcha__label {
    font-weight: 600;
    color: #111111;
}

.fv-ticket-captcha__content {
    min-width: 0;
}

.fv-ticket-box .captchaRow img,
.fv-ticket-box .captcha img {
    margin-right: 12px;
    border-radius: 6px;
}

.fv-ticket-box em {
    display: block;
    margin-top: 10px;
    font-style: normal;
    color: #666666;
    font-size: 14px;
}

.fv-ticket-actions {
    text-align: center;
    margin: 30px 0 0;
}

.fv-ticket-actions input[type="submit"],
.fv-ticket-actions input[type="reset"],
.fv-ticket-actions input[type="button"] {
    min-height: 50px;
    padding: 0 24px;
    margin: 6px;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    background: #ffffff;
    color: #111111 !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.fv-ticket-actions input[type="submit"] {
    background: #1476db;
    border-color: #1476db;
    color: #ffffff !important;
}

.fv-ticket-actions input[type="submit"]:hover {
    background: #0f67c4;
    border-color: #0f67c4;
    color: #ffffff !important;
}

.fv-ticket-actions input[type="reset"]:hover,
.fv-ticket-actions input[type="button"]:hover {
    border-color: #111111;
    color: #111111 !important;
}

@media (max-width: 900px) {
    .fv-ticket-hero {
        padding: 42px 24px;
    }

    .fv-ticket-hero__title {
        font-size: 34px;
    }

    .fv-ticket-hero__text {
        font-size: 16px;
    }

    .fv-ticket-box {
        padding: 24px 18px;
    }

    .fv-ticket-client__row,
    .fv-ticket-captcha {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 640px) {
    .fv-ticket-page {
        margin-top: 20px;
        padding: 0 14px 20px;
    }

    .fv-ticket-hero__title {
        font-size: 30px;
    }

    .fv-ticket-actions input[type="submit"],
    .fv-ticket-actions input[type="reset"],
    .fv-ticket-actions input[type="button"] {
        width: 100%;
        box-sizing: border-box;
        margin: 6px 0;
    }

    .fv-ticket-box select,
    .fv-ticket-box input[type="text"],
    .fv-ticket-box input[type="email"],
    .fv-ticket-box input[type="password"],
    .fv-ticket-box input[type="file"],
    .fv-ticket-box textarea {
        font-size: 16px;
    }
}
/* CIERRE DE PAGINA ABRIR UN TICKET*/

/* PAGINA LOGIN*/
.fv-auth-page {
    max-width: 1180px;
    margin: 34px auto 0;
    padding: 0 24px 24px;
}

.fv-auth-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.05);
    padding: 56px 48px;
    text-align: center;
    margin-bottom: 22px;
}

.fv-auth-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(20,118,219,0.10);
    color: #1476db;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.fv-auth-hero__title {
    margin: 0 0 16px;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #111111;
}

.fv-auth-hero__text {
    max-width: 820px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
}

.fv-auth-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 22px;
}

.fv-auth-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.04);
    padding: 34px 30px;
}

.fv-auth-card__title {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.15;
    color: #111111;
}

.fv-auth-card__text {
    margin: 0 0 22px;
    color: #555555;
    font-size: 16px;
    line-height: 1.7;
}

.fv-auth-form {
    margin: 0;
}

.fv-auth-field {
    margin-bottom: 14px;
}

.fv-auth-field input[type="text"],
.fv-auth-field input[type="password"] {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 15px;
    background: #ffffff;
}

.fv-auth-field input[type="text"]:focus,
.fv-auth-field input[type="password"]:focus {
    outline: none;
    border-color: #111111;
}

.fv-auth-input--error {
    border-color: #b42318 !important;
    background: #fff9f9;
}

.fv-auth-field-error {
    margin-top: 8px;
    color: #b42318;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 18px;
}

.fv-auth-error {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff4f4;
    border: 1px solid #efcaca;
    color: #b42318;
    font-size: 14px;
    font-weight: 700;
}

.fv-auth-help-link {
    margin-top: 14px;
}

.fv-auth-help-link--always {
    display: block;
}

.fv-auth-help-link a,
.fv-auth-text-link {
    color: #111111;
    font-weight: 700;
    text-decoration: none;
}

.fv-auth-help-link a:hover,
.fv-auth-text-link:hover {
    color: #1476db;
    text-decoration: underline;
}

.fv-auth-actions {
    margin-top: 18px;
}

.fv-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: .2s ease;
    box-sizing: border-box;
    cursor: pointer;
}

.fv-auth-btn--primary {
    width: 100%;
    border: 1px solid #111111;
    background: #111111;
    color: #ffffff;
}

.fv-auth-btn--primary:hover {
    background: #000000;
    color: #ffffff;
}

.fv-auth-btn--secondary {
    border: 1px solid #d9d9d9;
    background: #ffffff;
    color: #111111;
}

.fv-auth-btn--secondary:hover {
    border-color: #111111;
    color: #111111;
}

.fv-auth-help-link {
    margin-top: 14px;
}

.fv-auth-help-link a,
.fv-auth-text-link {
    color: #111111;
    font-weight: 700;
    text-decoration: none;
}

.fv-auth-help-link a:hover,
.fv-auth-text-link:hover {
    color: #1476db;
    text-decoration: underline;
}

.fv-auth-info-block + .fv-auth-info-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.fv-auth-info-block h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    color: #111111;
}

.fv-auth-info-block p {
    margin: 0 0 16px;
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
}

.fv-auth-error {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff4f4;
    border: 1px solid #efcaca;
    color: #b42318;
    font-size: 14px;
    font-weight: 700;
}

.fv-auth-external {
    margin-top: 24px;
}

@media (max-width: 900px) {
    .fv-auth-hero {
        padding: 42px 24px;
    }

    .fv-auth-hero__title {
        font-size: 34px;
    }

    .fv-auth-hero__text {
        font-size: 16px;
    }

    .fv-auth-grid {
        grid-template-columns: 1fr;
    }

    .fv-auth-card {
        padding: 24px 18px;
    }
}

@media (max-width: 640px) {
    .fv-auth-page {
        margin-top: 20px;
        padding: 0 14px 20px;
    }

    .fv-auth-hero__title {
        font-size: 30px;
    }

    .fv-auth-btn,
    .fv-auth-btn--secondary {
        width: 100%;
    }
}

/* PAGINA view.inc*/
.fv-view-page {
    max-width: 1180px;
    margin: 34px auto 0;
    padding: 0 24px 24px;
}

.fv-view-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.05);
    padding: 56px 48px;
    text-align: center;
    margin-bottom: 22px;
}

.fv-view-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(20,118,219,0.10);
    color: #1476db;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.fv-view-hero__title {
    margin: 0 0 10px;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #111111;
}

.fv-view-hero__meta {
    margin: 0 0 24px;
    color: #666666;
    font-size: 16px;
}

.fv-view-hero__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fv-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: .2s ease;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.fv-view-btn--secondary {
    background: #ffffff;
    color: #111111 !important;
    border: 1px solid #d9d9d9;
}

.fv-view-btn--secondary:hover {
    border-color: #111111;
    color: #111111 !important;
}

.fv-view-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 22px;
}

.fv-view-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.04);
    padding: 28px;
}

.fv-view-card--full {
    margin-bottom: 22px;
}

.fv-view-card__title {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.15;
    color: #111111;
}

.fv-view-data {
    display: grid;
    gap: 14px;
}

.fv-view-data__row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
    padding: 10px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.fv-view-data__row:first-child {
    border-top: 0;
    padding-top: 0;
}

.fv-view-data__label {
    font-weight: 700;
    color: #111111;
}

.fv-view-data__value {
    color: #555555;
    min-width: 0;
    word-break: break-word;
}

.fv-thread-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

.fv-view-alert {
    margin: 0 0 22px;
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    border: 1px solid transparent;
}

.fv-view-alert a {
    color: inherit;
    font-weight: 700;
}

.fv-view-alert--info {
    background: #f5f9ff;
    border-color: #dbeafe;
    color: #174ea6;
}

.fv-view-alert--error {
    background: #fff4f4;
    border-color: #efcaca;
    color: #b42318;
}

.fv-view-alert--notice {
    background: #f6fbf6;
    border-color: #cfe8cf;
    color: #1f6f43;
}

.fv-view-alert--warning {
    background: #fff8eb;
    border-color: #f5d9a8;
    color: #946200;
}

.fv-view-reply-help {
    margin: 0 0 16px;
    color: #555555;
    line-height: 1.7;
}

.fv-view-card textarea,
.fv-view-card input[type="text"],
.fv-view-card input[type="email"],
.fv-view-card input[type="password"],
.fv-view-card select {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 15px;
    color: #111111;
    background: #ffffff;
    box-shadow: none;
}

.fv-view-card textarea {
    min-height: 180px;
    padding: 14px 16px;
    resize: vertical;
}

.fv-view-card textarea:focus,
.fv-view-card input[type="text"]:focus,
.fv-view-card input[type="email"]:focus,
.fv-view-card input[type="password"]:focus,
.fv-view-card select:focus {
    outline: none;
    border-color: #1476db;
    box-shadow: 0 0 0 3px rgba(20,118,219,0.10);
}

.fv-view-reply-actions {
    text-align: center;
    margin-top: 24px;
}

.fv-view-reply-actions input[type="submit"],
.fv-view-reply-actions input[type="reset"],
.fv-view-reply-actions input[type="button"] {
    min-height: 50px;
    padding: 0 24px;
    margin: 6px;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    background: #ffffff;
    color: #111111 !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.fv-view-reply-actions input[type="submit"] {
    background: #1476db;
    border-color: #1476db;
    color: #ffffff !important;
}

.fv-view-reply-actions input[type="submit"]:hover {
    background: #0f67c4;
    border-color: #0f67c4;
    color: #ffffff !important;
}

.fv-view-reply-actions input[type="reset"]:hover,
.fv-view-reply-actions input[type="button"]:hover {
    border-color: #111111;
    color: #111111 !important;
}

@media (max-width: 900px) {
    .fv-view-hero {
        padding: 42px 24px;
    }

    .fv-view-hero__title {
        font-size: 34px;
    }

    .fv-view-grid {
        grid-template-columns: 1fr;
    }

    .fv-view-data__row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 640px) {
    .fv-view-page {
        margin-top: 20px;
        padding: 0 14px 20px;
    }

    .fv-view-hero__title {
        font-size: 28px;
    }

    .fv-view-reply-actions input[type="submit"],
    .fv-view-reply-actions input[type="reset"],
    .fv-view-reply-actions input[type="button"] {
        width: 100%;
        box-sizing: border-box;
        margin: 6px 0;
    }
}

#ticketThread {
    width: 100%;
    max-width: 100%;
}

#ticketThread .thread-entry,
#ticketThread .response,
#ticketThread .message,
#ticketThread .entry {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 18px 20px;
    margin: 0 0 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.03);
}

#ticketThread .thread-entry:first-child,
#ticketThread .response:first-child,
#ticketThread .message:first-child,
#ticketThread .entry:first-child {
    margin-top: 0;
}

#ticketThread .header,
#ticketThread .thread-entry-header,
#ticketThread .response-header,
#ticketThread .message-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 14px;
    line-height: 1.5;
}

#ticketThread .header strong,
#ticketThread .header b,
#ticketThread .thread-entry-header strong,
#ticketThread .response-header strong,
#ticketThread .message-header strong {
    color: #111111;
    font-weight: 700;
}

#ticketThread .faded,
#ticketThread .meta,
#ticketThread .time,
#ticketThread .pull-right,
#ticketThread .pull-left,
#ticketThread .extra {
    color: #666666;
    font-size: 13px;
}

#ticketThread .body,
#ticketThread .message-body,
#ticketThread .thread-body,
#ticketThread .entry-body,
#ticketThread .text-body {
    color: #222222;
    font-size: 15px;
    line-height: 1.75;
}

#ticketThread blockquote {
    margin: 12px 0 0;
    padding: 12px 16px;
    border-left: 3px solid #d9d9d9;
    background: #fafafa;
    color: #555555;
}

#ticketThread .attachments,
#ticketThread .files,
#ticketThread .downloads {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(0,0,0,0.10);
}

#ticketThread .attachments a,
#ticketThread .files a,
#ticketThread .downloads a {
    color: #1476db;
    font-weight: 600;
    text-decoration: none;
}

#ticketThread .attachments a:hover,
#ticketThread .files a:hover,
#ticketThread .downloads a:hover {
    text-decoration: underline;
}

/* Diferenciar respuesta del cliente vs equipo */
#ticketThread .thread-entry.response,
#ticketThread .response {
    border-left: 4px solid #1476db;
}

#ticketThread .thread-entry.message,
#ticketThread .message {
    border-left: 4px solid #e5e7eb;
}

/* Si el render genera tablas antiguas */
#ticketThread table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 14px;
}

#ticketThread table > tbody > tr > td {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 18px 20px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

#ticketThread table .header {
    margin: 0 0 10px;
}

@media (max-width: 640px) {
    #ticketThread .thread-entry,
    #ticketThread .response,
    #ticketThread .message,
    #ticketThread .entry,
    #ticketThread table > tbody > tr > td {
        padding: 16px 14px;
        border-radius: 12px;
    }

    #ticketThread .header,
    #ticketThread .thread-entry-header,
    #ticketThread .response-header,
    #ticketThread .message-header {
        display: block;
    }
}
/* FIN PAGINA view.inc*/

/* PAGINA TICKETS.inc*/
.fv-list-page {
    max-width: 1180px;
    margin: 34px auto 0;
    padding: 0 24px 24px;
}

.fv-list-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.05);
    padding: 56px 48px;
    text-align: center;
    margin-bottom: 22px;
}

.fv-list-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(20,118,219,0.10);
    color: #1476db;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.fv-list-hero__title {
    margin: 0 0 16px;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #111111;
}

.fv-list-hero__text {
    max-width: 820px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
}

.fv-list-toolbar {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.04);
    padding: 24px;
    margin-bottom: 18px;
}

.fv-list-filters {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.fv-list-filter input[type="text"],
.fv-list-filter select {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 15px;
    color: #111111;
    background: #ffffff;
}

.fv-list-filter input[type="text"]:focus,
.fv-list-filter select:focus {
    outline: none;
    border-color: #1476db;
    box-shadow: 0 0 0 3px rgba(20,118,219,0.10);
}

.fv-list-filter--button input[type="submit"] {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 10px;
    border: 1px solid #1476db;
    background: #1476db;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
}

.fv-list-filter--button input[type="submit"]:hover {
    background: #0f67c4;
    border-color: #0f67c4;
}

.fv-list-clear {
    margin-top: 14px;
}

.fv-list-clear a {
    color: #666666;
    font-weight: 700;
    text-decoration: none;
}

.fv-list-clear a:hover {
    color: #1476db;
    text-decoration: underline;
}

.fv-list-states {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.fv-list-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    color: #111111;
    text-decoration: none;
    font-weight: 700;
}

.fv-list-state.active {
    background: rgba(20,118,219,0.10);
    border-color: rgba(20,118,219,0.18);
    color: #1476db;
}

.fv-list-table-wrap {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.04);
    padding: 22px 22px 12px;
    overflow: hidden;
}

.fv-list-caption {
    margin-bottom: 14px;
    color: #666666;
    font-size: 14px;
}

.fv-list-table {
    width: 100%;
    border-collapse: collapse;
}

.fv-list-table thead th {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #666666;
}

.fv-list-table thead th a {
    color: inherit;
    text-decoration: none;
}

.fv-list-table tbody td {
    padding: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: #222222;
    vertical-align: middle;
}

.fv-list-table tbody tr:last-child td {
    border-bottom: 0;
}

.fv-ticket-link {
    color: #111111;
    font-weight: 700;
    text-decoration: none;
}

.fv-ticket-link:hover {
    color: #1476db;
}

.fv-ticket-subject {
    max-width: 100%;
    color: #222222;
}

.fv-ticket-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
}

.fv-ticket-status--open {
    background: rgba(20,118,219,0.10);
    color: #1476db;
}

.fv-ticket-status--closed {
    background: #f3f4f6;
    color: #444444;
}

.fv-list-pagination {
    margin-top: 18px;
    color: #666666;
    font-size: 14px;
}

.fv-list-pagination a {
    color: #1476db;
    text-decoration: none;
    font-weight: 700;
}

.fv-list-pagination a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .fv-list-hero {
        padding: 42px 24px;
    }

    .fv-list-hero__title {
        font-size: 34px;
    }

    .fv-list-hero__text {
        font-size: 16px;
    }

    .fv-list-filters {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .fv-list-page {
        margin-top: 20px;
        padding: 0 14px 20px;
    }

    .fv-list-hero__title {
        font-size: 30px;
    }

    .fv-list-toolbar,
    .fv-list-table-wrap {
        padding: 18px 14px;
    }

    .fv-list-table-wrap {
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
    }

    .fv-list-caption {
        margin: 0 0 12px;
        padding: 0 4px;
    }

    .fv-list-table thead {
        display: none;
    }

    .fv-list-table,
    .fv-list-table tbody,
    .fv-list-table tr,
    .fv-list-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .fv-list-table tr {
        margin-bottom: 14px;
        padding: 16px 14px;
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.06);
        border-radius: 18px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    }

    .fv-list-table tr:last-child {
        margin-bottom: 0;
    }

    .fv-list-table tbody td {
        border: 0;
        padding: 8px 0;
    }

    .fv-list-table tbody td:before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .04em;
        color: #666666;
    }
}
/* FIN PAGINA TICKETS.inc*/

/* PAGINA REGISTER.inc*/
.fv-register-form {
    margin: 0;
}

.fv-register-dynamic {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.fv-register-dynamic table,
.fv-register-dynamic tbody,
.fv-register-dynamic tr,
.fv-register-dynamic td {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.fv-register-dynamic tr {
    display: block;
    width: 100% !important;
    margin-bottom: 18px;
}

.fv-register-dynamic td {
    display: block;
    width: 100% !important;
    padding: 0 !important;
}

.fv-register-dynamic td[colspan="2"] {
    width: 100% !important;
    max-width: 100% !important;
}

.fv-register-dynamic .form-header h3,
.fv-register-dynamic h3 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
    color: #111111;
}

.fv-register-dynamic .instructions,
.fv-register-dynamic .field-desc,
.fv-register-dynamic .description,
.fv-register-dynamic .form-header div {
    margin-top: 6px;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

.fv-register-dynamic label {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 8px;
    font-weight: 600;
    color: #111111;
}

.fv-register-dynamic input[type="text"],
.fv-register-dynamic input[type="email"],
.fv-register-dynamic input[type="password"],
.fv-register-dynamic input[type="tel"],
.fv-register-dynamic input[name*="phone"],
.fv-register-dynamic input[name*="telefono"],
.fv-register-dynamic input[name*="telephone"],
.fv-register-dynamic select,
.fv-register-dynamic textarea {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-sizing: border-box !important;
    font-size: 15px;
    color: #111111;
    background: #ffffff;
    box-shadow: none;
}

.fv-register-dynamic textarea {
    min-height: 160px;
    padding: 14px 16px;
    resize: vertical;
}

.fv-register-dynamic input[type="text"]:focus,
.fv-register-dynamic input[type="email"]:focus,
.fv-register-dynamic input[type="password"]:focus,
.fv-register-dynamic input[type="tel"]:focus,
.fv-register-dynamic input[name*="phone"]:focus,
.fv-register-dynamic input[name*="telefono"]:focus,
.fv-register-dynamic input[name*="telephone"]:focus,
.fv-register-dynamic select:focus,
.fv-register-dynamic textarea:focus {
    outline: none;
    border-color: #1476db;
    box-shadow: 0 0 0 3px rgba(20,118,219,0.10);
}

.fv-register-dynamic .error,
.fv-register-dynamic font.error {
    display: inline-block;
    margin-top: 8px;
    color: #b42318 !important;
    font-size: 13px;
    font-weight: 600;
}

.fv-register-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.fv-register-section__title {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.2;
    color: #111111;
}

.fv-register-field {
    margin-bottom: 16px;
}

.fv-register-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #111111;
}

.fv-register-field input[type="password"] {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 15px;
    color: #111111;
    background: #ffffff;
}

.fv-register-field input[type="password"]:focus {
    outline: none;
    border-color: #1476db;
    box-shadow: 0 0 0 3px rgba(20,118,219,0.10);
}

.fv-register-row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.fv-register-label {
    font-weight: 700;
    color: #111111;
}

.fv-register-value {
    color: #555555;
    min-width: 0;
}

.fv-register-actions {
    display: flex;
    width: 100%;
    gap: 14px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.fv-register-actions .fv-auth-btn,
.fv-register-actions .fv-auth-btn--primary,
.fv-register-actions .fv-auth-btn--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 52px;
    padding: 0 26px;
    box-sizing: border-box;
}

@media (min-width: 641px) {
    .fv-register-actions .fv-auth-btn,
    .fv-register-actions .fv-auth-btn--primary,
    .fv-register-actions .fv-auth-btn--secondary {
        flex: 0 0 180px;
    }
}

.fv-auth-btn--ghost,
.fv-register-actions .fv-auth-btn--secondary {
    background: #ffffff;
    color: #111111 !important;
    border: 1px solid #d9d9d9;
}

.fv-auth-btn--ghost:hover,
.fv-register-actions .fv-auth-btn--secondary:hover {
    border-color: #111111;
    color: #111111 !important;
    background: #ffffff;
}

.fv-register-privacy {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
    margin-bottom: 22px;
    padding: 18px 18px;
    border: 1px solid rgba(20,118,219,0.14);
    border-left: 4px solid #b7d400;
    border-radius: 12px;
    background: #f8fbff;
}

.fv-register-privacy__icon {
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
}

.fv-register-privacy__text {
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
}

.fv-register-privacy__text a {
    color: #1476db;
    font-weight: 700;
    text-decoration: none;
}

.fv-register-privacy__text a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .fv-register-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 640px) {
    .fv-register-actions {
        flex-direction: column;
        gap: 10px;
    }

    .fv-register-actions .fv-auth-btn,
    .fv-register-actions .fv-auth-btn--secondary,
    .fv-register-actions .fv-auth-btn--primary {
        width: 100%;
        min-width: 100%;
        flex: none;
    }

    .fv-register-privacy {
        padding: 16px 14px;
    }
}

.fv-register-actions .fv-auth-btn--primary,
.fv-register-actions .fv-auth-btn--primary:focus,
.fv-register-actions .fv-auth-btn--primary:active,
.fv-register-actions .fv-auth-btn--primary:visited {
    background: #111111 !important;
    color: #ffffff !important;
    border: 1px solid #111111 !important;
    box-shadow: none !important;
    outline: none !important;
}

.fv-register-actions .fv-auth-btn--primary:hover {
    background: #222222 !important;
    color: #ffffff !important;
    border-color: #222222 !important;
}
/* FIN PAGINA REGISTER.inc*/

/* PAGINA register.confirmed.inc.inc*/
.fv-auth-success {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border: 1px solid rgba(22, 163, 74, 0.16);
    border-left: 4px solid #22c55e;
    border-radius: 12px;
    background: #f6fef9;
}

.fv-auth-success--accesslink {
    align-items: center;
    gap: 18px;
    padding: 22px 22px;
    border: 1px solid rgba(34, 197, 94, 0.16);
    border-left: 4px solid #22c55e;
    border-radius: 16px;
    background: linear-gradient(180deg, #f7fdf9 0%, #f3fbf6 100%);
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.06);
}

.fv-auth-success__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 999px;
    background: #22c55e;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.fv-auth-success--accesslink .fv-auth-success__icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 20px;
    box-shadow: 0 8px 18px rgba(34, 197, 94, 0.18);
}

.fv-auth-success__content {
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
}

.fv-auth-success__content p {
    margin: 0 0 12px;
}

.fv-auth-success__content p:last-child {
    margin-bottom: 0;
}

.fv-auth-success__eyebrow {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #16a34a;
}

.fv-auth-success__title {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.2;
    color: #111111;
}

.fv-auth-success__text {
    margin: 0;
    color: #475467;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 640px) {
    .fv-auth-success--accesslink {
        align-items: flex-start;
        padding: 18px 16px;
    }

    .fv-auth-success__title {
        font-size: 18px;
    }

    .fv-auth-success__text {
        font-size: 14px;
    }
}
/* FIN PAGINA register.confirmed.inc.inc*/

/* PAGINA register.confirm.inc.inc*/
.fv-auth-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border: 1px solid rgba(20,118,219,0.14);
    border-left: 4px solid #1476db;
    border-radius: 12px;
    background: #f8fbff;
}

.fv-auth-notice__icon {
    font-size: 22px;
    line-height: 1;
    margin-top: 2px;
}

.fv-auth-notice__content {
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
}

.fv-auth-notice__content p {
    margin: 0 0 12px;
}

.fv-auth-notice__content p:last-child {
    margin-bottom: 0;
}
/* FIN register.confirm.inc.inc*/


.fv-auth-info-message {
    margin-top: 18px;
    padding: 18px 18px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    background: #ffffff;
    color: #475467;
    font-size: 15px;
    line-height: 1.7;
}


/* PAGINA pwreset.request.php*/
.fv-auth-form {
    margin-top: 18px;
}

.fv-auth-field {
    margin-bottom: 18px;
}

.fv-auth-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #111111;
}

.fv-auth-field input[type="text"],
.fv-auth-field input[type="email"],
.fv-auth-field input[type="password"] {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 15px;
    color: #111111;
    background: #ffffff;
    box-shadow: none;
}

.fv-auth-field input[type="text"]:focus,
.fv-auth-field input[type="email"]:focus,
.fv-auth-field input[type="password"]:focus {
    outline: none;
    border-color: #1476db;
    box-shadow: 0 0 0 3px rgba(20,118,219,0.10);
}

.fv-auth-actions--pwreset {
    display: flex;
    gap: 14px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

.fv-auth-actions--pwreset .fv-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    width: 50%;
    min-width: 0;
    min-height: 52px;
    padding: 0 24px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .fv-auth-actions--pwreset {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .fv-auth-actions--pwreset .fv-auth-btn {
        width: 100%;
        min-width: 100%;
        flex: none;
    }
}

/* PAGINA profile.inc.php*/
.fv-profile-form {
    margin: 0;
}

.fv-profile-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.fv-profile-section__title {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.2;
    color: #111111;
}

.fv-profile-row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    margin-bottom: 18px;
}

.fv-profile-label {
    font-weight: 700;
    color: #111111;
    padding-top: 14px;
}

.fv-profile-value {
    min-width: 0;
    color: #555555;
}

.fv-profile-value input[type="text"],
.fv-profile-value input[type="email"],
.fv-profile-value input[type="password"],
.fv-profile-value select,
.fv-profile-value textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 15px;
    color: #111111;
    background: #ffffff;
    box-shadow: none;
}

.fv-profile-value textarea {
    min-height: 140px;
    padding: 14px 16px;
    resize: vertical;
}

.fv-profile-value input[type="text"]:focus,
.fv-profile-value input[type="email"]:focus,
.fv-profile-value input[type="password"]:focus,
.fv-profile-value select:focus,
.fv-profile-value textarea:focus {
    outline: none;
    border-color: #1476db;
    box-shadow: 0 0 0 3px rgba(20,118,219,0.10);
}

.fv-profile-value .error,
.fv-profile-value span.error,
.fv-profile-value div.error {
    display: inline-block;
    margin-top: 8px;
    color: #b42318 !important;
    font-size: 13px;
    font-weight: 600;
}

.fv-profile-form .fv-auth-btn {
    text-transform: uppercase;
}

.fv-profile-form .fv-js-error {
    display: inline-block;
    margin-top: 8px;
    color: #b42318 !important;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .fv-profile-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .fv-profile-label {
        padding-top: 0;
    }
}

/* PAGINA Base de conocimiento.php*/
.fv-kb-page {
    margin: 0;
}

.fv-kb-grid {
    align-items: start;
}

/* PAGINA kb-search.php*/
.fv-kb-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.fv-kb-main {
    min-width: 0;
}

.fv-kb-title {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.15;
    color: #111111;
}

.fv-kb-subtitle {
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
}

.fv-kb-results-count {
    margin-bottom: 16px;
    color: #475467;
    font-size: 15px;
    line-height: 1.6;
}

.fv-kb-results {
    padding: 22px 22px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    background: #ffffff;
}

.fv-kb-results-list {
    margin: 0;
    padding-left: 20px;
}

.fv-kb-results-list li {
    margin-bottom: 12px;
    color: #111111;
    line-height: 1.6;
}

.fv-kb-results-list li:last-child {
    margin-bottom: 0;
}

.fv-kb-result-link {
    color: #111111;
    text-decoration: none;
    font-weight: 600;
}

.fv-kb-result-link:hover {
    color: #1476db;
    text-decoration: underline;
}

.fv-kb-empty {
    padding: 20px 22px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    background: #ffffff;
    color: #667085;
    font-size: 15px;
    font-weight: 600;
}

.fv-kb-sidebar {
    min-width: 0;
}

.fv-kb-searchbox {
    margin-bottom: 18px;
}

.fv-kb-search-input {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 15px;
    color: #111111;
    background: #ffffff;
}

.fv-kb-search-input:focus {
    outline: none;
    border-color: #1476db;
    box-shadow: 0 0 0 3px rgba(20,118,219,0.10);
}

.fv-kb-panel {
    padding: 22px 20px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    background: #ffffff;
}

.fv-kb-panel-section + .fv-kb-panel-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.fv-kb-panel-title {
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
}

.fv-kb-links > div {
    margin-bottom: 10px;
}

.fv-kb-links > div:last-child {
    margin-bottom: 0;
}

.fv-kb-links a {
    color: #334155;
    text-decoration: none;
    line-height: 1.5;
}

.fv-kb-links a:hover {
    color: #1476db;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .fv-kb-layout {
        grid-template-columns: 1fr;
    }
}

/* PAGINA kb-categories.php*/
.fv-kb-intro {
    margin-bottom: 18px;
    color: #475467;
    font-size: 15px;
    line-height: 1.6;
}

.fv-kb-categories {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fv-kb-category-card {
    padding: 24px 22px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    background: #ffffff;
}

.fv-kb-category-title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.25;
}

.fv-kb-category-title a {
    color: #111111;
    text-decoration: none;
}

.fv-kb-category-title a:hover {
    color: #1476db;
    text-decoration: underline;
}

.fv-kb-category-count {
    font-size: 16px;
    font-weight: 600;
    color: #667085;
}

.fv-kb-category-description {
    margin-bottom: 16px;
    color: #475467;
    font-size: 15px;
    line-height: 1.7;
}

.fv-kb-category-description p:last-child {
    margin-bottom: 0;
}

.fv-kb-subcategories {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8fafc;
}

.fv-kb-subcategory-item {
    margin-bottom: 8px;
}

.fv-kb-subcategory-item:last-child {
    margin-bottom: 0;
}

.fv-kb-subcategory-item a {
    color: #334155;
    text-decoration: none;
    font-weight: 600;
}

.fv-kb-subcategory-item a:hover {
    color: #1476db;
    text-decoration: underline;
}

.fv-kb-popular-list {
    margin-top: 4px;
}

.fv-kb-popular-item {
    margin-bottom: 10px;
    padding-left: 2px;
}

.fv-kb-popular-item:last-child {
    margin-bottom: 0;
}

.fv-kb-popular-item a {
    color: #111111;
    text-decoration: none;
    line-height: 1.6;
}

.fv-kb-popular-item a:hover {
    color: #1476db;
    text-decoration: underline;
}

.fv-kb-select {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 15px;
    color: #111111;
    background: #ffffff;
}

.fv-kb-select:focus {
    outline: none;
    border-color: #1476db;
    box-shadow: 0 0 0 3px rgba(20,118,219,0.10);
}

.fv-kb-panel-text {
    color: #475467;
    font-size: 15px;
    line-height: 1.7;
}

/* PAGINA FAQ.php*/
.fv-kb-breadcrumbs {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
    color: #667085;
}

.fv-kb-breadcrumbs a {
    color: #475467;
    text-decoration: none;
}

.fv-kb-breadcrumbs a:hover {
    color: #1476db;
    text-decoration: underline;
}

.fv-kb-breadcrumbs__sep {
    margin: 0 8px;
    color: #98a2b3;
}

.fv-faq-article {
    padding: 24px 22px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    background: #ffffff;
}

.fv-faq-article__title {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.2;
    color: #111111;
}

.fv-faq-article__meta {
    margin-bottom: 18px;
    font-size: 14px;
    color: #667085;
    line-height: 1.5;
}

.fv-faq-article__content {
    color: #334155;
    font-size: 15px;
    line-height: 1.75;
}

.fv-faq-article__content p:last-child {
    margin-bottom: 0;
}

.fv-faq-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.fv-faq-article__content table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
}

.fv-faq-article__content iframe {
    max-width: 100%;
}

/* PAGINA FAQ-category.php*/
.fv-kb-subcategories--category {
    margin-bottom: 22px;
}

.fv-kb-section-title {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.25;
    color: #111111;
}

.fv-kb-attachment-indicator {
    font-size: 14px;
    vertical-align: middle;
}

/* Powered*/
#poweredBy {
    margin: 18px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.82);
}

#poweredBy span {
    line-height: 1;
}

#poweredBy a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

#poweredBy img {
    display: block;
    height: 22px;
    width: auto;
    max-width: 180px;
    opacity: 0.96;
}

#poweredBy a:hover img {
    opacity: 1;
}