:root {
    --color-navy:        #081b2f;
    --color-ocean:       #0f5e8f;
    --color-white:       #ffffff;
    --color-anthracite:  #12283d;
    --color-grey:        #5d7184;
    --color-grey-light:  #eff4f8;
    --color-accent:      #cfa066;
    --color-line:        rgba(12, 42, 68, .12);
    --color-surface:     rgba(255, 255, 255, .82);
    --color-surface-strong: rgba(255, 255, 255, .94);

    --font-base:         'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display:      'Cormorant Garamond', Georgia, serif;
    --font-size-base:    1rem;
    --line-height-base:  1.65;

    --container-width:   1240px;
    --container-pad:     1.25rem;

    --header-height:     92px;
    --sticky-bar-height: 60px;

    --radius-sm:  16px;
    --radius-md:  28px;
    --radius-lg:  42px;

    --shadow-sm:  0 16px 36px rgba(7, 24, 42, .08);
    --shadow-md:  0 30px 72px rgba(7, 24, 42, .14);
    --shadow-lg:  0 46px 120px rgba(7, 24, 42, .2);

    --transition: 220ms ease;
    --reveal-distance: 30px;
    --reveal-duration: 820ms;
    --reveal-ease: cubic-bezier(.16, 1, .3, 1);

    --z-header:     100;
    --z-mobile-nav: 200;
    --z-overlay:    190;
    --z-sticky-bar: 150;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-anthracite);
    background:
        radial-gradient(circle at top left, rgba(102, 176, 208, .18), transparent 24%),
        radial-gradient(circle at 85% 12%, rgba(207, 160, 102, .14), transparent 22%),
        linear-gradient(180deg, #f4f1ea 0%, #f7fafc 18%, #ffffff 54%, #eef4f8 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 60px;
    }
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
}

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
    width: 1px;
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    background: var(--color-navy);
    color: var(--color-white);
    padding: .65rem 1rem;
    border-radius: 999px;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.site-main {
    padding-block-start: var(--header-height);
    overflow: clip;
}

.motion-enabled [data-reveal] {
    transition:
        opacity var(--reveal-duration) var(--reveal-ease),
        transform var(--reveal-duration) var(--reveal-ease),
        filter var(--reveal-duration) var(--reveal-ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.motion-enabled [data-reveal].reveal-pending {
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(0, var(--reveal-distance), 0) scale(.985);
}

.motion-enabled [data-reveal="left"].reveal-pending {
    transform: translate3d(calc(var(--reveal-distance) * -1), 0, 0) scale(.985);
}

.motion-enabled [data-reveal="right"].reveal-pending {
    transform: translate3d(var(--reveal-distance), 0, 0) scale(.985);
}

.motion-enabled [data-reveal].is-visible {
    opacity: 1;
    filter: none;
    transform: none;
}

.motion-enabled .hero__bg,
.motion-enabled .motoare-hero__bg,
.motion-enabled .ml-hero-bg {
    animation: hero-drift 15s cubic-bezier(.16, 1, .3, 1) both;
    transform-origin: center center;
    will-change: transform;
}

@keyframes hero-drift {
    from {
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.09) translate3d(0, -1.5%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .motion-enabled [data-reveal],
    .motion-enabled .hero__bg,
    .motion-enabled .motoare-hero__bg,
    .motion-enabled .ml-hero-bg {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }
}

@media (max-width: 767px) {
    .motion-enabled [data-reveal],
    .motion-enabled .hero__bg,
    .motion-enabled .motoare-hero__bg,
    .motion-enabled .ml-hero-bg {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }
}

.section-pad {
    padding-block: 4.5rem;
}

@media (min-width: 768px) {
    .section-pad {
        padding-block: 6.5rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 54px;
    padding: .875rem 1.55rem;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.2;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    text-decoration: none;
    border: 1px solid transparent;
}

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

.btn--primary {
    background: linear-gradient(135deg, #b98647 0%, #e1b37c 100%);
    color: var(--color-navy);
    box-shadow: 0 18px 40px rgba(195, 145, 87, .28);
}

.btn--primary:hover {
    box-shadow: 0 22px 50px rgba(195, 145, 87, .34);
}

.btn--secondary {
    background: linear-gradient(135deg, #0b4264 0%, #1271aa 100%);
    color: var(--color-white);
    box-shadow: 0 18px 42px rgba(15, 94, 143, .24);
}

.btn--secondary:hover {
    box-shadow: 0 22px 52px rgba(15, 94, 143, .32);
}

.btn--outline,
.btn--outline-light,
.btn--outline-white {
    background: rgba(255, 255, 255, .12);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, .32);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn--outline:hover,
.btn--outline-light:hover,
.btn--outline-white:hover {
    background: rgba(255, 255, 255, .2);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, .48);
}

.btn--shop {
    min-height: 44px;
    padding: .7rem 1.2rem;
    background: linear-gradient(135deg, #d58e3f 0%, #efae58 100%);
    color: var(--color-navy);
    box-shadow: 0 16px 30px rgba(213, 142, 63, .28);
}

.btn--whatsapp {
    background: linear-gradient(135deg, #24bb63 0%, #35d977 100%);
    color: #fff;
    box-shadow: 0 18px 40px rgba(36, 187, 99, .26);
}

.btn--ghost {
    background: transparent;
    color: var(--color-ocean);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.btn--ghost:hover {
    color: var(--color-navy);
}

.btn--sm {
    min-height: 46px;
    padding: .75rem 1.1rem;
    font-size: .875rem;
}

.btn--lg {
    min-height: 58px;
    padding: 1rem 1.7rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.08;
    color: var(--color-navy);
    text-wrap: balance;
}

h1,
h2 {
    font-family: var(--font-display);
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

p {
    margin-block-end: 1em;
}

p:last-child {
    margin-block-end: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-block: 1.5em .55em;
}

.entry-content ul,
.entry-content ol {
    padding-inline-start: 1.5rem;
    margin-block-end: 1em;
    list-style: revert;
}

.entry-content a {
    color: var(--color-ocean);
    text-decoration: underline;
}

.entry-content img {
    border-radius: var(--radius-md);
}

.section-header {
    text-align: center;
    margin-block-end: 3rem;
}

.section-header--left {
    text-align: left;
}

.section-header__eyebrow {
    display: inline-block;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--color-ocean);
    margin-block-end: 1rem;
}

.section-header__title {
    color: var(--color-navy);
    margin-block-end: 1rem;
}

.section-header__subtitle {
    color: var(--color-grey);
    max-width: 700px;
    margin-inline: auto;
    font-size: 1.02rem;
}

.section-header--left .section-header__subtitle {
    margin-inline: 0;
}

.faq {
    background: linear-gradient(180deg, rgba(244, 248, 251, .86), rgba(255, 255, 255, .96));
}

.faq-list {
    display: grid;
    gap: .9rem;
}

.faq-item {
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 94, 143, .12);
}

.faq-item.is-open {
    border-color: rgba(15, 94, 143, .18);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.22rem 1.3rem;
    font-weight: 700;
    color: var(--color-navy);
    text-align: left;
    transition: color var(--transition);
}

.faq-item.is-open .faq-item__question {
    color: var(--color-ocean);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(15, 94, 143, .08);
    color: var(--color-ocean);
    transition: transform 320ms cubic-bezier(.16, 1, .3, 1), background var(--transition), color var(--transition);
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
    background: rgba(15, 94, 143, .14);
}

.faq-item__answer {
    display: grid;
    grid-template-rows: 0fr;
    padding-inline: 1.3rem;
    transition: grid-template-rows 360ms cubic-bezier(.16, 1, .3, 1), padding-bottom 360ms cubic-bezier(.16, 1, .3, 1);
}

.faq-item.is-open .faq-item__answer {
    grid-template-rows: 1fr;
    padding-bottom: 1.2rem;
}

.faq-item__answer-inner {
    min-height: 0;
    overflow: hidden;
    color: var(--color-grey);
    line-height: 1.8;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.posts-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.post-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 253, .96));
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.post-card__thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.post-card__body {
    padding: 1.5rem;
}

.post-card__category {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: .8rem;
    padding: .28rem .7rem;
    border-radius: 999px;
    background: rgba(15, 94, 143, .08);
    color: var(--color-ocean);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.post-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    align-items: center;
    font-size: .8rem;
    color: var(--color-grey);
    margin-block-end: .8rem;
}

.post-card__meta-sep {
    opacity: .55;
}

.post-card__title {
    font-size: 1.15rem;
    margin-block-end: .7rem;
}

.post-card__title a:hover {
    color: var(--color-ocean);
}

.post-card__excerpt {
    font-size: .95rem;
    color: var(--color-grey);
    margin-block-end: 1.25rem;
}

.post-card__link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--color-navy);
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: .04em;
}

.post-card__link:hover {
    color: var(--color-ocean);
}

.nav-links {
    display: flex;
    gap: .65rem;
    justify-content: center;
    margin-block-start: 3rem;
    flex-wrap: wrap;
}

.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    padding: 0 .95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--color-line);
    color: var(--color-navy);
}

.nav-links .current {
    background: var(--color-navy);
    color: var(--color-white);
}

.page-content {
    max-width: 900px;
}

.no-results {
    text-align: center;
    padding: 2rem 0;
}

.no-results h2 {
    margin-block-end: .75rem;
}

.no-results p {
    color: var(--color-grey);
    margin-block-end: 1.5rem;
}
