/* 
  FÓRMULA REVALIDA - LANDING PAGE
  Design Cinematográfico Premium
*/

/* ==================== VARIÁVEIS ==================== */
:root {
    /* Cores Cinematográficas */
    --primary-green: #00D9A3;
    --primary-blue: #00A8CC;
    --accent-cyan: #22D3EE;
    --dark-bg: #0A0E17;
    --darker-bg: #060810;
    --card-bg: rgba(20, 25, 35, 0.8);
    --card-hover: rgba(30, 35, 45, 0.9);
    --text-white: #FFFFFF;
    --text-light: #E8F0F7;
    --text-muted: #94A3B8;
    --border: rgba(0, 217, 163, 0.15);
    --border-hover: rgba(0, 217, 163, 0.4);
    --glow: rgba(0, 217, 163, 0.3);
    
    /* Espaçamentos */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Efeito de grão cinematográfico */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 217, 163, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 168, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ==================== CONTAINER PRINCIPAL ==================== */
.page-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* ==================== HERO SECTION CINEMATOGRÁFICO ==================== */
.hero-cinematic {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Mobile optimization */
@media (max-width: 767px) {
    .hero-cinematic {
        min-height: 100svh; /* Safe area viewport height for mobile */
        max-height: 100svh;
        align-items: flex-end;
    }
}

@media (min-width: 768px) {
    .hero-cinematic {
        min-height: 100vh;
    }
}

@media (min-width: 1024px) {
    .hero-cinematic {
        min-height: 100vh;
    }
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Mobile: garante que a imagem vertical cubra toda a área */
@media (max-width: 767px) {
    .hero-bg-image {
        object-fit: cover;
        object-position: center top;
    }
}

/* Desktop: imagem horizontal */
@media (min-width: 768px) {
    .hero-bg-image {
        object-fit: cover;
        object-position: center center;
    }
}

.hero-overlay {
    position: relative;
    width: 100%;
    background: linear-gradient(
        to top,
        rgba(6, 8, 16, 1) 0%,
        rgba(10, 14, 23, 0.98) 25%,
        rgba(10, 14, 23, 0.85) 50%,
        rgba(10, 14, 23, 0.4) 70%,
        transparent 100%
    );
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-xl);
    z-index: 2;
}

@media (max-width: 767px) {
    .hero-overlay {
        padding: 0 var(--spacing-md) var(--spacing-2xl);
        background: linear-gradient(
            to top,
            rgba(6, 8, 16, 1) 0%,
            rgba(6, 8, 16, 0.98) 15%,
            rgba(10, 14, 23, 0.90) 30%,
            rgba(10, 14, 23, 0.6) 50%,
            rgba(10, 14, 23, 0.2) 70%,
            transparent 100%
        );
        min-height: 40vh;
        display: flex;
        align-items: flex-end;
    }
}

@media (min-width: 768px) {
    .hero-overlay {
        padding: 60px var(--spacing-xl) 80px;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 767px) {
    .hero-content {
        padding-top: var(--spacing-md);
    }
}

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

/* Badge removido para não tampar o logo */

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.hero-subtitle strong {
    color: var(--primary-green);
    font-weight: 700;
}

@media (min-width: 480px) {
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
        line-height: 1.8;
        letter-spacing: 0.3px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hide-mobile {
        display: none;
    }
}

/* ==================== MAIN CONTAINER ==================== */
.main-container {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 var(--spacing-sm);
    position: relative;
}

@media (min-width: 480px) {
    .main-container {
        padding: 0 var(--spacing-md);
    }
}

@media (min-width: 768px) {
    .main-container {
        padding: 0 var(--spacing-lg);
        max-width: 720px;
    }
}

/* ==================== CTA BUTTONS ==================== */
.cta-container {
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.cta-top {
    margin-top: var(--spacing-md);
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .cta-container {
        margin-bottom: var(--spacing-xl);
    }
    
    .cta-top {
        margin-top: calc(var(--spacing-2xl) * -1);
    }
}

.cta-bottom {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--dark-bg);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 24px rgba(0, 217, 163, 0.4),
        0 0 40px rgba(0, 217, 163, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

@media (min-width: 480px) {
    .cta-button {
        padding: 20px 32px;
        font-size: 16px;
        border-radius: 15px;
    }
}

@media (min-width: 768px) {
    .cta-button {
        padding: 22px 40px;
        font-size: 17px;
        border-radius: 16px;
        gap: 12px;
    }
}

@media (min-width: 1024px) {
    .cta-button {
        padding: 24px 48px;
        font-size: 18px;
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(0, 217, 163, 0.5),
        0 0 80px rgba(0, 217, 163, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.01);
}

.cta-icon {
    font-size: 20px;
}

@media (min-width: 768px) {
    .cta-icon {
        font-size: 24px;
    }
}

.cta-text {
    line-height: 1.3;
}

.cta-note {
    margin-top: var(--spacing-sm);
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

@media (min-width: 768px) {
    .cta-note {
        font-size: 13px;
    }
}

/* ==================== CONTENT SECTION ==================== */
.content-section {
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
    .content-section {
        margin-bottom: var(--spacing-xl);
        margin-top: var(--spacing-xl);
    }
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.3px;
}

@media (min-width: 480px) {
    .section-title {
        font-size: 24px;
        margin-bottom: var(--spacing-lg);
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 30px;
    }
}

/* ==================== BENEFITS GRID ==================== */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

@media (min-width: 768px) {
    .benefits-grid {
        gap: var(--spacing-md);
    }
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: 16px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (min-width: 480px) {
    .benefit-card {
        padding: 20px;
        gap: var(--spacing-md);
        border-radius: 15px;
    }
}

@media (min-width: 768px) {
    .benefit-card {
        padding: 24px;
        border-radius: 16px;
    }
}

.benefit-card:hover {
    border-color: var(--border-hover);
    background: var(--card-hover);
    transform: translateX(4px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 40px var(--glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .benefit-card:hover {
        transform: translateX(8px) scale(1.02);
    }
}

.benefit-icon {
    min-width: 32px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    color: var(--dark-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 
        0 4px 16px rgba(0, 217, 163, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
    .benefit-icon {
        min-width: 36px;
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 18px;
    }
}

.benefit-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    padding-top: 4px;
}

@media (min-width: 480px) {
    .benefit-text {
        font-size: 15px;
        line-height: 1.7;
        padding-top: 6px;
    }
}

@media (min-width: 768px) {
    .benefit-text {
        font-size: 16px;
    }
}

/* ==================== INFO SECTION ==================== */
.info-section {
    margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
    .info-section {
        margin-bottom: var(--spacing-xl);
    }
}

.info-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--primary-green);
    border-radius: 16px;
    padding: var(--spacing-md);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 217, 163, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

@media (min-width: 480px) {
    .info-card {
        padding: var(--spacing-lg);
        border-radius: 18px;
    }
}

@media (min-width: 768px) {
    .info-card {
        border-radius: 20px;
    }
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 217, 163, 0.1), transparent 50%);
    pointer-events: none;
}

.info-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.2px;
}

@media (min-width: 480px) {
    .info-title {
        font-size: 19px;
        margin-bottom: var(--spacing-md);
        gap: 10px;
    }
}

@media (min-width: 768px) {
    .info-title {
        font-size: 22px;
        letter-spacing: -0.3px;
    }
}

.info-emoji {
    font-size: 20px;
}

@media (min-width: 768px) {
    .info-emoji {
        font-size: 24px;
    }
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .info-list {
        gap: var(--spacing-sm);
    }
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    padding: 6px 0;
    font-weight: 400;
}

@media (min-width: 480px) {
    .info-item {
        font-size: 15px;
        gap: 12px;
        padding: 8px 0;
    }
}

@media (min-width: 768px) {
    .info-item {
        font-size: 16px;
    }
}

.item-icon {
    font-size: 18px;
    min-width: 22px;
}

@media (min-width: 768px) {
    .item-icon {
        font-size: 20px;
        min-width: 24px;
    }
}

/* ==================== SCHEDULE SECTION ==================== */
.schedule-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
    .schedule-section {
        gap: var(--spacing-md);
    }
}

.schedule-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

@media (min-width: 480px) {
    .schedule-item {
        padding: 20px 24px;
        border-radius: 15px;
    }
}

@media (min-width: 768px) {
    .schedule-item {
        padding: 24px 28px;
        border-radius: 16px;
    }
}

.schedule-item:hover {
    border-color: var(--border-hover);
    box-shadow: 
        0 6px 28px rgba(0, 0, 0, 0.4),
        0 0 30px var(--glow);
}

.schedule-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    .schedule-content {
        gap: 6px;
    }
}

.schedule-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

@media (min-width: 480px) {
    .schedule-label {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .schedule-label {
        font-size: 13px;
    }
}

.schedule-value {
    font-size: 16px;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 0.2px;
}

@media (min-width: 480px) {
    .schedule-value {
        font-size: 17px;
        letter-spacing: 0.3px;
    }
}

@media (min-width: 768px) {
    .schedule-value {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .schedule-value {
        font-size: 20px;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-sm) var(--spacing-lg);
    border-top: 1px solid var(--border);
    margin-top: var(--spacing-xl);
    background: rgba(6, 8, 16, 0.5);
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .footer {
        padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-xl);
        margin-top: var(--spacing-2xl);
    }
}

.footer-text {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .footer-text {
        font-size: 15px;
        margin-bottom: 6px;
    }
}

.footer-subtext {
    font-size: 12px;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .footer-subtext {
        font-size: 13px;
    }
}

/* ==================== ANIMAÇÕES RESPONSIVAS ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== EFEITOS CINEMATOGRÁFICOS EXTRAS ==================== */

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Seleção de texto personalizada */
::selection {
    background: var(--primary-green);
    color: var(--dark-bg);
}

::-moz-selection {
    background: var(--primary-green);
    color: var(--dark-bg);
}
