/* Variables & Reset */
:root {
    --primary-color: #FF6600;
    --secondary-color: #f49351;
    --primary-hover: #e65c00;
    --bg-dark: #111111;
    --bg-card: #a54707;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #4e4e4e;
    --font-heading: 'Abel', sans-serif;
    --font-body: 'Abel', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-orange {
    color: var(--primary-color);
}

.highlight {
    color: var(--primary-color);
}

.center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section (mantido, mesmo não usando mais o hero antigo) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 44, 44, 0.4), rgba(17, 17, 17, 1));
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-ctas,
.footer-ctas {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-box {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    transition: var(--transition);
}

.cta-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

@media (max-width: 780px) {
    .video-background video {
        display: none;
    }

    .video-background {
        background: url('https://fitclass.com.br/2020/img/bg-mobile.jpg') no-repeat center center/cover;
        background-color: #111;
    }
}

/* Sections General */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* History Section */
.history-section {
    background-color: var(--bg-dark);
}

.history-content {
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.history-content .container {
    max-width: 800px;
    background: red;
}

.history-content p {
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.3rem;
    color: white;
    font-weight: 500;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-top: 40px;
}

/* Structure Section */
.structure-section {
    background: #000 url(https://fitclass.com.br/unidades/vila-das-belezas/garanta-sua-vaga/images/bg1.png) center center no-repeat;
    background-size: cover;
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    border: 0 solid transparent;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--text-white);
    font-size: 1.3rem;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.offer-box {
    /*background: var(--primary-color);*/
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
}

.offer-content {
    position: relative;
    z-index: 1;
}

.tag {
    background: white;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.offer-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.offer-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.urgency-trigger {
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
    background: var(--primary-color);
}

.faq-question:hover {
    color: var(--text-white);
    background: var(--secondary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    /* Aumentei um pouco o tempo para a animação ficar fluida com o texto longo */
    color: var(--text-white);
}

.faq-answer ul {
    padding: 0 30px;
    margin-bottom: 15px;
    /* Adicionado para dar respiro entre a lista e o próximo parágrafo */
}

.faq-answer ul li {
    list-style: disc;
    margin-bottom: 5px;
}

.faq-item.active .faq-answer {
    padding-top: 20px;
    padding-bottom: 20px;
    /* AJUSTE AQUI: Aumentado de 400px para 2000px para caber o FAQ completo da Thermo Chill */
    max-height: 2000px !important;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding: 80px 0 30px;
    border-top: 1px solid #222;
}

.footer-ctas {
    margin-bottom: 100px;
}

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

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.security-seal {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4CAF50;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #111;
        padding: 20px;
        gap: 20px;
        border-top: 1px solid #333;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links li {
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        font-size: 1.2rem;
    }

    .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        color: white;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-ctas,
    .footer-ctas {
        flex-direction: column;
    }

    .cta-box {
        width: 100%;
        max-width: 100%;
    }

    .offer-content h2 {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* =========================
   VDB BLOCK (isolado)
   ========================= */

.vdb-block {
    background-color: #2f2f2f;
    padding-top: 80px;
    /* compensa navbar fixa */
}

.vdb-hero {
    background-color: #2f2f2f;
}

.vdb-features {
    background-color: #2f2f2f;
    color: #fff;
    padding: 100px 20px 50px;
}

.vdb-features .vdb-card {
    background-color: transparent;
    border: 4px dashed orange;
    color: #fff;
    min-height: 230px;
    margin-bottom: 50px;
    font-family: url('helvetica_neue_lt_st97BlkCnOb');
}

.vdb-features .vdb-card p {
    font-size: 23px;
}

.vdb-features .vdb-card span {
    font-size: 14px;
    color: orange;
}

.vdb-features .vdb-icon {
    margin: -90px auto 10px;
    display: inline-block;
}

.vdb-btn-cta {
    padding: 30px;
    font-family: url('helvetica_neue_lt_st97BlkCnOb');
    text-transform: uppercase;
    font-size: 35px;
    border-radius: 0;
}

.vdb-dis {
    font-size: 10px;
    color: #fff;
}





/*black*/
@font-face {
    font-family: 'helvetica_neue_lt_st97BlkCnOb';
    src: url('../fonts/helveticaneueltstd-blkcno-webfont.woff2') format('woff2'),
        url('../fonts/helveticaneueltstd-blkcno-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


/*light*/
@font-face {
    font-family: 'helvetica_neue_lt_std47LtCnOb';
    src: url('../fonts/helveticaneueltstd-ltcno-webfont.woff2') format('woff2'),
        url('../fonts/helveticaneueltstd-ltcno-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}



/* Limita o crescimento vertical do carrossel */
.custom-video-carousel {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

/* Garante que o grid não estique a seção */
.video-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    max-height: 520px;
    /* Trava a altura do container */
}

.video-grid video {
    width: 100%;
    /* O SEGREDO: Forçamos a altura máxima independente do que o navegador calcular */
    height: 520px !important;
    max-height: 520px !important;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* BOTÕES LARANJA FITCLASS */
.custom-video-carousel .carousel-control-prev,
.custom-video-carousel .carousel-control-next {
    width: 45px;
    height: 45px;
    background-color: #ff6600 !important;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 10;
}

.custom-video-carousel .carousel-control-prev {
    left: 0px;
}

.custom-video-carousel .carousel-control-next {
    right: 0px;
}

/* AJUSTE MOBILE */
@media (max-width: 768px) {
    .custom-video-carousel {
        max-width: 100%;
        padding: 0 40px;
    }

    /* No mobile diminuímos um pouco a altura para não cortar em telas pequenas */
    .video-grid video {
        height: 450px !important;
        max-height: 450px !important;
    }
}





/* Trava a CAIXA do ícone */
.custom-icon-wrapper {
    width: 65px !important;
    height: 65px !important;
    margin: 0 auto 1.5rem auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    /* Impede que qualquer coisa saia da caixa */
}

/* Trava a IMAGEM dentro da caixa */
.feature-icon-custom {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}








<style>.faq-item.active .faq-answer {
    max-height: 2500px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    transition: max-height 0.8s ease-in-out !important;
}

.custom-icon-wrapper,
.feature-icon-custom {
    max-width: 60px !important;
    max-height: 60px !important;
}

.vdb-features .vdb-card {
    min-height: 230px;
}

/* Banner carousel */
#vdbCarouselBanner {
    width: 100%;
}

#vdbCarouselBanner .carousel-inner,
#vdbCarouselBanner .carousel-item,
#vdbCarouselBanner a,
#vdbCarouselBanner img {
    width: 100%;
}

#vdbCarouselBanner .carousel-control-prev,
#vdbCarouselBanner .carousel-control-next {
    width: 8%;
}

#vdbCarouselBanner .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

</style>