/* ==========================================================================
   MasReforma - Estilos personalizados del tema GoBizOriginal
   Archivo: templates/GoBizOriginal/gobiz_original_assets/css/custom-style.css
   ========================================================================== */

:root {
    --mr-navy: #071f4f;
    --mr-navy-2: #0f172a;
    --mr-orange: #ff6b16;
    --mr-orange-2: #f59e0b;
    --mr-orange-soft: #fff1e7;
    --mr-text: #111827;
    --mr-muted: #64748b;
    --mr-line: rgba(15, 23, 42, .10);
    --mr-soft: #f8fafc;
    --mr-white: #ffffff;
    --mr-shadow: 0 24px 70px rgba(15, 23, 42, .07);
}

html {
    scroll-behavior: smooth;
}

body {
    text-rendering: geometricPrecision;
}

/* ==========================================================================
   Utilidades base
   ========================================================================== */

.scrollbar-hidden {
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollbar-hidden::-webkit-scrollbar {
    display: none;
}

.x-overflow-hidden {
    overflow-x: hidden;
}

.y-overflow-scroll {
    overflow-y: scroll;
}

.h-auto {
    height: auto;
    max-height: 15rem;
}

/* ==========================================================================
   Cookies - asegurar visibilidad
   ========================================================================== */

.cookie-consent,
.cookie-consent__message,
.cookie-consent__agree,
.js-cookie-consent,
.laravel-cookie-consent {
    z-index: 999999 !important;
}

.cookie-consent {
    border-radius: 22px !important;
    box-shadow: 0 24px 80px rgba(15, 23, 42, .22) !important;
}

/* ==========================================================================
   Cabecera MasReforma
   ========================================================================== */

.mr-header {
    position: relative;
    z-index: 40;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 107, 22, .11), transparent 28rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.mr-header-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0;
}

.mr-nav-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 76px;
    padding: 12px 16px 12px 18px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid var(--mr-line);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .065);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mr-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex-shrink: 0;
}

.mr-brand img {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 54px;
    object-fit: contain;
}

.mr-brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1;
}

.mr-brand-name {
    color: var(--mr-navy);
    font-weight: 950;
    font-size: 1.02rem;
    letter-spacing: -.035em;
    white-space: nowrap;
}

.mr-brand-claim {
    margin-top: 6px;
    color: var(--mr-muted);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.mr-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.mr-nav-link,
.mr-dropdown-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 999px;
    color: #334155;
    font-size: .92rem;
    font-weight: 850;
    line-height: 1;
    transition: all .2s ease;
    white-space: nowrap;
}

.mr-nav-link:hover,
.mr-dropdown-button:hover {
    color: var(--mr-navy);
    background: var(--mr-orange-soft);
}

.mr-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.mr-language-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--mr-navy-2);
    font-size: .88rem;
    font-weight: 900;
    border: 1px solid var(--mr-line);
    background: rgba(255, 255, 255, .88);
    transition: all .2s ease;
}

.mr-language-button:hover {
    background: #ffffff;
    color: var(--mr-navy);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .07);
}

.mr-menu-dropdown {
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .14);
    overflow: hidden;
}

.mr-menu-dropdown a {
    color: #334155;
    transition: all .18s ease;
}

.mr-menu-dropdown a:hover {
    background: #f8fafc;
    color: var(--mr-navy);
}

.mr-action-light,
.mr-action-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 900;
    transition: all .2s ease;
    white-space: nowrap;
}

.mr-action-light {
    color: var(--mr-navy);
    background: #ffffff;
    border: 1px solid var(--mr-line);
}

.mr-action-light:hover {
    color: var(--mr-navy);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}

.mr-action-dark {
    color: #ffffff;
    background: linear-gradient(135deg, var(--mr-navy) 0%, #0f172a 100%);
    box-shadow: 0 16px 32px rgba(7, 31, 79, .22);
}

.mr-action-dark:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(7, 31, 79, .27);
}

.mr-action-orange {
    color: #ffffff;
    background: linear-gradient(135deg, var(--mr-orange) 0%, var(--mr-orange-2) 100%);
    box-shadow: 0 16px 32px rgba(255, 107, 22, .24);
}

.mr-action-orange:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(255, 107, 22, .30);
}

.mr-mobile-trigger {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    color: #ffffff;
    background: var(--mr-navy);
    box-shadow: 0 16px 32px rgba(7, 31, 79, .20);
    flex-shrink: 0;
}

.navbar-menu {
    z-index: 9999;
}

.mr-mobile-panel {
    position: relative;
    z-index: 10;
    width: min(370px, 88vw);
    height: 100%;
    padding: 22px 20px 28px;
    overflow-y: auto;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 107, 22, .10), transparent 18rem),
        #ffffff;
    box-shadow: 26px 0 80px rgba(15, 23, 42, .22);
}

.mr-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.mr-mobile-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.mr-mobile-logo img {
    max-height: 48px;
    max-width: 190px;
    object-fit: contain;
}

.mr-close-button {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--mr-navy);
    background: #f1f5f9;
    flex-shrink: 0;
}

.mr-mobile-links {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.mr-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 18px;
    color: var(--mr-navy-2);
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .07);
    font-size: .98rem;
    font-weight: 850;
}

.mr-mobile-link i {
    color: var(--mr-orange);
}

.mr-mobile-actions {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.mr-mobile-actions .mr-action-light,
.mr-mobile-actions .mr-action-dark,
.mr-mobile-actions .mr-action-orange {
    width: 100%;
    min-height: 52px;
}

.mr-mobile-language {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.mr-mobile-language-title {
    margin-bottom: 12px;
    color: var(--mr-muted);
    font-size: .76rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mr-mobile-language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mr-mobile-language-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 13px;
    border-radius: 999px;
    color: var(--mr-navy);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .10);
    font-size: .85rem;
    font-weight: 850;
}

/* ==========================================================================
   Hero superior del header
   ========================================================================== */

.mr-hero-header {
    position: relative;
    overflow: hidden;
    padding: 66px 0 92px;
    border-top: 1px solid rgba(15, 23, 42, .05);
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 107, 22, .14), transparent 30rem),
        radial-gradient(circle at 88% 18%, rgba(7, 31, 79, .08), transparent 26rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.mr-hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, .024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, .024) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.mr-hero-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mr-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
    gap: 56px;
    align-items: center;
}

.mr-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(15, 23, 42, .09);
    color: #8a4b06;
    font-size: .76rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.mr-hero-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--mr-orange);
    box-shadow: 0 0 0 6px rgba(255, 107, 22, .15);
}

.mr-hero-title {
    margin-top: 22px;
    max-width: 760px;
    color: var(--mr-navy-2);
    font-size: clamp(2.45rem, 5vw, 5.05rem);
    line-height: .94;
    letter-spacing: -.07em;
    font-weight: 950;
}

.mr-hero-title span {
    display: block;
    color: var(--mr-orange);
}

.mr-hero-text {
    max-width: 680px;
    margin-top: 24px;
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.82;
}

.mr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.mr-hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
    max-width: 720px;
}

.mr-hero-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border-radius: 18px;
    color: var(--mr-navy-2);
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(15, 23, 42, .08);
    font-size: .94rem;
    font-weight: 850;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
}

.mr-hero-point i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--mr-orange-soft);
    color: #b45309;
    flex-shrink: 0;
}

.mr-hero-visual {
    position: relative;
    min-height: 620px;
}

.mr-hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    left: 60px;
    top: 105px;
    border-radius: 999px;
    background: rgba(255, 107, 22, .18);
    filter: blur(46px);
}

.mr-phone {
    position: relative;
    z-index: 2;
    width: min(400px, 100%);
    margin-left: auto;
    padding: 14px;
    border-radius: 38px;
    background: linear-gradient(145deg, #171717 0%, #2d2d30 100%);
    box-shadow: 0 48px 110px rgba(15, 23, 42, .25);
    transform: rotate(3deg);
}

.mr-phone-screen {
    min-height: 620px;
    padding: 18px;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.mr-phone-top {
    padding: 20px;
    border-radius: 26px;
    color: #ffffff;
    background:
        radial-gradient(circle at 90% 0%, rgba(255, 107, 22, .32), transparent 10rem),
        linear-gradient(135deg, #18181b 0%, #34343a 100%);
    box-shadow: 0 24px 44px rgba(15, 23, 42, .18);
}

.mr-phone-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--mr-orange) 0%, var(--mr-orange-2) 100%);
    font-size: 1.1rem;
}

.mr-phone-top h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.42rem;
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 950;
}

.mr-phone-top p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: .92rem;
    line-height: 1.55;
}

.mr-phone-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.mr-phone-tile {
    padding: 16px 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
}

.mr-phone-tile i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 12px;
    background: var(--mr-orange-soft);
    color: #b45309;
}

.mr-phone-tile strong {
    display: block;
    color: var(--mr-navy-2);
    font-size: .92rem;
    font-weight: 950;
}

.mr-phone-tile span {
    display: block;
    margin-top: 4px;
    color: var(--mr-muted);
    font-size: .82rem;
    line-height: 1.45;
}

.mr-phone-message {
    margin-top: 16px;
    padding: 18px;
    border-radius: 20px;
    color: var(--mr-navy-2);
    background: linear-gradient(135deg, var(--mr-orange-soft) 0%, #ffffff 100%);
    border: 1px solid rgba(255, 107, 22, .24);
    font-size: .9rem;
    line-height: 1.65;
    font-weight: 750;
}

.mr-phone-footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.mr-phone-pill {
    padding: 12px 8px;
    text-align: center;
    border-radius: 16px;
    color: var(--mr-navy-2);
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .07);
    font-size: .78rem;
    font-weight: 950;
}

.mr-float-card {
    position: absolute;
    z-index: 3;
    max-width: 222px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mr-float-card i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 14px;
    background: var(--mr-orange-soft);
    color: #b45309;
}

.mr-float-card strong {
    display: block;
    color: var(--mr-navy-2);
    font-size: .93rem;
    line-height: 1.28;
    font-weight: 950;
}

.mr-float-card span {
    display: block;
    margin-top: 6px;
    color: var(--mr-muted);
    font-size: .82rem;
    line-height: 1.5;
}

.mr-float-one {
    top: 86px;
    left: 0;
    transform: rotate(-7deg);
}

.mr-float-two {
    right: -10px;
    bottom: 82px;
    transform: rotate(6deg);
}

/* ==========================================================================
   Landing MasReforma
   ========================================================================== */

.mr-landing {
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 107, 22, .12), transparent 30rem),
        linear-gradient(180deg, #fffaf2 0%, #ffffff 38%, #f8fafc 100%);
    color: var(--mr-text);
    overflow: hidden;
}

.mr-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.mr-section {
    padding: 92px 0;
    position: relative;
}

.mr-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .48rem .75rem;
    border: 1px solid var(--mr-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: #7c4a03;
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(17, 24, 39, .05);
}

.mr-kicker::before {
    content: "";
    width: .48rem;
    height: .48rem;
    border-radius: 999px;
    background: var(--mr-orange);
    box-shadow: 0 0 0 6px rgba(255, 107, 22, .16);
}

.mr-title {
    font-size: clamp(2rem, 4.2vw, 4.75rem);
    line-height: .96;
    letter-spacing: -.055em;
    font-weight: 950;
    color: var(--mr-text);
    margin-top: 18px;
}

.mr-title span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(17, 24, 39, .56);
}

.mr-subtitle {
    max-width: 760px;
    margin-top: 22px;
    color: #5b6472;
    font-size: clamp(1.02rem, 1.6vw, 1.28rem);
    line-height: 1.72;
}

.mr-grid-2 {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
}

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

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

.mr-card {
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--mr-line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 70px rgba(17, 24, 39, .07);
}

.mr-card-dark {
    background: #171717;
    color: white;
    border-radius: 32px;
    padding: 34px;
    box-shadow: 0 36px 90px rgba(17, 24, 39, .25);
    position: relative;
    overflow: hidden;
}

.mr-card-dark::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: rgba(255, 107, 22, .18);
    right: -88px;
    top: -72px;
}

.mr-card-dark > * {
    position: relative;
    z-index: 1;
}

.mr-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mr-orange-soft);
    color: #92400e;
    font-size: 1.35rem;
    margin-bottom: 22px;
}

.mr-card h3,
.mr-card-dark h3 {
    font-size: 1.32rem;
    line-height: 1.18;
    font-weight: 850;
    letter-spacing: -.025em;
    margin-bottom: 12px;
}

.mr-card p,
.mr-card-dark p {
    color: #5b6472;
    line-height: 1.68;
    font-size: .98rem;
}

.mr-card-dark p {
    color: rgba(255, 255, 255, .74);
}

.mr-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.mr-pill {
    border: 1px solid var(--mr-line);
    background: rgba(255, 255, 255, .78);
    border-radius: 999px;
    padding: .7rem .9rem;
    font-weight: 750;
    color: #2f3744;
    font-size: .92rem;
}

.mr-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.mr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 850;
    transition: .2s ease;
}

.mr-btn-primary {
    background: #171717;
    color: white;
    box-shadow: 0 20px 45px rgba(17, 24, 39, .18);
}

.mr-btn-primary:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
}

.mr-btn-secondary {
    background: white;
    color: #171717;
    border: 1px solid var(--mr-line);
}

.mr-btn-secondary:hover {
    background: #fff7e6;
    color: #171717;
    transform: translateY(-2px);
}

.mr-device {
    width: min(430px, 100%);
    margin-left: auto;
    border-radius: 42px;
    padding: 14px;
    background: linear-gradient(135deg, #27272a, #050505);
    box-shadow: 0 48px 100px rgba(17, 24, 39, .28);
    transform: rotate(2deg);
}

.mr-screen {
    min-height: 680px;
    border-radius: 34px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
    padding: 20px;
}

.mr-profile-cover {
    height: 150px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .32), transparent 9rem),
        linear-gradient(135deg, #171717 0%, #313131 100%);
    position: relative;
}

.mr-profile-avatar {
    position: absolute;
    left: 22px;
    bottom: -38px;
    width: 82px;
    height: 82px;
    border-radius: 26px;
    border: 5px solid white;
    background: linear-gradient(135deg, var(--mr-orange), #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 950;
    font-size: 1.55rem;
    box-shadow: 0 18px 40px rgba(17, 24, 39, .18);
}

.mr-screen-body {
    padding-top: 54px;
}

.mr-screen h3 {
    font-size: 1.45rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.035em;
    margin-bottom: 8px;
}

.mr-screen .mr-screen-desc {
    color: #64748b;
    line-height: 1.55;
    font-size: .94rem;
}

.mr-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.mr-action-card {
    background: white;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 20px;
    padding: 16px;
    min-height: 108px;
    box-shadow: 0 14px 40px rgba(17, 24, 39, .06);
}

.mr-action-card i {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    background: var(--mr-orange-soft);
    color: #92400e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.mr-action-card strong {
    display: block;
    font-size: .95rem;
    font-weight: 850;
    color: #111827;
}

.mr-action-card span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: .82rem;
    line-height: 1.42;
}

.mr-timeline {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

.mr-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
}

.mr-step-number {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: #171717;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    box-shadow: 0 18px 36px rgba(17, 24, 39, .16);
}

.mr-step-content {
    padding: 22px;
    background: white;
    border: 1px solid var(--mr-line);
    border-radius: 24px;
    box-shadow: 0 14px 45px rgba(17, 24, 39, .055);
}

.mr-step-content h3 {
    font-size: 1.18rem;
    font-weight: 850;
    letter-spacing: -.02em;
    margin-bottom: 7px;
}

.mr-step-content p {
    color: #5b6472;
    line-height: 1.65;
}

.mr-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 42px;
}

.mr-compare-column {
    border-radius: 30px;
    padding: 30px;
    border: 1px solid var(--mr-line);
    background: white;
    box-shadow: 0 24px 70px rgba(17, 24, 39, .06);
}

.mr-compare-column.mr-old {
    background: #fff;
}

.mr-compare-column.mr-new {
    background: #171717;
    color: white;
    border-color: rgba(255,255,255,.08);
}

.mr-compare-column h3 {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -.035em;
    margin-bottom: 20px;
}

.mr-check-list {
    display: grid;
    gap: 14px;
}

.mr-check-item {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    color: #4b5563;
    line-height: 1.55;
}

.mr-new .mr-check-item {
    color: rgba(255, 255, 255, .80);
}

.mr-check-item i {
    margin-top: 4px;
}

.mr-old .mr-check-item i {
    color: #ef4444;
}

.mr-new .mr-check-item i {
    color: #fbbf24;
}

.mr-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
}

.mr-stat {
    padding: 26px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--mr-line);
    box-shadow: 0 18px 54px rgba(17, 24, 39, .05);
}

.mr-stat strong {
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.05em;
    color: #171717;
}

.mr-stat span {
    display: block;
    margin-top: 10px;
    color: #64748b;
    line-height: 1.45;
    font-weight: 700;
    font-size: .9rem;
}

.mr-pricing-wrap {
    background:
        radial-gradient(circle at 70% 0%, rgba(255, 107, 22, .16), transparent 30rem),
        #171717;
    color: white;
    border-radius: 42px;
    padding: 58px 28px;
    box-shadow: 0 40px 100px rgba(17, 24, 39, .26);
}

#pricing {
    background: transparent !important;
}

#pricing .rounded-xl {
    border-radius: 28px !important;
    box-shadow: 0 24px 70px rgba(17, 24, 39, .08) !important;
}

#pricing .p-10 {
    padding: 2rem !important;
}

#pricing h2 {
    letter-spacing: -.035em;
    font-weight: 950 !important;
}

#pricing ul li {
    line-height: 1.45;
}

.mr-final-cta {
    border-radius: 42px;
    background:
        radial-gradient(circle at 85% 0%, rgba(255, 107, 22, .24), transparent 18rem),
        linear-gradient(135deg, #111827 0%, #171717 100%);
    color: white;
    padding: 58px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
    align-items: center;
    box-shadow: 0 38px 100px rgba(17, 24, 39, .25);
}

.mr-final-cta h2 {
    font-size: clamp(2rem, 4vw, 4.1rem);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 950;
    margin-bottom: 20px;
}

.mr-final-cta p {
    color: rgba(255,255,255,.75);
    line-height: 1.72;
    font-size: 1.05rem;
}

.mr-final-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 30px;
    padding: 28px;
}

.mr-final-card ul {
    display: grid;
    gap: 14px;
}

.mr-final-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255,255,255,.82);
    line-height: 1.5;
}

.mr-final-card i {
    color: #fbbf24;
    margin-top: 4px;
}

/* ==========================================================================
   Footer MasReforma
   ========================================================================== */

.mr-footer {
    position: relative;
    overflow: hidden;
    padding: 86px 0 28px;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 107, 22, .12), transparent 30rem),
        radial-gradient(circle at 88% 8%, rgba(7, 31, 79, .16), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #eef2f7 100%);
    border-top: 1px solid rgba(15, 23, 42, .07);
}

.mr-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, .023) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, .023) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.mr-footer-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.mr-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
    gap: 26px;
    align-items: stretch;
    margin-bottom: 34px;
}

.mr-footer-brand-card,
.mr-footer-cta-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: 32px;
    border: 1px solid rgba(15, 23, 42, .09);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.mr-footer-brand-card {
    padding: 32px;
}

.mr-footer-cta-card {
    padding: 30px;
    background:
        radial-gradient(circle at 90% 0%, rgba(255, 107, 22, .22), transparent 14rem),
        linear-gradient(135deg, #071f4f 0%, #0f172a 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, .12);
}

.mr-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

.mr-footer-logo img {
    display: block;
    width: auto;
    max-width: 250px;
    max-height: 68px;
    object-fit: contain;
}

.mr-footer-title {
    max-width: 720px;
    margin: 0;
    color: #0f172a;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 950;
}

.mr-footer-title span {
    color: var(--mr-orange);
}

.mr-footer-text {
    max-width: 740px;
    margin-top: 18px;
    color: #475569;
    font-size: 1rem;
    line-height: 1.78;
}

.mr-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.mr-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    font-size: .86rem;
    font-weight: 850;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
}

.mr-footer-badge i {
    color: var(--mr-orange);
}

.mr-footer-cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: .76rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mr-footer-cta-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--mr-orange);
    box-shadow: 0 0 0 6px rgba(255, 107, 22, .18);
}

.mr-footer-cta-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.55rem, 2.4vw, 2.28rem);
    line-height: 1.08;
    letter-spacing: -.045em;
    font-weight: 950;
}

.mr-footer-cta-text {
    margin-top: 14px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    font-size: .97rem;
}

.mr-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.mr-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 900;
    transition: all .2s ease;
}

.mr-footer-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--mr-orange) 0%, var(--mr-orange-2) 100%);
    box-shadow: 0 16px 32px rgba(255, 107, 22, .24);
}

.mr-footer-btn-primary:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(255, 107, 22, .30);
}

.mr-footer-btn-light {
    color: #071f4f;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .22);
}

.mr-footer-btn-light:hover {
    color: #071f4f;
    transform: translateY(-1px);
}

.mr-footer-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr .9fr 1fr;
    gap: 18px;
    align-items: start;
}

.mr-footer-column {
    min-height: 100%;
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .045);
}

.mr-footer-column-title {
    margin: 0 0 18px;
    color: #071f4f;
    font-size: .78rem;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mr-footer-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mr-footer-list a,
.mr-footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #475569;
    font-size: .94rem;
    line-height: 1.45;
    font-weight: 750;
    transition: all .18s ease;
}

.mr-footer-list a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 107, 22, .75);
    flex-shrink: 0;
}

.mr-footer-list a:hover,
.mr-footer-contact-link:hover {
    color: #071f4f;
    transform: translateX(2px);
}

.mr-footer-contact {
    display: grid;
    gap: 13px;
}

.mr-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #475569;
    font-size: .94rem;
    line-height: 1.58;
    font-weight: 750;
}

.mr-footer-contact-item i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    color: #b45309;
    background: var(--mr-orange-soft);
}

.mr-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .70);
}

.mr-footer-copy {
    margin: 0;
    color: #64748b;
    font-size: .9rem;
    line-height: 1.55;
    font-weight: 700;
}

.mr-footer-copy strong {
    color: #071f4f;
    font-weight: 950;
}

.mr-footer-copy a {
    color: #071f4f;
    text-decoration: none;
}

.mr-footer-copy a:hover {
    color: var(--mr-orange);
}

.mr-footer-mini-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.mr-footer-mini-links a {
    color: #475569;
    font-size: .86rem;
    font-weight: 800;
    transition: color .18s ease;
}

.mr-footer-mini-links a:hover {
    color: var(--mr-orange);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1279px) {
    .mr-desktop-nav,
    .mr-header-actions .mr-action-light,
    .mr-header-actions .mr-action-dark,
    .mr-header-actions .mr-action-orange,
    .mr-header-actions .mr-language-wrap {
        display: none;
    }

    .mr-mobile-trigger {
        display: inline-flex;
    }

    .mr-nav-card {
        min-height: 72px;
    }
}

@media (max-width: 1180px) {
    .mr-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mr-footer-column:last-child {
        grid-column: span 3;
    }
}

@media (max-width: 1100px) {
    .mr-hero-header {
        padding: 54px 0 76px;
    }

    .mr-hero-grid,
    .mr-grid-2,
    .mr-final-cta {
        grid-template-columns: 1fr;
    }

    .mr-hero-visual {
        width: min(560px, 100%);
        min-height: auto;
        margin: 0 auto;
    }

    .mr-phone,
    .mr-device {
        margin: 0 auto;
        transform: none;
    }

    .mr-float-one {
        left: 10px;
        top: 58px;
    }

    .mr-float-two {
        right: 10px;
        bottom: 52px;
    }

    .mr-grid-4,
    .mr-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mr-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .mr-footer {
        padding-top: 64px;
    }

    .mr-footer-top {
        grid-template-columns: 1fr;
    }

    .mr-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mr-footer-column:last-child {
        grid-column: span 2;
    }

    .mr-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .mr-footer-mini-links {
        justify-content: flex-start;
    }

    .mr-compare {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .mr-header-inner,
    .mr-hero-container,
    .mr-container {
        width: min(100%, calc(100% - 22px));
    }

    .mr-header-inner {
        padding: 10px 0;
    }

    .mr-nav-card {
        padding: 10px 12px;
        border-radius: 20px;
        min-height: 66px;
    }

    .mr-brand img {
        max-width: 190px;
        max-height: 46px;
    }

    .mr-brand-copy {
        display: none;
    }

    .mr-mobile-trigger {
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }

    .mr-hero-header {
        padding: 38px 0 60px;
    }

    .mr-hero-title {
        font-size: clamp(2.2rem, 11vw, 3.32rem);
    }

    .mr-hero-text {
        font-size: 1rem;
        line-height: 1.72;
    }

    .mr-hero-actions,
    .mr-cta-row {
        flex-direction: column;
    }

    .mr-hero-actions .mr-action-dark,
    .mr-hero-actions .mr-action-orange,
    .mr-hero-actions .mr-action-light,
    .mr-cta-row .mr-btn {
        width: 100%;
        min-height: 52px;
    }

    .mr-hero-points,
    .mr-grid-3,
    .mr-grid-4,
    .mr-stats {
        grid-template-columns: 1fr;
    }

    .mr-phone,
    .mr-device {
        width: 100%;
        padding: 12px;
        border-radius: 30px;
    }

    .mr-phone-screen {
        min-height: auto;
        padding: 14px;
        border-radius: 22px;
    }

    .mr-phone-grid,
    .mr-action-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mr-phone-footer {
        grid-template-columns: 1fr;
    }

    .mr-float-card {
        position: static;
        max-width: none;
        margin-top: 14px;
        transform: none;
    }

    .mr-section {
        padding: 68px 0;
    }

    .mr-title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .mr-final-cta {
        padding: 34px 24px;
        border-radius: 30px;
    }

    .mr-footer-container {
        width: min(100%, calc(100% - 22px));
    }

    .mr-footer-brand-card,
    .mr-footer-cta-card {
        padding: 24px;
        border-radius: 26px;
    }

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

    .mr-footer-column,
    .mr-footer-column:last-child {
        grid-column: auto;
    }

    .mr-footer-column {
        padding: 22px;
        border-radius: 22px;
    }

    .mr-footer-actions {
        flex-direction: column;
    }

    .mr-footer-btn {
        width: 100%;
    }

    .mr-footer-bottom {
        padding: 20px;
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .mr-phone-grid,
    .mr-action-grid {
        grid-template-columns: 1fr;
    }

    .mr-step {
        grid-template-columns: 1fr;
    }

    .mr-step-number {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }
}
