:root {
    --primary-purple: #6b46c1;
    --secondary-purple: #8b5cf6;
    --accent-red: #dc2626;
    --light-purple: #ede9fe;
    --dark-purple: #4c1d95;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
}
 
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--white) 100%);
    min-height: 100vh;
}
 
/* ── CONTAINER ── */
.container {
    margin: 0 50px;
    padding: 0;
    max-width: none;
}
 
/* ── PAGE TITLE ── */
.page-title {
    text-align: center;
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--white) 100%);
}
 
.page-title h1 {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}
 
.page-title p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}
 
/* ── MAIN CONTENT ── */
.detalhes-container {
    padding: 4rem 0;
    background: var(--white);
}
 
/* ── IMAGE SECTION ── */
.video-section {
    background: var(--light-purple);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.1);
    margin-bottom: 3rem;
}
 
.video-section h3 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
 
.video-wrapper {
    position: relative;
    width: 70%;
    height: 0;
    padding-bottom: 39.375%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}
 
.video-wrapper img,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
}
 
.video-wrapper:hover img {
    transform: scale(1.05);
}
 
/* ── CONTENT WRAPPER ── */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
 
/* ── SECTION CARDS ── */
.section-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.1);
    overflow: hidden;
}
 
.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--light-purple);
    border-bottom: 1px solid var(--gray-200);
}
 
.section-icon {
    font-size: 1.5rem;
}
 
.section-header h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-purple);
}
 
.section-body {
    padding: 2rem;
    color: var(--gray-600);
    line-height: 1.7;
}
 
.section-body h4 {
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}
 
.section-body h4:first-child {
    margin-top: 0;
}
 
.section-body p {
    margin-bottom: 0.75rem;
}
 
.section-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
 
.section-body li {
    margin-bottom: 0.4rem;
}
 
/* ── HIGHLIGHT BOX ── */
.highlight-box {
    background: var(--light-purple);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}
 
.highlight-box h4 {
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    margin-top: 0 !important;
}
 
.highlight-box ul {
    margin-left: 1.5rem;
    margin-bottom: 0;
}
 
.highlight-box li {
    margin-bottom: 0.4rem;
}
 
/* ── TIMELINE ── */
.timeline {
    position: relative;
    padding-left: 32px;
}
 
.timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-purple), var(--secondary-purple));
    border-radius: 2px;
}
 
.day-block {
    position: relative;
    margin-bottom: 1.5rem;
}
 
.day-block:last-child {
    margin-bottom: 0;
}
 
.day-dot {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 20px;
    height: 20px;
    background: var(--primary-purple);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--primary-purple);
}
 
.day-block .highlight-box {
    margin: 0;
}
 
/* ── INCLUSO / NÃO INCLUSO GRID ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
 
.col-title {
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: block;
}
 
.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
 
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    padding: 0.6rem 0.9rem;
    background: var(--gray-100);
    border-radius: 8px;
    color: var(--gray-800);
    line-height: 1.5;
}
 
.icon-yes {
    color: #16a34a;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
 
.icon-no {
    color: var(--accent-red);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
 
.obs-note {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 0.75rem;
    display: block;
}
 
/* ── PRICE SECTION ── */
.price-highlight {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.2);
}
 
.price-highlight h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
 
.price-main {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
 
.price-installment {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}
 
.cta-reserva {
    display: inline-block;
    background: var(--accent-red);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}
 
.cta-reserva:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}
 
/* ── FOOTER ── */
.footer {
    background: var(--dark-purple);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}
 
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
 
.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--light-purple);
}
 
.footer-section p,
.footer-section a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: block;
    margin-bottom: 0.4rem;
    transition: color 0.2s;
}
 
.footer-section a:hover {
    color: var(--white);
}
 
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
 
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}
 
@media (max-width: 768px) {
    .container {
        margin: 0 20px;
    }
 
    .page-title h1 {
        font-size: 2rem;
    }
 
    .page-title p {
        font-size: 1rem;
        padding: 0 10px;
    }
 
    .video-wrapper {
        width: 100%;
        padding-bottom: 56.25%;
    }
 
    .video-wrapper img,
    .video-wrapper iframe {
        border-radius: 10px;
    }
 
    .section-header {
        padding: 1.2rem;
    }
 
    .section-header h2 {
        font-size: 1.15rem;
    }
 
    .section-body {
        padding: 1.2rem;
    }
 
    .price-main {
        font-size: 2.2rem;
    }
 
    .cta-reserva {
        padding: 14px 30px;
        font-size: 1.1rem;
    }
 
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
 
    .timeline {
        padding-left: 22px;
    }
 
    .timeline::before {
        left: 7px;
    }
 
    .day-dot {
        left: -22px;
        width: 16px;
        height: 16px;
    }
}
 
@media (max-width: 480px) {
    .video-section {
        padding: 1rem;
    }
 
    .price-highlight {
        padding: 2rem 1rem;
    }
 
    .price-main {
        font-size: 1.8rem;
    }
}