/* Public website - Ciclomove visual direction */

:root {
    --cm-dark: #202333;
    --cm-dark-2: #303449;
    --cm-orange: #e85b2a;
    --cm-orange-dark: #c94a22;
    --cm-yellow: #ffe500;
    --cm-blue: #20a8e0;
    --cm-text: #2a2d35;
    --cm-muted: #6d7480;
    --cm-soft: #f7f7f8;
    --cm-border: #e7e9ee;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: var(--cm-text);
}

.public-page {
    min-height: 100vh;
    background: #ffffff;
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(231, 233, 238, 0.9);
    box-shadow: 0 8px 26px rgba(20, 20, 30, 0.06);
}

.site-header__inner {
    width: min(1220px, calc(100% - 36px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--cm-dark);
    text-decoration: none;
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.brand__badge {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cm-yellow), #fff36d);
    color: var(--cm-dark);
    border: 3px solid var(--cm-dark);
    box-shadow: 4px 5px 0 var(--cm-blue);
    font-size: 17px;
    letter-spacing: -0.04em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 16px;
    font-weight: 800;
}

.site-nav a {
    color: #33394b;
    text-decoration: none;
    padding: 31px 0 28px;
    border-bottom: 3px solid transparent;
}

.site-nav a:hover {
    color: var(--cm-orange);
    border-bottom-color: var(--cm-orange);
}

.site-nav__cta {
    padding: 12px 19px !important;
    border-radius: 4px;
    border-bottom: 0 !important;
    background: var(--cm-orange);
    color: #ffffff !important;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(232, 91, 42, 0.22);
}

.site-nav__cta:hover {
    background: var(--cm-orange-dark);
}

.video-hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--cm-dark);
}

.video-hero__media,
.video-hero__media video,
.video-hero__fallback,
.video-hero__overlay {
    position: absolute;
    inset: 0;
}

.video-hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-hero__fallback {
    z-index: 0;
    background:
        linear-gradient(rgba(32, 35, 51, 0.62), rgba(32, 35, 51, 0.66)),
        radial-gradient(circle at 20% 35%, rgba(232, 91, 42, 0.34), transparent 22%),
        radial-gradient(circle at 75% 25%, rgba(32, 168, 224, 0.34), transparent 24%),
        linear-gradient(135deg, #2f3349 0%, #141725 100%);
}

.video-hero__fallback::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(30deg, transparent 0 48%, rgba(255, 255, 255, 0.28) 49% 51%, transparent 52% 100%),
        linear-gradient(120deg, transparent 0 48%, rgba(255, 255, 255, 0.18) 49% 51%, transparent 52% 100%);
    background-size: 120px 120px;
}

.video-hero__overlay {
    z-index: 2;
    background:
        linear-gradient(rgba(18, 20, 30, 0.35), rgba(18, 20, 30, 0.58)),
        linear-gradient(90deg, rgba(18, 20, 30, 0.54), rgba(18, 20, 30, 0.08) 45%, rgba(18, 20, 30, 0.52));
}

.video-hero__content {
    position: relative;
    z-index: 3;
    width: min(1220px, calc(100% - 36px));
    display: flex;
    justify-content: center;
    padding: 80px 0;
}

.hero-panel {
    width: min(760px, 100%);
    padding: 42px 46px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.76);
    color: white;
    text-align: center;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(6px);
}

.hero-panel__label {
    display: inline-block;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-panel h1 {
    margin: 0 0 16px;
    color: white;
    font-size: clamp(36px, 5.8vw, 66px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-panel p {
    width: min(640px, 100%);
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
}

.hero-panel small {
    display: block;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}

.hero-panel__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 6px;
    border: 2px solid transparent;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.btn--primary {
    background: var(--cm-orange);
    color: white;
    box-shadow: 0 14px 28px rgba(232, 91, 42, 0.28);
}

.btn--primary:hover {
    background: var(--cm-orange-dark);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

.content-section {
    width: min(1220px, calc(100% - 36px));
    margin: 0 auto;
    padding: 76px 0;
}

.content-section--soft {
    width: 100%;
    padding-left: max(18px, calc((100vw - 1220px) / 2));
    padding-right: max(18px, calc((100vw - 1220px) / 2));
    background: var(--cm-soft);
}

.section-title {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-title span,
.price-card span,
.final-panel span,
.evaluation-band span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--cm-orange);
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-title h2 {
    margin: 0;
    color: var(--cm-text);
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.poster-card {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    padding: 42px;
    border-radius: 6px;
    background:
        radial-gradient(circle at 72% 72%, rgba(255, 229, 0, 0.55), transparent 20%),
        radial-gradient(circle at 18% 70%, rgba(32, 168, 224, 0.48), transparent 20%),
        linear-gradient(135deg, #6e67c7, #8279d7);
    color: white;
    box-shadow: 0 26px 60px rgba(50, 50, 80, 0.28);
}

.poster-card__brand {
    display: inline-block;
    margin-bottom: 36px;
    padding: 7px 12px;
    background: var(--cm-yellow);
    color: #111;
    border-radius: 10px;
    font-weight: 950;
    font-size: 28px;
    letter-spacing: -0.06em;
    box-shadow: 5px 5px 0 var(--cm-blue);
}

.poster-card h3 {
    max-width: 420px;
    margin: 0;
    color: white;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.poster-card p {
    position: absolute;
    left: 42px;
    bottom: 42px;
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    margin: 0;
    border-radius: 50%;
    background: white;
    color: var(--cm-dark);
    font-size: 15px;
    line-height: 1.15;
    text-align: center;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: 0 0 0 14px rgba(32, 168, 224, 0.85);
}

.poster-card__shape {
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 22px solid rgba(255, 229, 0, 0.85);
}

.text-block .lead {
    margin: 0 0 28px;
    color: #4b5563;
    font-size: 22px;
    line-height: 1.65;
}

.definition-list {
    display: grid;
    gap: 18px;
}

.definition-list article {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--cm-border);
}

.definition-list strong {
    color: var(--cm-text);
    font-size: 18px;
}

.definition-list p {
    margin: 0;
    color: var(--cm-muted);
    font-size: 17px;
    line-height: 1.55;
}

.program-grid,
.details-grid,
.partners-grid,
.locations-grid,
.testimonials-grid {
    display: grid;
    gap: 22px;
}

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

.program-card,
.detail-card,
.location-card,
.partners-grid article,
.testimonials-grid blockquote {
    padding: 28px;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--cm-border);
    box-shadow: 0 16px 40px rgba(20, 25, 35, 0.07);
}

.program-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--cm-orange);
    color: white;
    font-weight: 950;
}

.program-card h3,
.detail-card h3,
.location-card h3 {
    margin: 0 0 12px;
    color: var(--cm-text);
    font-size: 24px;
    letter-spacing: -0.02em;
}

.program-card p,
.detail-card p,
.location-card p {
    margin: 0;
    color: var(--cm-muted);
    font-size: 16px;
    line-height: 1.6;
}

.evaluation-band,
.price-card,
.final-panel {
    padding: 42px;
    border-radius: 10px;
    background: var(--cm-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.evaluation-band h2,
.price-card h2,
.final-panel h2 {
    margin: 0;
    color: white;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.evaluation-band p,
.price-card p,
.final-panel p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
    line-height: 1.55;
}

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

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

.partners-grid article {
    text-align: center;
}

.partners-grid strong {
    display: block;
    color: var(--cm-text);
    font-size: 34px;
    font-weight: 950;
}

.partners-grid span {
    display: block;
    margin-top: 8px;
    color: var(--cm-muted);
    font-size: 15px;
}

.price-section {
    padding-top: 88px;
}

.price-card {
    background: linear-gradient(135deg, var(--cm-dark), var(--cm-dark-2));
}

.price-card h2 {
    color: var(--cm-yellow);
}

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

.location-card a {
    display: inline-block;
    margin-top: 14px;
    color: var(--cm-orange);
    font-weight: 900;
    text-decoration: none;
}

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

.testimonials-grid blockquote {
    margin: 0;
}

.testimonials-grid p {
    margin: 0 0 18px;
    color: var(--cm-muted);
    font-size: 18px;
    line-height: 1.7;
}

.testimonials-grid cite {
    color: var(--cm-text);
    font-style: normal;
    font-weight: 950;
}

.final-section {
    padding-bottom: 94px;
}

.final-panel {
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 229, 0, 0.26), transparent 24%),
        linear-gradient(135deg, #25283b, #111320);
}

@media (max-width: 980px) {
    .site-nav a:not(.site-nav__cta) {
        display: none;
    }

    .split-layout,
    .program-grid,
    .details-grid,
    .partners-grid,
    .locations-grid,
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .evaluation-band,
    .price-card,
    .final-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .site-header__inner,
    .content-section,
    .video-hero__content {
        width: min(100% - 28px, 1220px);
    }

    .brand__text {
        font-size: 22px;
    }

    .video-hero {
        min-height: 760px;
    }

    .hero-panel {
        padding: 30px 22px;
    }

    .split-layout,
    .program-grid,
    .details-grid,
    .partners-grid,
    .locations-grid,
    .testimonials-grid,
    .definition-list article {
        grid-template-columns: 1fr;
    }

    .poster-card {
        min-height: 430px;
        padding: 28px;
    }

    .poster-card p {
        left: 28px;
        bottom: 28px;
    }

    .content-section {
        padding: 58px 0;
    }

    .content-section--soft {
        padding-left: 14px;
        padding-right: 14px;
    }

    .evaluation-band,
    .price-card,
    .final-panel {
        padding: 28px;
    }
}
