/* ============================================================
   NEW LIFE ACADEMIA - Landing Page
   Paleta inspirada na logo prata/alto-relevo + preto
   ============================================================ */

/* ============= RESET & BASE ============= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta prata/metal */
    --silver-100: #f5f5f5;
    --silver-200: #e8e8e8;
    --silver-300: #d4d4d4;
    --silver-400: #b8b8b8;
    --silver-500: #9a9a9a;
    --silver-600: #707070;
    --silver-700: #4a4a4a;

    /* Tons escuros */
    --black: #000000;
    --black-soft: #0a0a0a;
    --dark-1: #111111;
    --dark-2: #181818;
    --dark-3: #222222;
    --dark-4: #2a2a2a;

    /* Paleta VERMELHO */
    --red-100: #ff4d4d;
    --red-200: #ff1a1a;
    --red-300: #e50914;
    --red-400: #c1121f;
    --red-500: #a4161a;
    --red-600: #800e13;
    --red-700: #540b0e;
    --red-glow: rgba(229, 9, 20, 0.5);
    --red-glow-soft: rgba(229, 9, 20, 0.25);

    /* Acentos */
    --accent: #e50914;
    --accent-silver: #d4d4d4;
    --accent-glow: rgba(212, 212, 212, 0.3);

    /* Gradientes */
    --gradient-silver: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 25%, #f5f5f5 50%, #9a9a9a 75%, #d4d4d4 100%);
    --gradient-silver-2: linear-gradient(180deg, #ffffff 0%, #d4d4d4 50%, #707070 100%);
    --gradient-red: linear-gradient(135deg, #ff1a1a 0%, #e50914 50%, #a4161a 100%);
    --gradient-red-2: linear-gradient(180deg, #ff4d4d 0%, #e50914 50%, #800e13 100%);
    --gradient-red-silver: linear-gradient(135deg, #e50914 0%, #c1121f 40%, #d4d4d4 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #181818 100%);
    --gradient-card: linear-gradient(180deg, rgba(40, 40, 40, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    --gradient-card-red: linear-gradient(180deg, rgba(60, 10, 10, 0.6) 0%, rgba(15, 15, 15, 0.95) 100%);

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(212, 212, 212, 0.15);
    --shadow-red: 0 8px 30px rgba(229, 9, 20, 0.35);
    --shadow-red-lg: 0 20px 60px rgba(229, 9, 20, 0.4);

    /* Layout */
    --container: 1200px;
    --header-h: 90px;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black-soft);
    color: var(--silver-200);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

section,
.section,
.hero {
    max-width: 100vw;
    overflow-x: clip;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============= UTILITIES ============= */
.text-silver {
    color: var(--silver-100);
    display: inline-block;
}

.text-red {
    color: #ff1a1a;
    display: inline-block;
    filter: drop-shadow(0 0 25px var(--red-glow-soft));
}

/* ============= BUTTONS ============= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-red);
    color: var(--silver-100);
    box-shadow: var(--shadow-red);
    border: 2px solid transparent;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-red-lg);
    background: var(--gradient-red-2);
}

.btn--ghost {
    background: transparent;
    color: var(--silver-100);
    border: 2px solid var(--silver-600);
}

.btn--ghost:hover {
    background: transparent;
    color: var(--red-100);
    border-color: var(--red-300);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--red-glow-soft);
}

.btn--silver {
    background: var(--gradient-silver);
    color: var(--black);
    box-shadow: 0 6px 20px rgba(212, 212, 212, 0.25);
}

.btn--silver:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 212, 212, 0.4);
}

.btn--large {
    padding: 18px 40px;
    font-size: 15px;
}

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

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* ============= HEADER ============= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 9, 20, 0.15);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.96);
    box-shadow: var(--shadow-md), 0 1px 0 rgba(229, 9, 20, 0.2);
    border-bottom-color: rgba(229, 9, 20, 0.3);
}

.header__container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__logo {
    height: 70px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.header__logo:hover {
    transform: scale(1.05);
}

.header__logo picture {
    display: block;
    height: 100%;
    line-height: 0;
}

.header__logo-img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 18px rgba(229, 9, 20, 0.4)) drop-shadow(0 0 8px rgba(212, 212, 212, 0.2));
}

/* ============= NAV ============= */
.nav__list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--silver-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-red);
    box-shadow: 0 0 10px var(--red-glow);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav__link:hover,
.nav__link.active {
    color: var(--silver-100);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--silver-200);
    transition: var(--transition);
    border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============= HERO ============= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(60%) contrast(1.15) brightness(0.55) saturate(1.1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(10, 10, 10, 0.95) 0%,
            rgba(10, 10, 10, 0.85) 35%,
            rgba(10, 10, 10, 0.55) 70%,
            rgba(10, 10, 10, 0.35) 100%),
        radial-gradient(ellipse at 70% 50%, rgba(229, 9, 20, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero__container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero__content {
    max-width: 760px;
    width: 100%;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.35);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--silver-100);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px var(--red-glow-soft);
}

.hero__tag i {
    color: var(--red-100);
    animation: pulse-red 2s ease-in-out infinite;
}

@keyframes pulse-red {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

.hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 8vw, 6.5rem);
    line-height: 0.95;
    color: var(--silver-100);
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero__subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    color: var(--silver-300);
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero__stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 212, 212, 0.1);
    max-width: 100%;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-num,
.hero__stat span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ff1a1a;
    -webkit-text-fill-color: #ff1a1a;
    line-height: 1;
}

.hero__stat p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--silver-500);
    margin-top: 6px;
}


/* ============= SECTION ============= */
.section {
    padding: 100px 0;
    position: relative;
}

.section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.section__tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--red-100);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.1);
}

.section__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.9rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: var(--silver-100);
    letter-spacing: 1px;
    margin-bottom: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--silver-400);
    max-width: 600px;
    margin: 0 auto;
}

/* ============= SOBRE ============= */
.sobre {
    background: var(--gradient-dark);
}

.sobre__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre__lead {
    font-size: 1.1rem;
    color: var(--silver-300);
    margin-bottom: 28px;
    line-height: 1.8;
}

.sobre__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sobre__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--silver-200);
}

.sobre__list i {
    color: var(--red-200);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px var(--red-glow));
}

.sobre__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    padding: 32px 24px;
    background: var(--gradient-card);
    border: 1px solid rgba(212, 212, 212, 0.08);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-red);
    box-shadow: 0 0 15px var(--red-glow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px var(--red-glow-soft);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--silver-100);
    box-shadow: 0 8px 20px var(--red-glow-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--silver-100);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--silver-400);
}

/* ============= PLANOS ============= */
.planos {
    background: var(--black-soft);
    position: relative;
}

.planos::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 90%, rgba(229, 9, 20, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.planos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* ===== PIRÂMIDE: 2 em cima (50% / 50%) + 3 embaixo (33% / 33% / 33%) ===== */
.planos__grid--pyramid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.planos__grid--pyramid .plan-card--top {
    grid-column: span 3;
    max-width: 460px;
    width: 100%;
    justify-self: center;
}

.planos__grid--pyramid .plan-card--bottom {
    grid-column: span 2;
}

.plan-card {
    background: var(--gradient-card);
    border: 1px solid rgba(212, 212, 212, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow: var(--shadow-lg), 0 0 40px var(--red-glow-soft);
}

.plan-card--featured {
    background: var(--gradient-card-red);
    border: 2px solid var(--red-400);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg), 0 0 60px var(--red-glow-soft);
}

.plan-card--featured::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: var(--gradient-red);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.plan-card--featured:hover {
    transform: scale(1.04) translateY(-10px);
    box-shadow: var(--shadow-lg), 0 0 80px var(--red-glow);
}

.plan-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: var(--gradient-red);
    color: var(--silver-100);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 50px;
    box-shadow: 0 4px 20px var(--red-glow);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.plan-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.25);
    border-radius: 50%;
    font-size: 1.6rem;
    color: var(--red-100);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.plan-card:hover .plan-card__icon {
    background: var(--gradient-red);
    color: var(--silver-100);
    border-color: transparent;
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 8px 20px var(--red-glow);
}

.plan-card--featured .plan-card__icon {
    background: var(--gradient-red);
    color: var(--silver-100);
    border-color: transparent;
    box-shadow: 0 8px 20px var(--red-glow);
}

.plan-card__name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--silver-100);
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.plan-card__desc {
    font-size: 0.85rem;
    color: var(--silver-500);
    margin-bottom: 24px;
    min-height: 22px;
}

.plan-card__price-main {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.plan-card__price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    line-height: 1;
    color: #ff1a1a;
    -webkit-text-fill-color: #ff1a1a;
    letter-spacing: 1px;
}

.plan-card__price small {
    font-size: 1.1rem;
    margin: 0 2px;
}

.plan-card__period {
    font-size: 0.85rem;
    color: var(--silver-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-card__price-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(212, 212, 212, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(212, 212, 212, 0.06);
}

.plan-card__price-row .plan-card__price {
    font-size: 1.6rem;
}

.plan-card__price-row .plan-card__price small {
    font-size: 0.7rem;
}

.plan-card__label {
    font-size: 0.78rem;
    color: var(--silver-400);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: left;
}

.plan-card__features {
    text-align: left;
    margin-bottom: 28px;
    flex-grow: 1;
}

.plan-card__features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--silver-300);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-card__features i {
    color: var(--red-200);
    font-size: 0.85rem;
    width: 16px;
    filter: drop-shadow(0 0 4px var(--red-glow-soft));
}

.planos__note {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9rem;
    color: var(--silver-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ============= HORÁRIOS ============= */
.horarios {
    background: var(--gradient-dark);
}

.horarios__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.horario-card {
    background: var(--gradient-card);
    border: 1px solid rgba(212, 212, 212, 0.08);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.horario-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.horario-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.35);
    box-shadow: var(--shadow-lg), 0 0 40px var(--red-glow-soft);
}

.horario-card:hover::after {
    opacity: 1;
}

.horario-card--main {
    background: var(--gradient-card-red);
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow: 0 0 40px var(--red-glow-soft);
}

.horario-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--silver-100);
    box-shadow: 0 8px 24px var(--red-glow-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.horario-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--silver-100);
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.horario-card__hours {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.horario-card__time {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    color: #ff1a1a;
    -webkit-text-fill-color: #ff1a1a;
    line-height: 1;
}

.horario-card__sep {
    font-size: 1rem;
    color: var(--silver-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.horario-card p {
    font-size: 0.85rem;
    color: var(--silver-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* ============= ESTRUTURA ============= */
.estrutura {
    background: var(--black-soft);
}

.estrutura__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.estrutura__content .section__tag {
    margin-bottom: 16px;
}

.estrutura__content .section__title {
    text-align: left;
    margin-bottom: 20px;
}

.estrutura__content > p {
    color: var(--silver-400);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.estrutura__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.estrutura__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(212, 212, 212, 0.03);
    border: 1px solid rgba(212, 212, 212, 0.08);
    border-radius: var(--radius);
    transition: var(--transition);
}


.estrutura__feature i {
    font-size: 1.4rem;
    color: var(--red-200);
    margin-top: 4px;
    filter: drop-shadow(0 0 8px var(--red-glow));
}

.estrutura__feature:hover {
    background: rgba(229, 9, 20, 0.06);
    border-color: rgba(229, 9, 20, 0.3);
}

.estrutura__feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--silver-100);
    margin-bottom: 2px;
}

.estrutura__feature span {
    font-size: 0.78rem;
    color: var(--silver-500);
}

.estrutura__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 50px var(--red-glow-soft);
    border: 2px solid rgba(229, 9, 20, 0.15);
}

.estrutura__image picture {
    display: block;
    width: 100%;
    height: 540px;
}

.estrutura__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.95) saturate(1.1);
    transition: var(--transition);
}

.estrutura__image:hover img {
    filter: contrast(1.1) brightness(1.05) saturate(1.2);
    transform: scale(1.04);
}

.estrutura__badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    padding: 18px 24px;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 9, 20, 0.35);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 0 30px var(--red-glow-soft);
}

.estrutura__badge i {
    font-size: 2rem;
    color: var(--red-200);
    filter: drop-shadow(0 0 10px var(--red-glow));
}

.estrutura__badge span {
    color: var(--silver-300);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
}

.estrutura__badge strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--silver-100);
    letter-spacing: 1px;
}

/* ============= CONTATO ============= */
.contato {
    background: var(--gradient-dark);
}

.contato__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.contato-card {
    display: block;
    padding: 40px 28px;
    background: var(--gradient-card);
    border: 1px solid rgba(212, 212, 212, 0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contato-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-red);
    opacity: 0.08;
    transition: height 0.4s;
}

.contato-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow: var(--shadow-lg), 0 0 40px var(--red-glow-soft);
}

.contato-card:hover::before {
    height: 100%;
}

.contato-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--red-100);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contato-card:hover .contato-card__icon {
    background: var(--gradient-red);
    color: var(--silver-100);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 20px var(--red-glow);
}

.contato-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--silver-100);
    letter-spacing: 1px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.contato-card p {
    font-size: 0.85rem;
    color: var(--silver-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.contato-card__link {
    display: inline-block;
    font-size: 0.95rem;
    color: var(--silver-200);
    font-weight: 600;
    padding-top: 14px;
    border-top: 1px solid rgba(212, 212, 212, 0.1);
    width: 100%;
    position: relative;
    z-index: 1;
}

.contato__map {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(229, 9, 20, 0.3);
    box-shadow: var(--shadow-lg), 0 0 40px var(--red-glow-soft);
    position: relative;
}

.contato__map::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    pointer-events: none;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contato__map iframe {
    display: block;
    filter: grayscale(40%) contrast(1.05);
    transition: var(--transition);
}

.contato__map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* ============= FOOTER ============= */
.footer {
    background: var(--black);
    padding: 70px 0 30px;
    border-top: 2px solid transparent;
    border-image: var(--gradient-red) 1;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-red);
    box-shadow: 0 0 20px var(--red-glow);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer__col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--silver-100);
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col li {
    font-size: 0.92rem;
    color: var(--silver-400);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__col i {
    color: var(--red-200);
    width: 16px;
    filter: drop-shadow(0 0 4px var(--red-glow-soft));
}

.footer__col a {
    color: var(--silver-400);
    transition: var(--transition);
}

.footer__col a:hover {
    color: var(--red-100);
    padding-left: 4px;
}

.footer__col--brand picture {
    display: block;
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
    line-height: 0;
}

.footer__logo {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 30px rgba(229, 9, 20, 0.45)) drop-shadow(0 0 12px rgba(212, 212, 212, 0.2));
}

.footer__col--brand p {
    font-size: 0.9rem;
    color: var(--silver-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.25);
    border-radius: 50%;
    color: var(--silver-100);
    font-size: 1.05rem;
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--gradient-red);
    color: var(--silver-100);
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 8px 20px var(--red-glow);
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(212, 212, 212, 0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--silver-500);
}

/* ============= WHATSAPP FLOAT ============= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.7);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============= AOS ANIMATIONS ============= */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }

[data-aos].aos-visible {
    opacity: 1;
    transform: translate(0);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
    .sobre__grid,
    .estrutura__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .estrutura__content .section__title {
        text-align: center;
    }

    .horarios__grid {
        grid-template-columns: 1fr 1fr;
    }

    .horario-card--main {
        grid-column: 1 / -1;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer__col--brand {
        grid-column: 1 / -1;
    }

    /* Tablet: pirâmide vira 2 colunas simples (mais legível) */
    .planos__grid--pyramid {
        grid-template-columns: 1fr 1fr;
        max-width: 720px;
    }

    .planos__grid--pyramid .plan-card--top,
    .planos__grid--pyramid .plan-card--bottom {
        grid-column: span 1;
        max-width: 100%;
    }

    /* Se tiver um card sobrando (5º), ocupa toda a largura */
    .planos__grid--pyramid .plan-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 360px;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 76px;
    }

    .section {
        padding: 70px 0;
    }

    .section__header {
        margin-bottom: 50px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 30px 30px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(212, 212, 212, 0.08);
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .nav__link {
        font-size: 1.05rem;
    }

    .header__cta {
        display: none;
    }

    .header__logo {
        height: 56px;
    }

    .hero {
        min-height: 90vh;
    }

    .hero__stats {
        gap: 30px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .sobre__features,
    .estrutura__features {
        grid-template-columns: 1fr;
    }

    .horarios__grid {
        grid-template-columns: 1fr;
    }

    .planos__grid,
    .planos__grid--pyramid {
        grid-template-columns: 1fr;
    }

    .planos__grid--pyramid .plan-card--top,
    .planos__grid--pyramid .plan-card--bottom {
        grid-column: span 1;
        max-width: 100%;
    }

    .plan-card--featured {
        transform: none;
    }

    .plan-card--featured:hover {
        transform: translateY(-10px);
    }

    .estrutura__image picture {
        height: 380px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 2.4rem;
        letter-spacing: 1px;
    }

    .hero__stats {
        gap: 18px;
    }

    .hero__stat-num,
    .hero__stat span {
        font-size: 1.9rem;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .plan-card__price {
        font-size: 2.6rem;
    }

    .horario-card__time {
        font-size: 2.8rem;
    }

    .horario-card__hours {
        gap: 8px;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .hero__tag {
        font-size: 10px;
        padding: 7px 14px;
        letter-spacing: 1.2px;
    }

    .plan-card__price-row {
        padding: 10px 12px;
    }

    .plan-card__label {
        font-size: 0.72rem;
    }

    .estrutura__features {
        grid-template-columns: 1fr;
    }

    .footer__col li {
        word-break: break-word;
    }
}

/* ============= REDUCED MOTION ============= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    [data-aos] {
        opacity: 1;
        transform: none;
    }
}
