:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #717171;
    --accent-color: #ffffff;
    --vsl-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    scroll-snap-type: y mandatory; /* Habilita o "Salto" entre seções */
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sectioning: One Part per Screen */
.full-screen {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    box-sizing: border-box;
    text-align: center;
    scroll-snap-align: start; /* Faz a seção "grudar" no topo ao rolar */
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Divisão sutil */
}

/* Delayed Saber Mais Button Style */
.delayed-button-container {
    display: none; /* Inicia oculto */
    margin-top: 50px;
    z-index: 100;
}

.saber-mais-btn {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.15rem;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #ffffff;
    cursor: pointer;
}

.saber-mais-btn:hover {
    transform: scale(1.05);
    background: transparent;
    color: #ffffff;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.4);
}

.video-wrapper {
    width: 100%;
    max-width: 480px; /* Width matching the reference better */
    position: relative;
    padding: 0 10px;
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--vsl-shadow);
    transition: transform 0.4s ease;
}

.placeholder-vsl {
    width: 100%;
    aspect-ratio: 9 / 16;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000; /* Pure black */
    position: relative;
}

.vsl-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.vsl-label {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02rem;
    color: #fff;
    text-transform: lowercase;
}

.play-button-vsl {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.play-button-vsl svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-left: 4px;
}

/* Branding Section */
.branding {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02rem;
    color: #fff;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Widget bottom left (Refined to be exact) */
.download-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #e1e9f1;
    color: #333;
    display: flex;
    align-items: center;
    padding: 3px 8px;
    font-family: Arial, sans-serif;
    font-size: 11px;
    border: 1px solid #ccc;
    border-top-right-radius: 2px;
    gap: 6px;
    z-index: 1000;
}

.download-btn {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 11px;
    color: #0066cc;
    padding: 0;
    text-decoration: none;
}

.download-btn:hover {
    text-decoration: underline;
}

.download-btn img {
    height: 14px;
    background: #4caf50;
    border-radius: 2px;
    padding: 2px;
}

.widget-info {
    color: #0066cc;
    cursor: help;
    font-size: 12px;
    background: white;
    border: 1px solid #ccc;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.widget-close {
    font-size: 12px;
    color: #333;
    cursor: pointer;
    line-height: 1;
    border: 1px solid #ccc;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: white;
}

/* Pitch Reveal Dynamics */
.hidden-content {
    display: none;
    opacity: 0;
    width: 100%;
}

.visible-content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    opacity: 1;
    width: 100%;
    animation: slideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    padding-bottom: 80px;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FAQ Section Styling */
.faq-section {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-bottom: 1px solid #1a1a1a;
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #aaa;
}

.faq-answer {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.active-answer {
    max-height: 300px;
    opacity: 1;
    padding: 10px 0 20px 0;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-link {
    color: #444;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

/* Logo Slider (Faixa de Logos) - Premium Version */
.logo-belt {
    width: 100vw;
    background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%) !important;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%) skewY(-1.5deg); /* Tilted Effect */
    margin: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.05), 0 5px 20px rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-track {
    display: flex;
    white-space: nowrap;
    animation: scrollLogos 25s linear infinite;
    gap: 50px;
    align-items: center;
}

.logo-track span {
    color: #000000;
    font-size: 1.15rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.belt-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Comparison Table Styles */
.comparison-section {
    width: 100%;
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.comparison-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    text-align: left;
}

.comparison-table th {
    padding: 20px;
    font-size: 0.9rem;
    color: #717171;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table td {
    padding: 22px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 500;
}

.highlight-col {
    color: #fff !important;
    font-weight: 800;
}

.old-price {
    color: #ff4d4d; /* Red for 'expensive' */
    text-decoration: line-through;
    opacity: 0.8;
}

.new-price {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.05rem;
}

.total-row {
    background: rgba(255, 255, 255, 0.05);
}

.total-row td {
    padding: 30px 20px;
    font-size: 1.2rem;
    font-weight: 900;
    border-bottom: none;
}

.total-old {
    color: #ff4d4d;
}

.total-new {
    color: #ffffff;
    font-size: 1.5rem !important;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.table-disclaimer {
    margin-top: 25px;
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* -------------------------------------------------------------------------
   OFFICIAL BRANDING SYSTEM - CONCURSOS CLOUD
   ------------------------------------------------------------------------- */
.header-logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    letter-spacing: -0.05rem;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    user-select: none;
}

.logo-light {
    font-weight: 300;
    color: #fff;
    margin-right: 4px;
    text-transform: uppercase;
}

.logo-bold {
    font-weight: 900;
    color: #ffcc00;
    font-style: italic;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffcc00, #ffaa00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Fixed Bottom Left Logo (For Maintenance, Auth, etc) */
.logo-fixed-bottom-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1001;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    scale: 0.8;
}

.logo-fixed-bottom-left:hover {
    opacity: 1;
}
