:root {
    --obsidian: #1A1A1A;
    --gold: #D4AF37;
    --graphite: #3F3F3F;
    --white: #FFFFFF;
    --text-muted: #d8d8d8;
    --surface: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.14);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: linear-gradient(135deg, var(--obsidian) 0%, #0f0f0f 100%);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.03);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(26, 26, 26, 0.9);
    border-bottom: 1px solid var(--border);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
    padding: 15px 0;
}

.brand,
.brand:hover {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 1.25rem;
    color: var(--text-muted);
}

.main-nav a:hover {
    color: var(--gold);
}

.hero {
    padding-top: 4rem;
}

.hero-grid,
.about-grid,
.form-grid,
.schedule-grid {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: 1fr;
    align-items: center;
}

/* Centraliza título e texto do hero e garante vídeo em largura total */
.hero-copy,
.hero-text-block {
    text-align: center;
}

/* Texto do hero alinhado à esquerda dentro do bloco de texto */
.hero-text-block .hero-text {
    max-width: 720px;
    margin: 0 auto;
    text-align:left;
}

.hero-title {
    width: 100%;
    margin: 0 auto 1rem;
}

.video-card {
    width: 100%;
}

.hero-video-card {
    width: min(80%, 860px);
    margin: 0 auto;
}

.hero-actions {
    justify-content: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    margin: 0 0 1rem;
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin: 0 0 1rem;
}

h3 {
    font-size: 1.15rem;
    margin: 0 0 0.8rem;
}

.hero-text,
.about-grid p,
.section-heading p,
.lead-form p,
.schedule-panel p {
    color: var(--text-muted);
}

.hero-text {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.05vw, 1.1rem);
    line-height: 1.9;
}

.section-heading h2 {
    max-width: 760px;
    margin: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1.3rem;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gold);
    color: var(--obsidian);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}

.btn-full {
    width: 100%;
}

.hero-highlights {
    display: grid;
    gap: 0.6rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
    color: var(--text-muted);
}

.hero-highlights li::before {
    content: '•';
    color: var(--gold);
    margin-right: 0.5rem;
}

.video-card,
.about-card,
.service-card,
.lead-form,
.slot-form,
.schedule-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 24px;
}

.video-card {
    padding: 1rem;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 320px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(63, 63, 63, 0.6));
}

.video-shell video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--obsidian);
}

.video-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.pill {
    display: inline-block;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.76);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.video-controls {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 0.85rem;
}

.icon-button {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
}

.about-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

/* Vídeo institucional na seção 'Sobre' que ocupa toda a largura do container */
.about-video {
    grid-column: 1 / -1;
    margin-top: 1.25rem;
}
.about-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.about-card,
.service-card,
.lead-form,
.slot-form,
.schedule-panel {
    padding: 1.5rem;
}

.check-list {
    padding-left: 1rem;
    color: var(--text-muted);
}

.check-list li + li {
    margin-top: 0.6rem;
}

.section-heading {
    margin-bottom: 2rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
}

.service-card h3 {
    font-size: 1.1rem;
}

.service-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

#cronograma .service-card:nth-child(odd) {
    background: #D4AF37;
    color: #1A1A1A;
}

#cronograma .service-card:nth-child(even) {
    background: #3F3F3F;
    color: #D4AF37;
}

#cronograma .service-card:nth-child(odd) p,
#cronograma .service-card:nth-child(odd) h3 {
    color: #1A1A1A;
}

#cronograma .service-card:nth-child(even) p,
#cronograma .service-card:nth-child(even) h3 {
    color: #D4AF37;
}

.section-heading h2 {
    margin-top: 0.35rem;
}

.section-heading .eyebrow {
    margin-bottom: 0.5rem;
}

/* Vídeos: layout em grid com 3 colunas */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
}
.videos-grid .video-card {
    min-width: 0;
}
.videos-grid .video-card video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

.message-container {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    z-index:100;
    top: 0;
    left: 0;
    right: 0;
    bottom:0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.messageText {
    color: var(--obsidian);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
    background:white;
}

/* Ajustes para dispositivos em orientação retrato */
@media (orientation: portrait) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
    .videos-grid .video-card video {
        height: 560px;
        aspect-ratio: 9/16;
    }
}

.service-card ul {
    padding-left: 1rem;
    margin: 0;
    color: var(--text-muted);
}

.service-card li + li {
    margin-top: 0.6rem;
}

.form-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.lead-form,
.slot-form {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group label {
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}
.form-group select option {
    color: #000;
}

.form-group input::placeholder {
    color: #c0c0c0;
}

.form-message {
    min-height: 1.4rem;
    margin: 0;
    color: var(--gold);
    font-weight: 600;
}

.schedule-grid {
    grid-template-columns: 0.95fr 1.05fr;
}

.slot-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.slot-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.slot-list .status {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.site-footer {
    padding: 2rem 0 2.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.pr_lancamento {
    color: white;
    text-decoration: line-through;
    text-decoration-color:red;
    text-decoration-style: wavy;
    text-align: right;
    font-size: 1.2rem;
    
}
.pr_promocional {
    color: white;
    background-color:green;
    padding: 12px 20px;
    border-bottom-left-radius:30px;
    border-bottom-right-radius:30px;  
    border-top-left-radius:30px; 
    font-size: 4.2rem;
    font-weight: bold;
    text-align: right;
    line-height: 1.1;
    letter-spacing: -1px;
    width: 100%;
}
.pr_promocional_txt {
    font-size: .9rem;
}
.pr_promocional .rs {
    font-size: 1.2rem;
    color:var(--obsidian);
}
.area_preco {
    display: flex;
    flex-direction: column;
    align-items:flex-end;
}

@media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .form-grid,
    .schedule-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .hero-text-block {
        text-align:left
    }
    .hero-video-card {
        width: 100%;
    }
    .video-shell {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 4rem 0;
    }

    .main-nav {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .nav-bar {
        min-height: 64px;
    }
}