:root {
    --dr-content: 1180px;
    --dr-radius: 8px;
    --dr-bg: #f4f8fb;
    --dr-bg-2: #eaf2f7;
    --dr-surface: #ffffff;
    --dr-surface-2: #f7fbfd;
    --dr-ink: #091522;
    --dr-heading: #05101b;
    --dr-muted: #5d6d7d;
    --dr-line: rgba(8, 29, 44, .12);
    --dr-blue: #0c66e4;
    --dr-blue-2: #0849a7;
    --dr-teal: #00a68d;
    --dr-green: #1f9d55;
    --dr-amber: #f4a63a;
    --dr-rose: #df4b61;
    --dr-shadow: 0 22px 70px rgba(7, 25, 42, .14);
    --dr-header-bg: rgba(255, 255, 255, .9);
    --dr-glass: rgba(255, 255, 255, .72);
    --dr-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

html[data-dynoreg-theme="dark"] {
    --dr-bg: #071018;
    --dr-bg-2: #0a1824;
    --dr-surface: #101d29;
    --dr-surface-2: #0c1722;
    --dr-ink: #eaf3fb;
    --dr-heading: #f8fbff;
    --dr-muted: #a7b8c8;
    --dr-line: rgba(203, 222, 237, .16);
    --dr-header-bg: rgba(7, 16, 24, .9);
    --dr-glass: rgba(13, 28, 42, .76);
    --dr-shadow: 0 22px 70px rgba(0, 0, 0, .34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--dr-ink);
    background:
        linear-gradient(180deg, rgba(0, 166, 141, .08), transparent 420px),
        var(--dr-bg);
    font-family: var(--dr-font);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.dr-menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--dr-blue);
}

button {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--dr-heading);
    font-weight: 850;
    letter-spacing: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 22px;
    font-size: 62px;
    line-height: 1.02;
}

h2 {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.08;
}

h3 {
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.2;
}

p {
    color: var(--dr-muted);
}

.screen-reader-text,
.dr-skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.dr-skip-link:focus {
    z-index: 10000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: #ffffff;
    background: var(--dr-blue);
}

.dr-wrap {
    width: min(100% - 40px, var(--dr-content));
    margin-inline: auto;
}

.dr-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--dr-header-bg);
    border-bottom: 1px solid var(--dr-line);
    backdrop-filter: blur(18px);
    overflow: visible;
}

.dr-site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(12, 102, 228, .08), transparent),
        repeating-linear-gradient(90deg, transparent 0 42px, rgba(0, 166, 141, .08) 42px 43px);
    opacity: .55;
}

.dr-header-code-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.dr-header-code-layer span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dr-teal);
    box-shadow: 0 0 20px rgba(0, 166, 141, .8);
    transform: translate(-50%, -50%);
    animation: drTrail 1.4s ease-out forwards;
}

@keyframes drTrail {
    from {
        opacity: .75;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(4);
    }
}

.dr-header-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    min-height: 82px;
}

.dr-header-left,
.dr-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.dr-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--dr-heading);
}

.dr-brand:hover,
.dr-brand:focus {
    color: var(--dr-heading);
}

.dr-brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #ffffff;
    background:
        linear-gradient(135deg, var(--dr-blue), var(--dr-teal) 58%, var(--dr-amber));
    border-radius: 8px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(12, 102, 228, .28);
}

.dr-brand-copy {
    display: grid;
    min-width: 0;
    line-height: 1.15;
}

.dr-brand-copy strong {
    font-size: 20px;
    letter-spacing: 0;
}

.dr-brand-copy small {
    color: var(--dr-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.dr-primary-nav {
    justify-self: center;
}

.dr-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dr-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 13px;
    color: var(--dr-muted);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
}

.dr-menu a:hover,
.dr-menu a:focus {
    color: var(--dr-heading);
    background: rgba(12, 102, 228, .09);
}

.dr-header-actions {
    justify-self: end;
}

.dr-menu-toggle,
.dr-icon-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--dr-heading);
    background: var(--dr-surface);
    border: 1px solid var(--dr-line);
    border-radius: 8px;
    box-shadow: none;
    cursor: pointer;
}

.dr-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 2px;
}

.dr-icon-button {
    display: grid;
    place-items: center;
}

.dr-icon-button::before {
    content: attr(data-icon);
    font-size: 22px;
    line-height: 1;
}

.dr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    color: #ffffff;
    background: var(--dr-blue);
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 900;
    line-height: 1.1;
    box-shadow: 0 16px 34px rgba(12, 102, 228, .22);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.dr-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex: 0 0 auto;
}

.dr-btn:hover,
.dr-btn:focus {
    color: #ffffff;
    background: var(--dr-blue-2);
    transform: translateY(-1px);
    box-shadow: 0 20px 44px rgba(12, 102, 228, .3);
}

.dr-btn-secondary {
    color: var(--dr-heading);
    background: var(--dr-surface);
    border-color: var(--dr-line);
    box-shadow: none;
}

.dr-btn-secondary:hover,
.dr-btn-secondary:focus {
    color: #ffffff;
    background: var(--dr-heading);
}

.dr-btn-whatsapp {
    background: var(--dr-green);
    box-shadow: 0 16px 34px rgba(31, 157, 85, .22);
}

.dr-btn-whatsapp:hover,
.dr-btn-whatsapp:focus {
    background: #167a42;
    box-shadow: 0 20px 44px rgba(31, 157, 85, .3);
}

.dr-hero {
    position: relative;
    min-height: calc(100vh - 82px);
    padding: 82px 0 62px;
    overflow: hidden;
}

.dr-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 78% 18%, rgba(0, 166, 141, .22), transparent 310px),
        radial-gradient(circle at 18% 34%, rgba(12, 102, 228, .18), transparent 340px),
        linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(244, 248, 251, .45));
}

html[data-dynoreg-theme="dark"] .dr-hero::before {
    background:
        radial-gradient(circle at 78% 18%, rgba(0, 166, 141, .2), transparent 310px),
        radial-gradient(circle at 18% 34%, rgba(12, 102, 228, .22), transparent 340px),
        linear-gradient(135deg, rgba(7, 16, 24, .95), rgba(10, 24, 36, .68));
}

.dr-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 45%;
    background:
        linear-gradient(0deg, var(--dr-bg), transparent),
        repeating-linear-gradient(90deg, rgba(12, 102, 228, .08) 0 1px, transparent 1px 78px);
}

.dr-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    align-items: center;
    gap: 54px;
}

.dr-hero-copy p {
    max-width: 670px;
    margin-bottom: 30px;
    font-size: 20px;
}

.dr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--dr-blue);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dr-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--dr-teal);
}

.dr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.dr-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 680px;
}

.dr-hero-proof span,
.dr-mini-points span,
.dr-payment-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    color: var(--dr-heading);
    background: var(--dr-glass);
    border: 1px solid var(--dr-line);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(7, 25, 42, .07);
    backdrop-filter: blur(14px);
}

.dr-hero-visual {
    position: relative;
    isolation: isolate;
}

.dr-hero-visual::before {
    content: "";
    position: absolute;
    inset: 9% -2% -4% 16%;
    z-index: -1;
    border: 1px solid rgba(0, 166, 141, .28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(12, 102, 228, .08), rgba(244, 166, 58, .12));
    transform: rotate(2deg);
}

.dr-hero-visual img {
    width: 100%;
    border: 1px solid var(--dr-line);
    border-radius: 8px;
    box-shadow: var(--dr-shadow);
}

.dr-uptime-panel {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: min(76%, 310px);
    padding: 18px;
    color: var(--dr-heading);
    background: var(--dr-glass);
    border: 1px solid var(--dr-line);
    border-radius: 8px;
    box-shadow: var(--dr-shadow);
    backdrop-filter: blur(16px);
}

.dr-uptime-panel span,
.dr-plan-label {
    display: block;
    color: var(--dr-teal);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0;
}

.dr-uptime-panel strong {
    display: block;
    margin: 4px 0;
    font-size: 20px;
    line-height: 1.15;
}

.dr-uptime-panel small {
    color: var(--dr-muted);
    font-weight: 800;
}

.dr-section {
    padding: 92px 0;
    background: var(--dr-bg);
}

.dr-section-muted {
    background:
        linear-gradient(180deg, var(--dr-bg-2), var(--dr-bg));
}

.dr-section-intro {
    max-width: 760px;
    margin-bottom: 36px;
}

.dr-section-intro p {
    max-width: 680px;
    font-size: 18px;
}

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

.dr-feature,
.dr-price-card,
.dr-process article {
    min-width: 0;
    padding: 24px;
    background: var(--dr-surface);
    border: 1px solid var(--dr-line);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(7, 25, 42, .08);
}

.dr-feature-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 18px;
    color: var(--dr-blue);
    background: rgba(12, 102, 228, .1);
    border-radius: 8px;
}

.dr-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.dr-feature p,
.dr-price-card li,
.dr-process p {
    font-size: 15px;
}

.dr-pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 42px;
    align-items: start;
}

.dr-mini-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

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

.dr-price-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.dr-price-card-featured {
    border-color: rgba(0, 166, 141, .42);
    box-shadow: 0 22px 62px rgba(0, 166, 141, .16);
}

.dr-price {
    margin: 10px 0 20px;
    color: var(--dr-heading);
    font-size: 54px;
    font-weight: 950;
    line-height: 1;
}

.dr-price span,
.dr-price small {
    color: var(--dr-muted);
    font-size: 14px;
    font-weight: 900;
}

.dr-price span {
    display: block;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.dr-price-card ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0 0 24px;
    list-style: none;
}

.dr-price-card li {
    position: relative;
    padding-left: 22px;
    color: var(--dr-muted);
}

.dr-price-card li::before {
    content: "";
    position: absolute;
    top: .65em;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--dr-teal);
    border-radius: 50%;
}

.dr-price-card .dr-btn {
    margin-top: auto;
}

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

.dr-process article {
    position: relative;
    overflow: hidden;
}

.dr-process article::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -30px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(12, 102, 228, .18);
    border-radius: 8px;
    transform: rotate(18deg);
}

.dr-process span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 20px;
    color: #ffffff;
    background: var(--dr-heading);
    border-radius: 8px;
    font-weight: 950;
}

.dr-payment-section {
    background:
        linear-gradient(135deg, rgba(12, 102, 228, .1), rgba(0, 166, 141, .1)),
        var(--dr-bg);
}

.dr-payment-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 42px;
    align-items: center;
}

.dr-payment-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.dr-payment-cloud span {
    min-height: 44px;
    padding: 0 16px;
    font-size: 15px;
}

.dr-payment-cloud span:nth-child(2n) {
    border-color: rgba(0, 166, 141, .28);
}

.dr-payment-cloud span:nth-child(3n) {
    border-color: rgba(244, 166, 58, .36);
}

.dr-contact-section {
    padding-top: 20px;
}

.dr-contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    padding: 34px;
    color: #ffffff;
    background:
        linear-gradient(135deg, #081522, #0c66e4 52%, #00a68d);
    border-radius: 8px;
    box-shadow: var(--dr-shadow);
}

.dr-contact-panel h2,
.dr-contact-panel p,
.dr-contact-panel .dr-eyebrow {
    color: #ffffff;
}

.dr-contact-panel p {
    max-width: 700px;
    margin-bottom: 0;
    opacity: .88;
}

.dr-contact-panel .dr-eyebrow::before {
    background: #ffffff;
}

.dr-contact-button {
    min-width: 230px;
    white-space: nowrap;
}

.dr-site-footer {
    padding: 52px 0 28px;
    background: var(--dr-surface-2);
    border-top: 1px solid var(--dr-line);
}

.dr-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 42px;
}

.dr-site-footer h2 {
    margin-bottom: 14px;
    font-size: 17px;
}

.dr-site-footer p {
    margin: 14px 0 0;
}

.dr-site-footer a:not(.dr-brand):not(.dr-footer-whatsapp) {
    display: block;
    margin-bottom: 10px;
    color: var(--dr-muted);
    font-weight: 800;
}

.dr-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--dr-green);
    font-weight: 950;
}

.dr-footer-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.dr-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 26px;
    margin-top: 34px;
    color: var(--dr-muted);
    border-top: 1px solid var(--dr-line);
    font-size: 13px;
    font-weight: 800;
}

.cky-btn-revisit-wrapper,
#cya11y-container {
    transition: opacity 500ms ease-in-out, visibility 500ms ease-in-out;
}

.cky-btn-revisit-wrapper {
    width: 35px !important;
    height: 35px !important;
    background: var(--dr-blue) !important;
    box-shadow: 0 10px 26px rgba(7, 25, 42, .2) !important;
}

.cky-btn-revisit-wrapper .cky-btn-revisit,
.cky-btn-revisit-wrapper .cky-btn-revisit img {
    width: 23px !important;
    height: 23px !important;
}

.cky-btn-revisit-wrapper.cky-revisit-bottom-left,
.cky-btn-revisit-wrapper.cky-revisit-bottom-right {
    right: auto !important;
    left: 20px !important;
}

body.page-scrolling .cky-btn-revisit-wrapper,
body.page-scrolling #cya11y-container {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.cky-consent-container .cky-consent-bar {
    border-color: var(--dr-line) !important;
    box-shadow: 0 18px 50px rgba(7, 25, 42, .16) !important;
}

.cky-consent-container .cky-title {
    color: var(--dr-heading) !important;
}

.cky-consent-container .cky-btn {
    border-radius: 8px !important;
    color: #ffffff !important;
    background: var(--dr-blue) !important;
    border-color: var(--dr-blue) !important;
    font-weight: 900 !important;
}

.cky-consent-container .cky-btn:hover,
.cky-consent-container .cky-btn:focus {
    color: #ffffff !important;
    background: var(--dr-blue-2) !important;
    border-color: var(--dr-blue-2) !important;
}

@media (max-width: 768px) {
    .cky-btn-revisit-wrapper {
        width: 25px !important;
        height: 25px !important;
    }

    .cky-btn-revisit-wrapper .cky-btn-revisit,
    .cky-btn-revisit-wrapper .cky-btn-revisit img {
        width: 17px !important;
        height: 17px !important;
    }
}

@media (max-width: 1100px) {
    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 36px;
    }

    .dr-header-inner {
        grid-template-columns: auto auto;
    }

    .dr-header-actions {
        grid-column: 2;
    }

    .dr-menu-toggle {
        display: block;
    }

    .dr-primary-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        display: none;
        padding: 14px;
        background: var(--dr-surface);
        border: 1px solid var(--dr-line);
        border-radius: 8px;
        box-shadow: var(--dr-shadow);
    }

    .dr-site-header.is-menu-open .dr-primary-nav {
        display: block;
    }

    .dr-menu {
        display: grid;
        gap: 4px;
    }

    .dr-menu a {
        justify-content: center;
    }

    .dr-hero-grid,
    .dr-pricing-layout,
    .dr-payment-grid {
        grid-template-columns: 1fr;
    }

    .dr-payment-cloud {
        justify-content: flex-start;
    }

    .dr-feature-grid,
    .dr-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 76px;
    }

    body {
        font-size: 15px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    .dr-wrap {
        width: min(100% - 28px, var(--dr-content));
    }

    .dr-header-inner {
        min-height: 72px;
        gap: 12px;
    }

    .dr-brand-copy small {
        display: none;
    }

    .dr-brand-mark {
        width: 42px;
        height: 42px;
    }

    .dr-brand-copy strong {
        font-size: 18px;
    }

    .dr-header-cta span {
        display: none;
    }

    .dr-header-cta {
        width: 44px;
        min-height: 44px;
        padding: 0;
    }

    .dr-hero {
        min-height: auto;
        padding: 56px 0 42px;
    }

    .dr-hero-grid {
        gap: 34px;
    }

    .dr-hero-copy p,
    .dr-section-intro p {
        font-size: 17px;
    }

    .dr-actions .dr-btn {
        flex: 1 1 210px;
    }

    .dr-uptime-panel {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 12px;
    }

    .dr-section {
        padding: 64px 0;
    }

    .dr-feature-grid,
    .dr-process,
    .dr-price-grid,
    .dr-footer-grid,
    .dr-contact-panel {
        grid-template-columns: 1fr;
    }

    .dr-price {
        font-size: 44px;
    }

    .dr-contact-panel {
        padding: 26px;
    }

    .dr-contact-button {
        width: 100%;
        min-width: 0;
    }

    .dr-footer-bottom {
        display: grid;
    }
}

@media (max-width: 430px) {
    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 27px;
    }

    .dr-header-actions {
        gap: 8px;
    }

    .dr-icon-button,
    .dr-menu-toggle,
    .dr-header-cta {
        width: 40px;
        height: 40px;
        min-height: 40px;
    }

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

    .dr-feature,
    .dr-price-card,
    .dr-process article {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}
