/*
Theme Name: DOMCORE Academia
Description: Tema customizado para DomCore Academia
Version: 1.0
Author: Vinicius Soares 
Author URI: https://viniciussoaresdev.com.br
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-nav: #252726;
    --text-nav: #de5514;
    --text-hover: #ff7a38;
    --orange: #E8410A;
    --orange-light: #FF5A1F;
    --orange-btn: #FF5708;
    --black: #0a0a0a;
    --dark: #111111;
    --dark-card: #1a1a1a;
    --gray-card: #232424;
    --muted: #dddddd;
    --white: #ffffff;
    --transition: 0.25s ease;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-cond: 'Barlow Condensed', sans-serif;
}

@font-face {
    font-family: 'Stretch Pro';
    src: url('./assets/fonts/StretchPro.woff2') format('woff2'),
        url('./assets/fonts/StretchPro.woff') format('woff');
}

body {
    font-family: 'Barlow', sans-serif;
    /* Parágrafo base: 16–18px → 1rem */
    font-size: 1rem;
    background-color: var(--black);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}



/* ─── NAVBAR (ISOLADA DO BOOTSTRAP) ─────────────────── */
.navbar--domcore {
    background-color: var(--bg-nav) !important;
    width: 100% !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    padding: 0 !important;
}

.navbar--domcore .navbar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* ─── LOGO ────────────────────────────────────────────── */
.navbar--domcore .navbar__logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.35rem;
    text-decoration: none !important;
    flex-shrink: 0;
}

.navbar--domcore .logo-img {
    height: 30px;
    width: auto;
    display: block !important;
    transition: opacity var(--transition), transform var(--transition);
}

.navbar--domcore .navbar__logo:hover .logo-img {
    opacity: 0.85;
    transform: scale(1.04);
}

/* ─── LINKS ───────────────────────────────────────────── */
.navbar--domcore .navbar__menu {
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 2.5rem;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar--domcore .navbar__menu a {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 600 !important;
    /* Navbar desktop: 15px → 0.9375rem */
    font-size: 0.9375rem !important;
    color: var(--text-nav) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    position: relative;
    padding: 0 0 4px 0 !important;
    transition: color var(--transition) !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar--domcore .navbar__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--text-hover);
    transition: width var(--transition);
}

.navbar--domcore .navbar__menu a:hover {
    color: var(--text-hover) !important;
    background: transparent !important;
    text-decoration: none !important;
}

.navbar--domcore .navbar__menu a:hover::after {
    width: 100%;
}

.navbar--domcore .navbar__menu a.active {
    color: var(--white) !important;
}

.navbar--domcore .navbar__menu a.active::after {
    width: 100%;
    background: var(--white);
}

/* ─── HAMBURGER ───────────────────────────────────────── */
.navbar--domcore .navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 6px;
    border-radius: 4px;
    transition: background var(--transition);
}

.navbar--domcore .navbar__toggle:hover {
    background: rgba(222, 85, 20, 0.12) !important;
}

.navbar--domcore .navbar__toggle span {
    display: block !important;
    width: 26px;
    height: 2px;
    background: var(--text-nav) !important;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
    transform-origin: center;
}

/* Animação X ao abrir */
.navbar--domcore .navbar__toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar--domcore .navbar__toggle.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.navbar--domcore .navbar__toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════════════════════
       HERO SECTION
    ════════════════════════════════════════════════ */
.hero {
    position: relative;
    width: 100%;
    min-height: 560px;
    height: calc(100vh - 64px);
    max-height: 780px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Imagem de fundo */
.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('./assets/image/hero/HeroDesktop.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Conteúdo texto */
.hero__content {
    position: relative;
    z-index: 2;
}

/* H1 — Desktop: 48px → 3rem */
.hero__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.hero__title .highlight {
    color: var(--orange);
}

/* Parágrafos — Desktop: 16–18px → 1rem */
.hero__desc {
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* Tagline — Desktop: 16–18px → 1rem (tratado como parágrafo destaque) */
.hero__tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

/* Botão CTA — Desktop: 16px → 1rem */
.hero__btn {
    display: inline-block;
    background-color: var(--orange-btn);
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 1rem 2.4rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.hero__btn:hover {
    background-color: #e04a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 87, 8, 0.45);
    color: var(--white);
    text-decoration: none;
}

.hero__btn:active {
    transform: translateY(0);
}

/* ─── SOBRE NÓS ──────────────────────────────────────────── */
#sobre-nos {
    background: var(--black);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Brilho central muito suave — só dá "presença" ao black sem romper a continuidade */
#sobre-nos::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 18%, rgba(232, 65, 10, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Linha vertical laranja — separador visual entre título e texto */
.sobre-hr {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, transparent, rgba(232, 65, 10, 0.45), transparent);
    margin: 0 auto 36px;
}

/* Conteúdo acima do pseudo-elemento */
#sobre-nos .container {
    position: relative;
    z-index: 1;
}

/* Eyebrow / Subtitle pequeno — Desktop: 14px → 0.875rem */
.section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.6rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* H2 — Desktop: 56px → 3.5rem (tamanho validado pelo usuário) */
.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--orange);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

/* Parágrafo — Desktop: 16–18px → 1rem */
.sobre-lead {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.sobre-lead strong {
    color: var(--orange-light);
    font-style: italic;
}

/* Parágrafo destaque — Desktop: 1rem */
.sobre-highlight {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

/* Em Breve banner */
.em-breve-banner {
    border: 1.5px solid var(--orange);
    border-radius: 6px;
    padding: 32px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.em-breve-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(232, 65, 10, 0.08) 0%, transparent 70%);
}

/* Subtitle pequeno — Desktop: 14px → 0.875rem */
.em-breve-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

/* H2 display em banner — 2.5rem, contexto de card menor */
.em-breve-text {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.06em;
    line-height: 1.2;
    color: var(--white);
}

/* ─── ESTRUTURA ──────────────────────────────────────────── */
#estrutura {
    background: var(--black);
    padding: 0 0 50px;
    position: relative;
    overflow: hidden;
}

.estrutura-header {
    padding: 80px 0 60px;
    text-align: center;
}

/* Subtitle pequeno — Desktop: 14px → 0.875rem */
.estrutura-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 16px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

/* Content row */
.estrutura-content {
    position: relative;
}

/* Text column - AJUSTADO PARA FICAR MAIS À ESQUERDA */
.estrutura-text-col {
    padding: 60px 0;
    padding-left: 5%;
    position: relative;
    z-index: 2;
}

/* Para telas maiores, reduz ainda mais o espaçamento */
@media (min-width: 1400px) {
    .estrutura-text-col {
        padding-left: 8%;
    }
}

@media (min-width: 1600px) {
    .estrutura-text-col {
        padding-left: 10%;
    }
}

/* Feature list */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 20px 24px;
    background: var(--dark-card);
    border: 1px solid var(--orange);
    border-radius: 10px;
    margin-bottom: 12px;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: default;
}

.feature-item:hover {
    border-left-color: var(--orange);
    background: #222222;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

/* H3 feature-title — Barlow Condensed 1rem, discreto dentro do card */
.feature-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}

/* Parágrafo — Desktop: 1rem */
.feature-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0px;
}

/* Image column - MANTIDA GRUDADA NO CANTO DIREITO */
.estrutura-image-col {
    position: relative;
    min-height: 440px;
}

.estrutura-image-wrapper {
    position: absolute;
    inset: -80px 0 -80px -80px;
    overflow: hidden;
    right: 0;
}

@media (max-width: 991.98px) {
    .estrutura-text-col {
        padding-left: 10rem !important;
        padding-right: 10rem !important;
    }

    .estrutura-image-wrapper {
        position: relative;
        inset: auto;
        height: 440px;

    }

    .estrutura-image-col {
        min-height: auto;
    }

    .col-12.col-lg-4.d-flex {
        justify-content: flex-start !important;
    }

    .footer__hours-wrapper,
    .footer__location-wrapper {
        max-width: 100%;
    }

    .footer__location-wrapper {
        margin-top: 2rem;
    }

}

.estrutura-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Gradient overlay: fades to black on the left (toward text) */
.estrutura-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--black) 0%, transparent 45%),
        linear-gradient(to top, var(--black) 0%, transparent 35%),
        linear-gradient(to bottom, var(--black) 0%, transparent 25%);
    z-index: 1;
}

/* Bottom call-to-action */
.estrutura-cta {
    padding-top: 50px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* H2 display CTA — 2.5rem, equilibrado com o restante da página */
.estrutura-cta p {
    font-family: var(--font-display);
    font-size: 1.9rem;
    letter-spacing: 0.06em;
    line-height: 1.25;
    color: var(--white);
}


/* ══════════════════════════════════════════════════
        MODALIDADES PAGE HOME
       ══════════════════════════════════════════════════ */
#modalidades {
    background-color: var(--black);
    padding: 130px 0 125px;
    overflow: hidden;
    height: auto;
    z-index: 1;
}

.mod-grid-row {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mod-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.mod-bg--desktop {
    background-image: url('./assets/image/estrutura/backgroundModalidades.webp');
}

.mod-bg--mobile {
    background-image: url('./assets/image/estrutura/backgroundModalidades.webp');
    display: none;
}

@media (max-width: 883px) {
    .mod-bg--desktop {
        display: none;
    }

    .mod-bg--mobile {
        display: block;
    }

    #modalidades {
        padding: 85px 0 80px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .mod-card {
        min-height: 140px;
    }
}

.mod-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            #0a0a0a 0%,
            #0a0a0a 10%,
            rgba(10, 10, 10, .95) 20%,
            rgba(10, 10, 10, .75) 45%,
            rgba(10, 10, 10, .70) 70%,
            rgba(10, 10, 10, .90) 100%);
}

.section-eyebrow {
    font-family: var(--font-cond);
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: .6rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: .04em;
    color: var(--orange);
}

.mod-subtitle {
    font-family: var(--font-cond);
    font-size: .875rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.7;
}

.mod-hr {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(232, 65, 10, .45), transparent);
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════
       CARD
       ══════════════════════════════════════════════════ */
.mod-card {
    min-height: 160px;
    cursor: default;
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .65s cubic-bezier(.22, 1, .36, 1),
        transform .65s cubic-bezier(.22, 1, .36, 1),
        box-shadow .3s ease;
}

.mod-card.in-view {
    opacity: 1;
    transform: translateY(0);
}



.mod-card:nth-child(1) {
    transition-delay: .05s;
}

.mod-card:nth-child(2) {
    transition-delay: .20s;
}

.mod-card:nth-child(3) {
    transition-delay: .12s;
}

.mod-card:nth-child(4) {
    transition-delay: .28s;
}

.mod-card:hover::before {
    transform: scaleY(1);
}

.mod-card__photo {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform .65s ease;
    border-radius: 15px;
}

.mod-card:hover .mod-card__photo {
    transform: scale(1.01);
}

.mod-card__body {
    position: relative;
    z-index: 2;
    width: 70%;
}

.mod-card__title {
    font-family: 'Stretch Pro';
    font-size: clamp(0.75rem, 0.875rem + 0.625vw, 1.5rem);
    color: var(--gray-card);
    letter-spacing: .04em;
    line-height: 1;
}

.mod-card__desc {
    font-family: 'Stretch Pro';
    font-size: 9px;
    font-weight: 500;
    color: var(--gray-card);
    text-transform: uppercase;
    letter-spacing: .07em;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   INAUGURAÇÃO SECTION
══════════════════════════════════════════════════ */
.gradient-wrapper {
    background: linear-gradient(
        to bottom,
        #0a0a0a 0%,
        #7d2800 6%,
        #dd4800 18%,
        #cd4300 38%,
        #ab3800 52%,
        #5a1f0f 65%,
        #2d1009 75%,
        #1c0d07 82%,
        #171616 90%,
        #111111 100%
    );
}
#inauguracao {
    background: linear-gradient(to bottom, #0a0a0a 0%, #7d2800 8%, #dd4800 25%, #cd4300 55%, #ab3800 75%, #4a1d14 100%);
    padding-bottom: 120px;
}

/* ─── FAIXAS ─── */
.tickers-block {
    position: absolute;
    top: -32px;
    left: -20px;
    width: calc(100% + 40px);
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ticker-track {
    width: max-content;
    animation: inau-scroll 300s linear infinite;
}

.ticker-track--rev {
    animation-direction: reverse;
    animation-duration: 200s;
}

.ticker-white {
    background: #ffffff;
    padding: 10px 0;
    transform: rotate(2.5deg);
    transform-origin: left center;
}

.ticker-dark {
    background: #292a2a;
    padding: 13px 0;
    transform: rotate(-2.5deg);
    transform-origin: left center;
    margin-top: -4px;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-family: var(--font-cond);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ff5401;
    padding: 0 2rem;
}

.ticker-dot {
    width: 5px;
    height: 5px;
    background: #ff5401;
    border-radius: 50%;
    margin: 0 1rem;
    flex-shrink: 0;
}

@keyframes inau-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── CONTEÚDO ─── */
.inau-body {
    padding-top: 190px;
}

.inau-h2 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.3rem);
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1;
}

.inau-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(232, 65, 10, .45), transparent);
}

.inau-desc {
    font-family: var(--font-cond);
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    line-height: 1.8;
    max-width: 460px;
    opacity: 0.9;
}

.inau-cta {
    background: rgba(0, 0, 0, 0.30);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 28px 44px;
    max-width: 520px;
    width: 100%;
}

.inau-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0, 0, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.inau-cta-title {
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.5;
}

.inau-cta-sub {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.inau-cta-sub-insta {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted);
    text-decoration: none;
}

.inau-cta-sub-insta i {
    font-size: 15px;
}

/* ══════════════════════════════════════════════════
   PLANOS SECTION
══════════════════════════════════════════════════ */
#planos {
    background: linear-gradient(to bottom,
            #4a1d14 0%,
            #2a1410 30%,
            #171616 80%,
            #111111 100%);
    /* Termina na cor do footer (#111111) */
    padding-bottom: 0;
    /* Remove padding extra para o footer encostar */
    position: relative;
    z-index: 1;
    padding-bottom: 10rem;
}

/* H2 */
.planos-h2 {
    font-family: var(--font-display);
    font-size: 4.8rem;
    letter-spacing: 0.06em;
    color: var(--orange);
    line-height: 1;
}

.divtitleplanos {
    margin-bottom: 5rem;
}

/* ─── CARDS ─── */
.plano-card {
    border-radius: 14px;
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 300px;
    /* largura máxima do card */
    transition: transform 0.3s ease;
}

.plano-card:hover {
    transform: translateY(-6px);
}

.plano-card--basico {
    background: #1e1f1f;
}

.plano-card--fitness {
    background: #5a5a5a;
}

/* Premium — card destaque levemente maior */
.plano-card--premium {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 84, 1, 0.22);
}

.plano-card--premium:hover {
    transform: scale(1.05) translateY(-6px);
}

/* Badge "Plano" */
.plano-badge {
    font-family: var(--font-cond);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #ff5401;
}

/* Nome do plano */
.plano-nome {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    color: #ff5401;
    line-height: 1;
    margin-bottom: 20px;
}

/* Divisor */
.plano-divider {
    height: 1px;
    margin-bottom: 20px;
}

.plano-card--basico .plano-divider {
    background: rgba(255, 255, 255, 0.08);
}

.plano-card--premium .plano-divider {
    background: rgba(0, 0, 0, 0.08);
}

.plano-card--fitness .plano-divider {
    background: rgba(255, 255, 255, 0.15);
}

/* Lista de features */
.plano-features {
    margin-bottom: 28px;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plano-features li {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plano-card--basico .plano-features li {
    color: #8c8c8c;
}

.plano-card--premium .plano-features li {
    color: #232424;
}

.plano-card--fitness .plano-features li {
    color: #c0c0c0;
}

/* Preço */
.plano-preco-label {
    font-family: var(--font-cond);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.plano-card--basico .plano-preco-label {
    color: #8c8c8c;
}

.plano-card--premium .plano-preco-label {
    color: #232424;
}

.plano-card--fitness .plano-preco-label {
    color: #c0c0c0;
}

.plano-preco-rs {
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 2rem;
}

.plano-preco-valor {
    font-family: var(--font-display);
    font-size: 3.2rem;
    line-height: 1;
}

.plano-preco-mes {
    font-family: var(--font-cond);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    align-self: flex-end;
    padding-bottom: 6px;
}

.plano-card--basico .plano-preco-rs,
.plano-card--basico .plano-preco-valor,
.plano-card--basico .plano-preco-mes {
    color: #ffffff;
}

.plano-card--premium .plano-preco-rs,
.plano-card--premium .plano-preco-valor,
.plano-card--premium .plano-preco-mes {
    color: #232424;
}

.plano-card--fitness .plano-preco-rs,
.plano-card--fitness .plano-preco-valor,
.plano-card--fitness .plano-preco-mes {
    color: #ffffff;
}

/* Botão */
.plano-btn {
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-cond);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.2s ease;
}

.plano-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    text-decoration: none;
}

.plano-card--basico .plano-btn {
    background: #ff5401;
    color: #ffffff;
}

.plano-card--premium .plano-btn {
    background: #1e1f1f;
    color: #ff5401;
}

.plano-card--fitness .plano-btn {
    background: #ff5401;
    color: #ffffff;
}

/* ── Footer background + efeitos decorativos ── */
.footer__hours-wrapper,
.footer__location-wrapper {
    width: 100%;
    max-width: 280px;
}

/* ── Footer background + efeitos decorativos ── */
.domcore-footer {
    background: linear-gradient(to bottom,
            #111111 0%,
            /* Mesma cor final da seção Planos */
            #0f0f0f 15%,
            #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}


/* ── Logo ── */
.footer__logo {
    font-family: var(--font-display);
    font-size: 2.4rem;
    letter-spacing: 0.06em;
    line-height: 1;
    color: #fff;
}

.footer__logo-img {
    max-height: 30px;
    width: auto;
    display: block;
}

.footer__logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer__logo-link:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

/* ── Slogan ── */
.footer__slogan {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

/* ── Botão Instagram ── */
.footer__insta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.3rem;
    border: 1.5px solid rgba(232, 65, 10, 0.4);
    border-radius: 8px;
    font-family: var(--font-cond);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    background: rgba(232, 65, 10, 0.08);
    transition: all 0.3s ease;
}

.footer__insta i {
    color: var(--orange);
    font-size: 1.1rem;
}

.footer__insta:hover {
    background: rgba(232, 65, 10, 0.15);
    border-color: var(--orange);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ── Títulos de bloco ── */
.footer__block-title {
    font-family: var(--font-cond);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem !important;
}

.footer__block-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 22px;
    background: var(--orange);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── Horários ── */
.footer__hours li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__hours li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__hours-day {
    font-family: var(--font-cond);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.footer__hours-time {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
}

/* ── Endereço ── */
.footer__address {
    margin-bottom: 1.25rem !important;
}

.footer__addr-icon {
    color: var(--orange);
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer__address p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 0;
}

/* ── Mini mapa ── */
.footer__map {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(232, 65, 10, 0.25);
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 230px;
}

.footer__map:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(232, 65, 10, 0.15);
    text-decoration: none;
}

.footer__map-canvas {
    position: relative;
    height: 50px;
    background: #1c1a19;
    overflow: hidden;
}

/* Atmosfera laranja — sem grid */
.footer__map-canvas::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 110%, rgba(232, 65, 10, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 20% 50%, rgba(232, 65, 10, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 80% 30%, rgba(232, 65, 10, 0.05) 0%, transparent 55%);
}

/* Cruzamento de ruas sutil */
.footer__map-canvas::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, transparent 47%, rgba(255, 255, 255, 0.04) 47%, rgba(255, 255, 255, 0.04) 53%, transparent 53%),
        linear-gradient(to right, transparent 42%, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0.04) 58%, transparent 58%);
}

.footer__map-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(232, 65, 10, 0.35) 0%, transparent 70%);
    z-index: 1;
}

.footer__map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    z-index: 2;
    color: var(--orange);
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 8px rgba(232, 65, 10, 0.5));
    animation: pinBob 2.4s ease-in-out infinite;
}

@keyframes pinBob {

    0%,
    100% {
        transform: translate(-50%, -55%) translateY(0);
    }

    50% {
        transform: translate(-50%, -55%) translateY(-3px);
    }
}

.footer__map-label {
    background: rgba(232, 65, 10, 0.08);
    color: var(--orange);
    font-family: var(--font-cond);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-top: 1px solid rgba(232, 65, 10, 0.2);
    transition: all 0.3s ease;
    padding: 0.6rem 0.5rem;
    text-align: center;
}

.footer__map-label i {
    font-size: 0.75rem;
}

.footer__map:hover .footer__map-label {
    background: rgba(232, 65, 10, 0.15);
}

/* ── Divisor ── */
.footer__divider {
    border-color: rgba(255, 255, 255, 0.06) !important;
}

/* ── Bottom bar ── */
.footer__copy {
    font-family: var(--font-cond);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.footer__credit-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.footer__credit-link i {
    font-size: 0.75rem;
}

.footer__credit-link:hover {
    color: var(--orange);
}

/* ════════════════════════════════════════════════
       ANIMAÇÕES DE SCROLL (Intersection Observer)
    ════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.delay-1 {
    transition-delay: 0.15s;
}

.reveal.delay-2 {
    transition-delay: 0.30s;
}

.reveal.delay-3 {
    transition-delay: 0.45s;
}

.reveal.delay-4 {
    transition-delay: 0.60s;
}

/* Estado visível para ambos os tipos de animação */
.reveal.visible,
.reveal-left.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 {
    transition-delay: .10s;
}

.reveal.delay-2 {
    transition-delay: .20s;
}

/* RESPONSIVE */
@media (min-width: 1880px) {
    .herocontai {
        margin-left: 80px;
    }
}

@media (max-width: 991.98px) {

    .footer__hours-wrapper,
    .footer__location-wrapper {
        max-width: 100%;
    }

    .footer__location-wrapper {
        margin-top: 2rem;
    }

    /* Centralizar todas as colunas */
    .domcore-footer .row {
        text-align: center;
    }

    /* Centralizar logo */
    .footer__logo {
        text-align: center;
    }

    .footer__logo-img {
        margin: 0 auto;
    }

    .footer__logo-link {
        display: block;
    }

    /* Centralizar slogan */
    .footer__slogan {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }

    /* Centralizar botão Instagram */
    .footer__insta {
        margin-left: auto;
        margin-right: auto;
    }

    /* Centralizar títulos dos blocos */
    .footer__block-title {
        justify-content: center;
    }

    /* Centralizar horários */
    .footer__hours-wrapper {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer__hours li {
        justify-content: space-between;
        text-align: left;
        /* Mantém alinhamento dos horários */
    }

    /* Centralizar localização */
    .footer__location-wrapper {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2rem;
    }

    .footer__address {
        justify-content: center;
        text-align: left;
        /* Mantém alinhamento do endereço */
    }

    /* Centralizar mapa */
    .footer__map {
        margin-left: auto;
        margin-right: auto;
    }

    /* Centralizar bottom bar */
    .d-flex.flex-wrap.justify-content-between.align-items-center {
        flex-direction: column !important;
        text-align: center;
        gap: 0.75rem !important;
    }

    .footer__copy {
        text-align: center;
    }
}


@media (max-width: 884px) {
    .navbar--domcore .navbar__toggle {
        display: flex !important;
    }

    .navbar--domcore .navbar__menu {
        flex-direction: column !important;
        gap: 0 !important;
        position: absolute !important;
        top: 64px;
        left: 0;
        width: 100% !important;
        background: var(--bg-nav) !important;
        border-top: 1px solid rgba(222, 85, 20, 0.25);
        border-bottom: 2px solid var(--text-nav) !important;
        overflow: hidden !important;
        max-height: 0 !important;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        opacity: 0 !important;
        pointer-events: none;
    }

    .navbar--domcore .navbar__menu.open {
        max-height: 320px !important;
        opacity: 1 !important;
        pointer-events: auto;
    }

    .navbar--domcore .navbar__menu li {
        width: 100% !important;
        border-bottom: 1px solid rgba(222, 85, 20, 0.1) !important;
    }

    .navbar--domcore .navbar__menu li:last-child {
        border-bottom: none !important;
    }

    /* Navbar mobile: 14–15px → 0.875rem */
    .navbar--domcore .navbar__menu a {
        display: block !important;
        padding: 1rem 2rem !important;
        font-size: 0.877rem !important;
        letter-spacing: 0.1em !important;
    }

    .navbar--domcore .navbar__menu a::after {
        display: none;
    }

    .navbar--domcore .navbar__menu a:hover,
    .navbar--domcore .navbar__menu a.active {
        background: rgba(222, 85, 20, 0.08) !important;
        color: var(--white) !important;
        padding-left: 2.5rem !important;
    }

    /* HERO RESPONSIVE */
    .hero {
        min-height: 480px;
        max-height: none;
        height: auto;
        padding: 1rem 0 5rem;
        align-items: flex-end;
    }

    .hero {
        align-items: center;
    }

    /* Força coluna full width acima do breakpoint md do Bootstrap */
    .hero__content .col-md-7,
    .hero__content .col-lg-6,
    .hero__content .col-xl-5 {
        width: 100% !important;
        text-align: center !important;
    }

    /* H1 mobile: 32–36px → 2rem */
    .hero__title,
    .hero__desc,
    .hero__tagline {
        text-align: center;
    }

    .hero__btn {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    /* ── Troca de imagem no mobile ──
         Quando tiver a imagem, substitua 'Hero_Section_mobile.jpg' pelo nome do arquivo */
    .hero__bg {
        background-image: url('./assets/image/hero/HeroDesktop.png');
        background-position: center center;
    }

    /* H1 mobile: 32–36px → 2rem */
    .hero__title {
        font-size: 3rem;
    }

    /* Parágrafo mobile: 16–18px → 1rem (mantém igual) */
    .hero__desc {
        font-size: 1rem;
    }

    /* Tagline mobile: 1rem */
    .hero__tagline {
        font-size: 1rem;
    }

    /* Botão CTA mobile: 15–16px → 0.9375rem */
    .hero__btn {
        font-size: 0.9375rem;
    }

    /* H2 mobile: Bebas Neue → 2rem proporcional */
    .section-title {
        font-size: 2.5rem;
    }

    /* Eyebrow/Subtitle mobile: 13–14px → 0.8125rem */
    .section-eyebrow {
        font-size: 0.8125rem;
    }

    #sobre-nos {
        padding: 75px 0 80px;
    }

    /* Parágrafo mobile: 1rem */
    .sobre-lead,
    .sobre-highlight {
        font-size: 1rem;
    }

    /* Subtitle pequeno mobile: 13–14px → 0.8125rem */
    .em-breve-label {
        font-size: 0.950rem;
    }

    /* H2 display mobile: Bebas Neue → 1.75rem */
    .em-breve-text {
        font-size: 1.56rem;
    }

    /* Subtitle pequeno mobile: 0.8125rem */
    .estrutura-subtitle {
        font-size: 0.8125rem;
    }

    .estrutura-header {
        padding: 0px;
    }

    /* H3 mobile: Barlow Condensed → 0.9375rem */
    .feature-title {
        font-size: 0.9375rem;
    }

    /* Parágrafo mobile: 1rem */
    .feature-desc {
        font-size: 1rem;
    }

    /* H2 display CTA mobile: Bebas Neue → 1.75rem */
    .estrutura-cta p {
        font-size: 1.30rem;
    }

    .mod-card__body {
        width: 80%;
    }

    /* Reduz o gap vertical entre as linhas de cards */
    .mod-grid-row {
        --bs-gutter-y: 1.2rem;
        /* equivalente ao gy-2 que você quer */
    }

    /* Ajusta altura mínima dos cards para não inflar o espaçamento */
    .mod-card {
        min-height: 130px;
    }

    /* Garante que a foto não force altura extra */
    .mod-card__photo {
        background-size: cover;
        /* cover em vez de contain evita espaço vazio */
        border-radius: 13px;
    }

    /*SECTION INAGURAÇÃO */
    #inauguracao {
        padding-bottom: 80px;
    }

    .tickers-block {
        top: -22px;
        left: -30px;
        /* estoura mais nas bordas no mobile */
        width: calc(100% + 60px);
    }

    .ticker-white {
        transform: rotate(5deg);
        /* mais inclinado no mobile */
    }

    .ticker-dark {
        transform: rotate(-5deg);
        transform-origin: left center;
        margin-top: 33px;
    }


    .inau-h2 {
        font-size: 2.8rem;
    }

    .inau-body {
        padding-top: 130px;
    }

    .inau-cta {
        padding: 22px 24px;
    }

    .tickers-block {
        top: -26px;
    }

    /* section planos */
    #planos {
        padding-bottom: 3rem;
    }

    .planos-h2 {
        font-size: 4.2rem;
    }

    .divtitleplanos {
        margin-bottom: 4rem !important;
    }

    .plano-card--premium {
        transform: scale(1);
        box-shadow: 0 12px 40px rgba(255, 84, 1, 0.22);
    }

    .plano-card--premium:hover {
        transform: translateY(-6px);
    }

    /* Centraliza os cards de planos em mobile */
    .planos-grid-row {
        justify-content: center !important;
    }

    .planos-grid-row>[class*="col"] {
        display: flex;
        justify-content: center;
    }

    .plano-card {
        max-width: 330px;
        /* um pouco mais largo no mobile para respirar melhor */
        width: 100%;
    }

    /* footer */
    .footer__hours-wrapper,
    .footer__location-wrapper {
        max-width: 100%;
    }

    .footer__slogan {
        max-width: 100%;
        font-size: 0.85rem;
    }

    .footer__block-title {
        font-size: 0.85rem;
        letter-spacing: 0.25em;
    }

    .footer__hours-day,
    .footer__hours-time {
        font-size: 0.9rem;
    }

    .footer__hours-time {
        font-size: 1rem;
    }

    .footer__address p {
        font-size: 0.85rem;
        text-align: center;
    }

    .footer__copy {
        font-size: 0.70rem;
        letter-spacing: 0.15em;
    }
}

@media (max-width: 768px) {

    /* hero home */
    .herocontai {
        margin-left: 30px;
    }

    /* modalidades e aula */

    .mod-card__title {
        font-size: 0.90rem;
        margin-bottom: 0.5rem;
    }

    .mod-card__desc {
        font-size: 0.50rem;
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .plano-card {
        width: 100%;
        max-width: 320px;
        /* pode ajustar fino */
    }
}

@media (max-width: 480px) {
    .herocontai {
        margin-left: 0px;
    }

    .mod-card {
        min-height: 120px;
    }

    .em-breve-banner {
        max-width: 380px;

    }

    .estrutura-text-col {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .tickers-block {
        top: -20px;
        left: -60px;
        width: calc(100% + 120px);
    }

    /* modalidades e aulas */
    .mod-card {
        margin-bottom: -5px;
    }

    .mod-card__body {
        padding: 1rem !important;
    }

    .mod-card__title {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .mod-card__desc {
        font-size: 0.6rem;
        line-height: 1.3;
    }

    /* Garante que o texto não ultrapasse os limites do card */
    .mod-card__desc br {
        display: none;
    }

    /* Ajuste da grid para melhor espaçamento */
    .mod-grid-row {
        margin-left: 12px;
        margin-right: 12px;
    }

    .ticker-white {
        transform: rotate(10deg);
        /* mais inclinado para baixo na direita */
        transform-origin: left center;

    }

    .ticker-dark {
        transform: rotate(-10deg);
        /* mais inclinado para cima na direita */
        transform-origin: left center;
        margin-top: 43px;
        /* desce para centralizar o ponto do X */
    }
}

/* ============================================
   CORREÇÕES: Quebras de linha via CSS
   ============================================ */

/* Hero Section - Substitui os <br> que foram removidos */
.hero__title br,
.hero__desc br,
.hero__tagline br {
    display: none;
}

/* Aplica quebras de linha nos elementos que originalmente tinham <br> */
.hero__title {
    white-space: pre-line;
}

/* Para a hero section, mantém a quebra onde tinha <br> */
.hero__title {
    display: block;
}

/* Aplica quebras nos parágrafos que precisavam */
.hero__desc {
    white-space: pre-line;
}

/* Sobre Nós - em-breve-text sem br */

/* Estrutura - subtitle sem br */
.estrutura-subtitle {
    white-space: pre-line;
}

/* Modalidades - descrição dos cards, agora sem quebras manuais */
.mod-card__desc {
    white-space: normal;
    word-break: break-word;
    hyphens: auto;
}

/* Inauguração - descrição e CTA sem br */
.inau-desc {
    white-space: pre-line;
}

.inau-cta-title {
    white-space: pre-line;
}

.inau-cta-sub {
    white-space: pre-line;
}

/* Planos - badge e features, remover quebras desnecessárias */
.plano-badge,
.plano-features li {
    white-space: normal;
}