/* ===== RESET E VARIÁVEIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-gold: #C9A227;
    --color-dark: #14214D;
    --color-text: #4D577A;
    --color-light: #f5f5f5;
    --color-accent: #8B7355;
    --color-primary-light: #ACB4D3;
    --color-light-cinza: #E9E9E9;
}

html {
    scroll-behavior: smooth;
}

/* ===== BODY ===== */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: linear-gradient(135deg, #f5f5f5 0%, #faf9f7 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ===== ANIMAÇÕES ===== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4);
    }
    50% {
        transform: scale(1.05);
    }
    75% {
        box-shadow: 0 0 0 15px rgba(201, 162, 39, 0);
    }
}

/* ===== CONTAINER PRINCIPAL ===== */
.holding-container {
    max-width: 700px;
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

/* ===== HEADER ===== */
.header {
    margin-bottom: 40px;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0;
    letter-spacing: 1px;
}

.programa-subtitle {
    font-size: 16px;
    color: var(--color-accent);
    margin-top: 8px;
}

/* ===== ÍCONE ANIMADO ===== */
.icon-container {
    margin-bottom: 30px;
}

.icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-light-cinza), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    animation: pulse 2.5s ease-in-out infinite;
}

/* ===== LOGO / MARCA ===== */
.header__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    text-align: center;
    order: 0;
}

@media (min-width: 992px) {
    .header__logo {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        text-align: left;
        width: 200px;
    }
}

.header__logo-image {
    max-width: 60px;
    width: auto;
    height: 40px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .header__logo-image {
        max-width: 80px;
        height: 50px;
    }
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.content h1 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: var(--color-dark);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.content .subtitle {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--color-accent);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ===== VIDEO RESPONSIVO ===== */
.video-responsive-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* ===== STATUS BADGE ===== */
.status-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fff9e6, #fffbf0);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FEATURES ===== */
.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
    text-align: left;
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    background: linear-gradient(135deg, #f9f7f4, #fefdfb);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--color-gold);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 162, 39, 0.1);
}

.feature-item strong {
    display: block;
    color: var(--color-gold);
    margin-bottom: 8px;
    font-size: 14px;
}

.feature-item span {
    font-size: 14px;
    color: #666;
}

/* ===== TIMELINE ===== */
.timeline {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #faf9f7, #f5f5f5);
    border-radius: 12px;
}

.timeline h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 20px;
    text-align: left;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    text-align: left;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--color-gold);
    border-radius: 50%;
    margin-top: 4px;
    margin-right: 15px;
    flex-shrink: 0;
}

.timeline-content {
    font-size: 14px;
    color: #666;
}

.timeline-content strong {
    display: block;
    color: var(--color-text);
    margin-bottom: 3px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.cta-question {
    margin-bottom: 20px;
    color: #666;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.cta-button:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
}

.cta-button:active:not(:disabled) {
    transform: translateY(-1px);
}

.cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cta-text {
    margin-top: 15px;
    font-size: 14px;
    color: #999;
}

.cta-text a {
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-text a:hover {
    color: var(--color-accent);
}

/* ===== VIP ACCESS SECTION ===== */
.vip-access-section {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vip-button-container {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-dark), var(--color-text));
    color: #fff;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(20, 33, 77, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.vip-button-container:hover {
    background: linear-gradient(135deg, #4D577A, #14214D);
    box-shadow: 0 15px 40px rgba(20, 33, 77, 0.4);
    transform: translateY(-3px) scale(1.03);
}

.vip-button-container:active {
    transform: translateY(-1px);
}

/* ===== FOOTER ===== */

.footer-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #999;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-info a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: var(--color-accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .holding-container {
        padding: 40px 25px;
    }

    .content h1 {
        font-size: 32px;
    }

    .content p {
        font-size: 15px;
    }

    .logo {
        font-size: 24px;
    }

    .icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
}
