:root {
    --bg-color: #0a0a0a;
    --card-bg: #151515;
    --accent-color: #ff8c32; /* Laranja TFBOX */
    --text-color: #ffffff;
    --text-muted: #ffffff; /* Alterado de cinza para branco para melhor contraste */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --section-padding: 120px;
    --container-gap: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body.booking-mode {
    overflow: hidden;
}

span { color: var(--accent-color); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- LANDING PAGE STYLES --- */

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; width: auto; }
.desktop-nav { display: flex; align-items: center; gap: 40px; }
.desktop-nav a { color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; transition: color 0.3s; }
.desktop-nav a:hover { color: var(--accent-color); }
.nav-cta { background: var(--accent-color); color: #000; border: none; padding: 12px 24px; border-radius: 50px; font-weight: 800; cursor: pointer; transition: transform 0.3s; font-size: 0.8rem; }
.nav-cta:hover { transform: scale(1.05); }

.hero-new {
    height: 95vh;
    min-height: 700px;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 70px;
}

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4), var(--bg-color)); }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.badge { background: rgba(255, 140, 50, 0.15); color: var(--accent-color); padding: 8px 18px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; letter-spacing: 3px; margin-bottom: 15px; display: inline-block; border: 1px solid rgba(255, 140, 50, 0.3); }

.hero-content h1 { font-size: clamp(2.8rem, 9vw, 5rem); font-weight: 900; line-height: 1.05; margin-bottom: 25px; text-transform: uppercase; letter-spacing: -1px; }
.hero-content p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 35px; max-width: 650px; margin-left: auto; margin-right: auto; line-height: 1.5; }

.hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Espaço entre o botão principal e a linha de baixo */
}

.btn-group-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* OBJECTION CARDS */
.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.objection-card {
    background: var(--card-bg);
    padding: 45px 35px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.objection-card:hover { transform: translateY(-10px); border-color: rgba(255, 140, 50, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.obj-icon { font-size: 2.5rem; margin-bottom: 20px; }
.objection-card h3 { font-size: 1.2rem; margin-bottom: 15px; color: #fff; line-height: 1.3; }
.objection-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* CONTENT SECTIONS */
.content-section { padding: var(--section-padding) 0; }
.alternate-bg { background-color: #0f0f0f; }
.section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--container-gap); align-items: center; }
.section-grid.reverse { direction: rtl; }
.section-grid.reverse .section-text { direction: ltr; }
.section-title { font-size: 3rem; font-weight: 900; margin-bottom: 30px; line-height: 1.1; text-transform: uppercase; }
.text-center { text-align: center; }
.section-text p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; }

.check-list { list-style: none; }
.check-list li { margin-bottom: 20px; display: flex; align-items: center; gap: 15px; font-weight: 700; font-size: 1.05rem; }
.check-list li::before { content: '✓'; color: var(--accent-color); font-weight: 900; font-size: 1.2rem; }

.reveal-img { width: 100%; border-radius: 24px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6); }

/* COMPOSIÇÃO DE 4 FOTOS */
.image-grid-composition {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.grid-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s;
    border: 1px solid var(--glass-border);
}

.grid-img:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    z-index: 2;
}

/* Deixar a primeira foto maior ou com destaque (opcional) */
.grid-img:nth-child(1) {
    border-top-left-radius: 30px;
}
.grid-img:nth-child(4) {
    border-bottom-right-radius: 30px;
}

/* COMPOSIÇÃO DE 2 FOTOS (MAIORES E HORIZONTAIS) */
.image-grid-2 {
    display: flex;
    gap: 15px;
}

.grid-img-large {
    width: 50%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.grid-img-large:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

/* TESTIMONIAL */
.testimonial-simple { border-left: 4px solid var(--accent-color); padding: 10px 0 10px 30px; margin-top: 50px; }
.testimonial-simple p { font-style: italic; font-size: 1.3rem; color: #fff !important; margin-bottom: 15px !important; line-height: 1.4; }
.testimonial-simple span { font-size: 1rem; font-weight: 800; color: var(--accent-color); text-transform: uppercase; letter-spacing: 1px; }

/* --- BOOKING APP STYLES --- */

#booking-app {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.app-progress { height: 5px; background: rgba(255, 255, 255, 0.05); width: 100%; }
.app-progress-bar { height: 100%; width: 25%; background: var(--accent-color); transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 15px var(--accent-color); }

.app-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 25px;
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
    overflow-y: auto;
}

.app-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 50px; }
.app-exit-btn { background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); color: #fff; padding: 10px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: 0.3s; }
.app-exit-btn:hover { background: rgba(255,255,255,0.1); }
.app-logo-small img { height: 40px; }

.app-step-indicator {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.app-step-indicator span {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
}

.app-quick-info {
    text-align: center;
    margin-bottom: 25px;
}

.app-quick-info span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #4ade80;
}

.app-container h2 { font-size: 2.2rem; font-weight: 900; text-align: center; margin-bottom: 15px; text-transform: uppercase; letter-spacing: -1px; }
.subtitle { text-align: center; color: var(--text-muted); margin-bottom: 50px; font-size: 1rem; }

.app-back-btn { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); color: #fff; padding: 10px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; margin-bottom: 30px; cursor: pointer; align-self: flex-start; transition: 0.3s; }
.app-back-btn:hover { background: rgba(255,255,255,0.1); }

/* APP GRIDS */
.goals-grid-app { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.goal-card { 
    background: var(--card-bg); 
    padding: 35px 20px; 
    border-radius: 24px; 
    text-align: center; 
    border: 1px solid var(--glass-border); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    cursor: pointer; 
    position: relative;
    overflow: hidden;
}

.goal-card:hover { 
    border-color: rgba(255, 140, 50, 0.5); 
    transform: translateY(-5px); 
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.goal-card.active { 
    border-color: var(--accent-color); 
    background: rgba(255, 140, 50, 0.15); 
    transform: scale(1.03); 
    box-shadow: 0 0 20px rgba(255, 140, 50, 0.2);
}

.goal-card.active h3 { color: var(--accent-color); }

.goal-card .icon { font-size: 3rem; margin-bottom: 20px; display: block; transition: transform 0.3s; }
.goal-card:hover .icon { transform: scale(1.1); }
.goal-card h3 { font-size: 1.1rem; font-weight: 800; transition: color 0.3s; margin-bottom: 20px; }

.goal-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 8px 0;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.goal-card:hover .goal-btn {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.goal-card.active .goal-btn {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 140, 50, 0.4);
}

/* DATE/TIME SELECTORS */
.date-selector { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr)); 
    gap: 12px; 
    padding-bottom: 30px; 
}
.date-card { 
    background: var(--card-bg); 
    padding: 18px 10px; 
    border-radius: 16px; 
    text-align: center; 
    border: 1px solid var(--glass-border); 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px; /* Aumentado para caber o mês */
}
.date-card.active { 
    background: var(--accent-color); 
    transform: scale(1.03); 
    box-shadow: 0 10px 20px rgba(255, 140, 50, 0.2); 
}
.date-card.active span,
.date-card.active strong,
.date-card.active .month-label { 
    color: #000 !important; 
}
.date-card span { display: block; font-size: 0.65rem; text-transform: uppercase; font-weight: 800; margin-bottom: 2px; opacity: 0.8; }
.date-card strong { font-size: 1.5rem; display: block; font-weight: 900; line-height: 1; }
.month-label { 
    font-size: 0.65rem; 
    text-transform: uppercase; 
    font-weight: 900; 
    margin-top: 5px; 
    opacity: 0.9; 
    background: rgba(255,255,255,0.1); 
    padding: 2px 0; 
    border-radius: 4px;
}
.date-card.active .month-label { background: rgba(0,0,0,0.1); }

.time-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); 
    gap: 12px; 
}
.time-card { background: var(--card-bg); padding: 20px; border-radius: 16px; text-align: center; border: 2px solid transparent; cursor: pointer; transition: 0.3s; }
.time-card.active { background: var(--accent-color); color: #000; transform: scale(1.05); }
.time-card.active h4,
.time-card.active span { color: #000 !important; }
.time-card h4 { font-size: 1.3rem; font-weight: 900; margin-bottom: 5px; }
.time-card span { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

/* FORMS */
.form-container-app { max-width: 100%; }
.input-group { margin-bottom: 25px; }
.input-group label { display: block; margin-bottom: 10px; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.input-group input { width: 100%; background: var(--card-bg); border: 1px solid var(--glass-border); padding: 18px; border-radius: 16px; color: #fff; font-size: 1.1rem; font-family: inherit; transition: 0.3s; }
.input-group input:focus { border-color: var(--accent-color); background: rgba(255,255,255,0.08); }

/* BUTTONS */
.btn-primary { background: var(--accent-color); color: #000; padding: 22px 45px; border-radius: 60px; font-weight: 900; border: none; cursor: pointer; text-transform: uppercase; transition: all 0.4s; letter-spacing: 2px; font-size: 1rem; box-shadow: 0 10px 30px rgba(255, 140, 50, 0.2); }
.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(255, 140, 50, 0.4); }

.btn-secondary { background: rgba(255, 255, 255, 0.05); color: #fff; padding: 14px 30px; border-radius: 60px; font-weight: 800; text-decoration: none; border: 1px solid var(--glass-border); transition: 0.3s; font-size: 0.9rem; }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* SUCCESS MESSAGE */
.success-msg { text-align: center; padding: 60px 0; }
.success-icon { font-size: 5rem; margin-bottom: 30px; }
.success-msg h3 { font-size: 2.5rem; margin-bottom: 20px; font-weight: 900; }
.success-msg p { font-size: 1.2rem; color: var(--text-muted); max-width: 450px; margin: 0 auto 40px; line-height: 1.6; }

/* LOCATION SECTION */
.location-container { display: grid; grid-template-columns: 1fr 380px; gap: 40px; margin-top: 60px; }
.location-details { background: var(--card-bg); padding: 45px; border-radius: 24px; display: flex; flex-direction: column; justify-content: center; gap: 25px; border: 1px solid var(--glass-border); }
.location-details p { font-size: 1.1rem; line-height: 1.5; }
.location-details strong { color: var(--accent-color); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 5px; }

/* FOOTER */
footer { padding: 80px 0; border-top: 1px solid var(--glass-border); text-align: center; background-color: #050505; }
.footer-logo img { height: 65px; margin-bottom: 30px; }
footer p { color: var(--text-muted); font-size: 0.9rem; letter-spacing: 1px; }

/* FLOATING CTA */
.floating-cta-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta-container.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta-container .btn-primary {
    width: 100%;
    max-width: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 140, 50, 0.3);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 1024px) {
    .section-grid { gap: 40px; }
    .location-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-padding: 80px; --container-gap: 50px; }
    .desktop-nav { display: none; }
    .section-grid { grid-template-columns: 1fr; }
    .section-grid.reverse { direction: ltr; }
    .hero-content h1 { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .app-container { padding: 30px 20px; }
    .app-container h2 { font-size: 1.8rem; }
    .goals-grid-app { grid-template-columns: 1fr; }
    .location-details { padding: 35px; }
}