:root {
    --blue: #00A0E3;
    --navy: #0a2540;
    --muted: #566174;
    --line: #d8e6f1;
    --soft: #f7fbff;
    --soft-2: #fbfdff;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(10, 37, 64, .10);
    --radius: 18px;
    --max: 1180px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--white);
    color: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit
}

button, input, select, textarea {
    font: inherit
}

section {
    scroll-margin-top: 96px
}

.container {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto
}

.eyebrow {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin: 0 0 10px
}

.section-title {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -.7px;
    margin: 0 0 14px
}

.section-lead {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 17px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 12px;
    padding: 13px 18px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .2s ease
}

.btn:hover {
    transform: translateY(-1px)
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 160, 227, .20)
}

.btn-secondary {
    background: #fff;
    border-color: var(--line);
    color: var(--navy)
}

.btn-whatsapp {
    background: #25D366;
    color: #fff
}

header.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(216, 230, 241, .85)
}

.nav {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.brand {
    display: flex;
    align-items: center;
    min-width: 0;
    text-decoration: none
}

.brand img {
    width: 245px;
    height: 72px;
    object-fit: contain;
    object-position: left center
}

.brand-fallback {
    display: none;
    font-size: 19px;
    font-weight: 700;
    color: var(--navy)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy)
}

.nav-links a:hover {
    color: var(--blue)
}

.nav-links a.active {
    color: var(--blue);
    position: relative
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    border-radius: 2px;
    background: var(--blue)
}

.mobile-toggle {
    display: none;
    border: 0;
    background: var(--soft);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    color: var(--navy);
    font-size: 24px;
    cursor: pointer
}

.hero {
    padding: 76px 0 72px;
    background: linear-gradient(180deg, #fff 0%, var(--soft-2) 100%)
}

.hero-grid {
    display: grid;
    grid-template-columns:1.08fr .92fr;
    align-items: center;
    gap: 68px
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: .99;
    letter-spacing: -1.8px;
    margin: 0 0 22px;
    max-width: 760px
}

.hero h1 span {
    color: var(--blue)
}

.hero-copy {
    font-size: 19px;
    color: var(--muted);
    max-width: 650px;
    margin: 0 0 28px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-note {
    margin-top: 22px;
    font-size: 13px;
    color: var(--muted)
}

.hero-visual {
    position: relative
}

.portrait-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 14px;
    box-shadow: var(--shadow);
    transform: rotate(1.2deg)
}

.portrait-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    background: var(--soft)
}

.portrait-caption {
    position: absolute;
    left: -24px;
    bottom: 34px;
    background: var(--navy);
    color: #fff;
    padding: 15px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(10, 37, 64, .22);
    max-width: 240px
}

.portrait-caption strong {
    display: block;
    color: #fff;
    font-size: 15px
}

.portrait-caption span {
    font-size: 12px;
    color: #dcecf5
}

.trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff
}

.trust-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1px;
    background: var(--line)
}

.trust-item {
    background: #fff;
    padding: 22px 28px;
    text-align: center
}

.trust-item strong {
    display: block;
    color: var(--blue);
    font-size: 14px;
    margin-bottom: 3px
}

.trust-item span {
    font-size: 13px;
    color: var(--muted)
}

.page-hero {
    padding: 70px 0;
    background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
    border-bottom: 1px solid var(--line)
}

.page-hero.compact {
    padding: 66px 0
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.04;
    letter-spacing: -1.3px;
    max-width: 900px;
    margin: 0 0 18px
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 18px
}

.page-hero-grid {
    display: grid;
    grid-template-columns:1.2fr .55fr;
    align-items: center;
    gap: 70px
}

.page-hero-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 24px;
    border: 10px solid #fff;
    box-shadow: var(--shadow)
}

.teaser-section {
    padding: 92px 0;
    background: var(--soft)
}

.teaser-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px
}

.teaser-card {
    display: block;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    text-decoration: none;
    transition: .2s ease
}

.teaser-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #a9d9ec
}

.teaser-card > span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px
}

.teaser-card h3 {
    font-size: 22px;
    margin: 14px 0 9px
}

.teaser-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 22px
}

.teaser-card b {
    color: var(--blue);
    font-size: 14px
}

.home-cta {
    padding: 70px 0
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 38px 42px;
    border-radius: 22px;
    background: var(--navy);
    color: #fff
}

.cta-box h2 {
    font-size: clamp(26px, 3vw, 38px);
    margin: 0 0 8px
}

.cta-box p:not(.eyebrow) {
    margin: 0;
    color: #c9d5df
}

.content-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px
}

.legal-section {
    padding: 72px 0 92px
}

.legal-content {
    max-width: 820px
}

.legal-content h2 {
    font-size: 22px;
    margin: 34px 0 10px
}

.legal-content h2:first-child {
    margin-top: 0
}

.legal-content p, .legal-content address {
    margin: 0;
    color: var(--muted);
    font-style: normal
}

.legal-content a {
    color: var(--navy)
}

.legal-todo {
    padding: 16px;
    border: 1px dashed #d79a27;
    border-radius: 12px;
    background: #fff9ec;
    color: #76510b !important
}

.error-page {
    display: flex;
    min-height: calc(100vh - 263px);
    background: linear-gradient(180deg, #fff 0%, var(--soft) 100%)
}

.error-section {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 76px 0 92px
}

.error-content {
    max-width: 780px;
    text-align: center
}

.error-code {
    margin: 0 0 8px;
    color: rgba(0, 160, 227, .16);
    font-size: clamp(100px, 20vw, 190px);
    font-weight: 700;
    line-height: .8;
    letter-spacing: -8px
}

.error-content h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.2px
}

.error-copy {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 18px
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px
}

.about-section, .prices-section {
    padding: 92px 0
}

.contact-section {
    padding: 46px 0 92px
}

.about-grid {
    display: block;
    max-width: 1040px;
    margin-inline: auto
}

.about-card {
    background: var(--soft-2);
    border-left: 5px solid var(--blue);
    border-radius: 16px;
    padding: 24px;
    margin-top: 28px
}

.about-card p {
    margin: 0;
    font-size: 16px
}

.values {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px
}

.value {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    background: #fff
}

.value strong {
    display: block;
    color: var(--blue);
    font-size: 14px;
    margin-bottom: 6px
}

.value span {
    font-size: 13px;
    color: var(--muted)
}

.services-section {
    padding: 40px 0 40px;
    background: var(--soft)
}

.services-page {
    background: #fff
}

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

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    min-height: 150px
}

.service-card .num {
    color: var(--blue);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px
}

.service-card h3 {
    margin: 12px 0 8px;
    font-size: 18px
}

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

.prices-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px
}

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

.price-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(145deg, var(--soft) 0%, #fff 74%);
    padding: 26px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 26px rgba(10, 37, 64, .05)
}

.price-card.featured {
    border-color: rgba(0, 160, 227, .5);
    box-shadow: 0 16px 40px rgba(0, 160, 227, .12)
}

.pkg-kicker {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1.1px
}

.price-card h3 {
    font-size: 22px;
    line-height: 1.15;
    margin: 8px 0 8px
}

.pkg-desc {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 18px;
    min-height: 60px
}

.pkg-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--blue);
    margin: 0 0 18px
}

.pkg-price small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    display: block;
    margin-bottom: 4px
}

.pkg-facts {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 10px
}

.pkg-facts li {
    font-size: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7eef4
}

.pkg-facts strong {
    color: var(--navy)
}

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

.price-notes {
    display: grid;
    grid-template-columns:1.1fr .9fr;
    gap: 16px;
    margin-top: 24px
}

.note-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    background: var(--soft-2)
}

.note-card h4 {
    margin: 0 0 8px;
    color: var(--blue)
}

.note-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px
}

.process-section {
    padding: 80px 0;
    background: var(--navy);
    color: #fff
}

.process-section .eyebrow {
    color: #6ed4ff
}

.process-section .section-lead {
    color: #c9d5df
}

.process-section .section-title {
    color: #fff
}

.process-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px
}

.step {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    padding: 22px;
    background: rgba(255, 255, 255, .04)
}

.step b {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    margin-bottom: 15px
}

.step h3 {
    font-size: 16px;
    margin: 0 0 7px
}

.step p {
    margin: 0;
    color: #c9d5df;
    font-size: 13px
}

.contact-grid {
    display: grid;
    grid-template-columns:1.15fr .85fr;
    gap: 36px;
    align-items: start;
    margin-top: 38px
}

.contact-form {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    background: #fff;
    box-shadow: var(--shadow)
}

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

.form-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 15px
}

.field {
    display: grid;
    gap: 7px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy)
}

.field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid #cfdde7;
    border-radius: 10px;
    padding: 12px 13px;
    background: #fff;
    color: var(--navy);
    outline: none
}

.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 160, 227, .10)
}

.field textarea {
    min-height: 130px;
    resize: vertical
}

.form-hint {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 12px
}

.privacy-field {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.privacy-field input {
    width: auto;
    margin-top: 3px
}

.form-status {
    display: block;
    margin-top: 12px;
    padding: 11px 13px;
    border-radius: 10px;
    background: var(--soft);
    font-size: 13px;
    color: var(--navy)
}

.form-status.success {
    background: #eaf8ee;
    color: #196b32
}

.form-status.error {
    background: #fff0f0;
    color: #9b2424
}

.submission-success {
    margin: 0 0 20px;
    padding: 16px 18px;
    border: 1px solid #b9e2c4
}

.submission-success strong, .submission-success span {
    display: block
}

.submission-success strong {
    margin-bottom: 3px;
    font-size: 15px
}

.submission-success:focus {
    outline: 3px solid rgba(25, 107, 50, .2);
    outline-offset: 2px
}

.contact-form.is-submitting {
    cursor: wait
}

body.is-submitting {
    overflow: hidden;
    cursor: wait
}

.form-loading {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(247, 249, 251, .97);
    color: var(--navy);
    text-align: center;
    cursor: wait;
    backdrop-filter: blur(4px)
}

.form-loading[hidden] {
    display: none
}

.form-loading strong {
    margin-top: 14px;
    font-size: 17px
}

.form-loading span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 400
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(0, 160, 227, .2);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: contact-loading .8s linear infinite
}

@keyframes contact-loading {
    to {
        transform: rotate(360deg)
    }
}

@media (prefers-reduced-motion: reduce) {
    .loading-spinner {
        animation-duration: 1.8s
    }
}

.contact-side {
    display: grid;
    gap: 15px
}

.contact-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    background: var(--soft-2)
}

.contact-card h3 {
    margin: 0 0 12px;
    font-size: 17px
}

.contact-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    text-decoration: none;
    font-weight: 700;
    color: var(--navy)
}

.contact-link:hover {
    color: var(--blue)
}

.wa-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px
}

.instagram-todo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 9px 11px;
    border: 1px dashed #9fcde1;
    border-radius: 10px;
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
    background: #fff
}

.preferred-contact .btn {
    width: 100%
}

.whatsapp-contact {
    margin-top: 18px
}

.email-contact {
    margin-top: 10px
}

.phone-contact {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px
}

.phone-contact span {
    margin-right: 4px
}

.phone-contact a {
    color: var(--muted);
    font-weight: 600;
    text-decoration: none
}

.phone-contact a:hover {
    color: var(--blue);
    text-decoration: underline
}

.qr-copy {
    margin-bottom: 14px !important
}

.qr-code {
    width: 130px;
    aspect-ratio: 1;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid var(--line)
}

footer {
    background: #061b2f;
    color: #d5e1e9;
    padding: 34px 0
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.footer-brand {
    font-weight: 700;
    color: #fff
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.footer-links a {
    color: #d5e1e9;
    text-decoration: none;
    font-size: 13px
}

.footer-links a:hover {
    color: #fff
}

.legal-note {
    font-size: 11px;
    color: #8fa6b7;
    margin-top: 12px
}

@media (max-width: 900px) {
    .container {
        width: min(calc(100% - 28px), var(--max))
    }

    .nav {
        min-height: 68px
    }

    .brand img {
        width: 150px;
        height: 46px
    }

    .mobile-toggle {
        display: block
    }

    .nav-links {
        display: none;
        position: absolute;
        left: 14px;
        right: 14px;
        top: 72px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 14px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 0
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a {
        padding: 12px 10px;
        border-bottom: 1px solid #edf2f6
    }

    .nav-links a:last-child {
        border-bottom: 0
    }

    .nav-links a.active::after {
        display: none
    }

    .hero {
        padding: 48px 0 56px
    }

    .hero-grid, .about-grid, .contact-grid {
        grid-template-columns:1fr;
        gap: 34px
    }

    .hero-visual {
        max-width: 560px;
        margin-inline: auto
    }

    .portrait-caption {
        left: 12px;
        bottom: 20px
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 58px)
    }

    .trust-grid {
        grid-template-columns:1fr
    }

    .page-hero-grid {
        grid-template-columns:1fr;
        gap: 32px
    }

    .page-hero-grid img {
        max-width: 380px
    }

    .teaser-grid {
        grid-template-columns:1fr
    }

    .cta-box {
        align-items: flex-start;
        flex-direction: column
    }

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

    .values {
        grid-template-columns:1fr
    }

    .price-grid {
        grid-template-columns:1fr
    }

    .pkg-desc {
        min-height: auto
    }

    .price-notes {
        grid-template-columns:1fr
    }

    .process-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .prices-head {
        align-items: start;
        flex-direction: column
    }

    .about-section, .prices-section, .teaser-section {
        padding: 68px 0
    }

    .contact-section {
        padding: 34px 0 68px
    }

    .services-section {
        padding: 31px 0 62px
    }

    .process-section {
        padding: 62px 0
    }

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

    .page-hero.compact:has(+ .services-section),
    .page-hero.compact:has(+ .prices-section),
    .page-hero.compact:has(+ .contact-section) {
        padding: 42px 0 30px
    }

    .page-hero + .services-section {
        padding-top: 17px
    }

    .page-hero + .prices-section {
        padding-top: 34px
    }

    .page-hero + .contact-section {
        padding-top: 17px
    }
}

@media (max-width: 560px) {
    .services-grid, .process-grid, .form-grid {
        grid-template-columns:1fr
    }

    .field.full {
        grid-column: auto
    }

    .hero-actions .btn, .content-actions .btn, .cta-box .btn {
        width: 100%
    }

    .portrait-caption {
        position: static;
        margin-top: 12px;
        max-width: none
    }

    .portrait-card {
        transform: none
    }

    .section-title {
        font-size: 34px
    }

    .page-hero {
        padding: 50px 0
    }

    .page-hero h1 {
        font-size: 36px
    }

    .cta-box {
        padding: 28px 24px
    }

    .contact-form {
        padding: 20px
    }

    .price-card {
        padding: 22px
    }

    .trust-item {
        padding: 18px
    }
}

@media (max-width: 900px) {
    .brand img {
        width: 205px;
        height: 62px
    }

    .nav {
        min-height: 82px
    }
}

@media (max-width: 560px) {
    .brand img {
        width: 175px;
        height: 54px
    }
}
