/*
 * CAFÉ COM AXÉ - Site Oficial
 * Design Premium · Full-Screen · TV Barigui
 * Versão 3.0.0
 */

/* ═══════════════════════════════════════════════════════════════════════════
   CSS RESET & VARIABLES
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Paleta Principal - Tons de Café */
    --cca-espresso: #1a0f0a;
    --cca-coffee: #2d1810;
    --cca-mocha: #4a2c20;
    --cca-caramel: #8b5a2b;
    --cca-gold: #d4a54a;
    --cca-cream: #f5e6d3;
    --cca-orange: #e67e22;
    --cca-flame: #d35400;
    
    /* Tons Neutros */
    --cca-black: #0d0906;
    --cca-white: #fefcfa;
    --cca-gray: #a89585;
    
    /* Gradientes */
    --gradient-hero: linear-gradient(135deg, var(--cca-espresso) 0%, var(--cca-coffee) 50%, var(--cca-mocha) 100%);
    --gradient-gold: linear-gradient(135deg, var(--cca-caramel) 0%, var(--cca-gold) 50%, var(--cca-orange) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(212,165,74,0.15) 0%, transparent 70%);
    
    /* Tipografia */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Sombras */
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 40px rgba(212,165,74,0.2);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
    
    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Espaçamento */
    --section-padding: clamp(100px, 15vw, 180px);
    --container-max: 1800px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   AGGRESSIVE WORDPRESS THEME RESET
   ═══════════════════════════════════════════════════════════════════════════ */

/* Force full-screen on HTML and Body */
html,
html.cca-fullscreen,
body,
body.cca-fullscreen {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    background: #0d0906 !important;
}

/* Hide ALL WordPress theme elements */
body.cca-fullscreen .site-header,
body.cca-fullscreen .site-footer,
body.cca-fullscreen #masthead,
body.cca-fullscreen #colophon,
body.cca-fullscreen .wp-site-blocks > header,
body.cca-fullscreen .wp-site-blocks > footer,
body.cca-fullscreen header.wp-block-template-part,
body.cca-fullscreen footer.wp-block-template-part,
body.cca-fullscreen .ast-header-break-point,
body.cca-fullscreen #ast-desktop-header,
body.cca-fullscreen #ast-mobile-header,
body.cca-fullscreen .site-header-primary-section-left,
body.cca-fullscreen .site-header-primary-section-right,
body.cca-fullscreen .main-header-bar,
body.cca-fullscreen .ast-primary-header-bar,
body.cca-fullscreen .hfeed .ast-container,
body.cca-fullscreen .ast-footer-overlay,
body.cca-fullscreen .site-footer,
body.cca-fullscreen .ast-small-footer,
body.cca-fullscreen .ast-footer-copyright,
body.cca-fullscreen nav.navigation,
body.cca-fullscreen .nav-links,
body.cca-fullscreen .page-header,
body.cca-fullscreen .entry-header,
body.cca-fullscreen .entry-title,
body.cca-fullscreen .entry-meta,
body.cca-fullscreen .post-navigation,
body.cca-fullscreen .comments-area,
body.cca-fullscreen #secondary,
body.cca-fullscreen .sidebar,
body.cca-fullscreen .widget-area,
.cca-fullscreen header:not(.cca-header),
.cca-fullscreen footer:not(.cca-footer) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Force content areas to be full width */
body.cca-fullscreen .site,
body.cca-fullscreen .site-content,
body.cca-fullscreen .content-area,
body.cca-fullscreen .entry-content,
body.cca-fullscreen .wp-site-blocks,
body.cca-fullscreen .wp-block-post-content,
body.cca-fullscreen main,
body.cca-fullscreen main.site-main,
body.cca-fullscreen article,
body.cca-fullscreen .ast-container,
body.cca-fullscreen .ast-separate-container,
body.cca-fullscreen #primary,
body.cca-fullscreen #content,
body.cca-fullscreen .hentry,
body.cca-fullscreen .page,
body.cca-fullscreen .type-page {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove WordPress page title */
body.cca-fullscreen .page .entry-title,
body.cca-fullscreen .page-title,
body.cca-fullscreen h1.entry-title,
body.cca-fullscreen .ast-archive-description,
body.cca-fullscreen .page-header h1 {
    display: none !important;
}

/* Astra theme specific resets */
body.cca-fullscreen.ast-page-builder-template .site-content > .ast-container,
body.cca-fullscreen .ast-page-builder-template .site-content > .ast-container,
body.cca-fullscreen.ast-plain-container .site-content > .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
}

/* Reset Global for our site */
.cca-site,
.cca-site *,
.cca-site *::before,
.cca-site *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BASE SITE WRAPPER
   ═══════════════════════════════════════════════════════════════════════════ */

.cca-site {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--cca-cream);
    background: var(--cca-black);
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cca-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(30px, 6vw, 80px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.cca-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: transparent;
    transition: var(--transition-smooth);
}

.cca-header.scrolled {
    background: rgba(13,9,6,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.cca-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cca-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.cca-brand-logo {
    height: 65px;
    width: auto;
    transition: var(--transition-fast);
}

.cca-brand:hover .cca-brand-logo {
    transform: scale(1.05);
}

.cca-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.cca-nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cca-cream);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.cca-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

.cca-nav-link:hover {
    color: var(--cca-gold);
}

.cca-nav-link:hover::after {
    width: 100%;
}

/* CTA Button */
.cca-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cca-espresso);
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow);
}

.cca-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212,165,74,0.4);
}

/* Header Right with TV Logo */
.cca-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cca-header-tv {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .cca-header-tv {
        display: none;
    }
}

/* Mobile Menu Button */
.cca-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(212,165,74,0.3);
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    transition: var(--transition-fast);
}

.cca-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cca-gold);
    transition: var(--transition-fast);
}

.cca-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.cca-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.cca-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.cca-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13,9,6,0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.cca-mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.cca-mobile-nav .cca-nav-link {
    font-size: 24px;
    letter-spacing: 2px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.cca-mobile-nav.active .cca-nav-link {
    transform: translateY(0);
    opacity: 1;
}

.cca-mobile-nav.active .cca-nav-link:nth-child(1) { transition-delay: 0.1s; }
.cca-mobile-nav.active .cca-nav-link:nth-child(2) { transition-delay: 0.15s; }
.cca-mobile-nav.active .cca-nav-link:nth-child(3) { transition-delay: 0.2s; }
.cca-mobile-nav.active .cca-nav-link:nth-child(4) { transition-delay: 0.25s; }
.cca-mobile-nav.active .cca-nav-link:nth-child(5) { transition-delay: 0.3s; }
.cca-mobile-nav.active .cca-nav-link:nth-child(6) { transition-delay: 0.35s; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.cca-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--cca-black);
}

.cca-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13,9,6,0.4) 0%,
        rgba(13,9,6,0.6) 50%,
        rgba(13,9,6,0.95) 100%
    );
    z-index: 2;
}

.cca-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(212,165,74,0.4), transparent),
        radial-gradient(2px 2px at 30% 60%, rgba(212,165,74,0.3), transparent),
        radial-gradient(2px 2px at 50% 30%, rgba(212,165,74,0.5), transparent),
        radial-gradient(2px 2px at 70% 70%, rgba(212,165,74,0.3), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(212,165,74,0.4), transparent);
    animation: particleFloat 20s linear infinite;
    z-index: 3;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.cca-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 140px 50px 100px;
    max-width: 1300px;
    width: 100%;
}

.cca-hero-logo {
    max-width: 750px;
    width: 80%;
    height: auto;
    margin-bottom: 50px;
    animation: logoReveal 1.2s ease-out forwards;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.5));
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cca-hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    font-style: italic;
    color: var(--cca-cream);
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.cca-hero-channel {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,165,74,0.2);
    border-radius: 50px;
    padding: 15px 35px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.6s forwards;
}

.cca-hero-channel img {
    height: 40px;
    width: auto;
}

.cca-hero-channel span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cca-gold);
}

.cca-hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.8s forwards;
}

.cca-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cca-espresso);
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(212,165,74,0.3);
}

.cca-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(212,165,74,0.5);
}

.cca-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cca-gold);
    background: transparent;
    border: 2px solid var(--cca-gold);
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cca-btn-secondary:hover {
    background: var(--cca-gold);
    color: var(--cca-espresso);
    transform: translateY(-4px);
}

/* Scroll Indicator */
.cca-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 1.2s forwards;
}

.cca-scroll-indicator span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cca-gray);
}

.cca-scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--cca-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

.cca-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.cca-section-dark {
    background: var(--cca-black);
}

.cca-section-coffee {
    background: var(--gradient-hero);
}

.cca-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cca-section-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cca-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cca-section-subtitle::before,
.cca-section-subtitle::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--cca-gold);
}

.cca-section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
    color: var(--cca-cream);
    line-height: 1.2;
}

.cca-section-title em {
    font-style: italic;
    color: var(--cca-gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.cca-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 120px;
    align-items: center;
}

.cca-about-image {
    position: relative;
}

.cca-about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.cca-about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--cca-gold);
    border-radius: 20px;
    opacity: 0.3;
    z-index: -1;
}

.cca-about-content {
    padding: 30px 0;
}

.cca-about-text {
    font-size: 19px;
    line-height: 1.9;
    color: var(--cca-cream);
    margin-bottom: 30px;
}

.cca-about-text:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 4em;
    float: left;
    line-height: 0.8;
    margin-right: 15px;
    color: var(--cca-gold);
}

.cca-about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(212,165,74,0.2);
}

.cca-stat {
    text-align: center;
}

.cca-stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    color: var(--cca-gold);
    line-height: 1;
}

.cca-stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cca-gray);
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   QUADROS / SEGMENTS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.cca-quadros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.cca-quadro-card {
    position: relative;
    background: linear-gradient(145deg, rgba(45,24,16,0.8), rgba(26,15,10,0.9));
    border: 1px solid rgba(212,165,74,0.15);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.cca-quadro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.cca-quadro-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(212,165,74,0.4);
}

.cca-quadro-card:hover::before {
    transform: scaleX(1);
}

.cca-quadro-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,165,74,0.15), transparent);
    border-radius: 50%;
    font-size: 32px;
}

.cca-quadro-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--cca-cream);
    margin-bottom: 12px;
}

.cca-quadro-presenter {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cca-orange);
    margin-bottom: 20px;
    font-weight: 500;
}

.cca-quadro-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--cca-gray);
}

/* PROPOSTA SECTION */
.cca-proposta-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.cca-proposta-content p {
    font-size: 21px;
    line-height: 2;
    color: var(--cca-cream);
    margin-bottom: 35px;
}

/* ABOUT SOCIAL BUTTONS */
.cca-about-social {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cca-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(212,165,74,0.1);
    border: 1px solid rgba(212,165,74,0.3);
    border-radius: 50px;
    color: var(--cca-gold);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cca-social-btn:hover {
    background: var(--cca-gold);
    color: var(--cca-espresso);
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRESENTER SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.cca-presenter-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 120px;
    align-items: center;
}

.cca-presenter-image {
    position: relative;
}

.cca-presenter-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

.cca-presenter-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--cca-espresso);
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    box-shadow: var(--shadow-soft);
}

.cca-presenter-content h3 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--cca-cream);
    margin-bottom: 15px;
}

.cca-presenter-content h3 span {
    color: var(--cca-gold);
}

.cca-presenter-role {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cca-orange);
    margin-bottom: 35px;
}

.cca-presenter-bio {
    font-size: 18px;
    line-height: 1.9;
    color: var(--cca-cream);
    margin-bottom: 35px;
}

.cca-presenter-social {
    display: flex;
    gap: 20px;
}

.cca-social-link {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,165,74,0.1);
    border: 1px solid rgba(212,165,74,0.3);
    border-radius: 50%;
    color: var(--cca-gold);
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.cca-social-link:hover {
    background: var(--cca-gold);
    color: var(--cca-espresso);
    transform: translateY(-5px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCHEDULE SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.cca-schedule-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cca-schedule-card {
    background: linear-gradient(145deg, rgba(45,24,16,0.9), rgba(26,15,10,0.95));
    border: 1px solid rgba(212,165,74,0.2);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cca-schedule-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,165,74,0.05) 0%, transparent 50%);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cca-schedule-channel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cca-schedule-channel img {
    height: 60px;
    width: auto;
}

.cca-schedule-time {
    font-family: var(--font-display);
    font-size: clamp(56px, 10vw, 100px);
    color: var(--cca-gold);
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cca-schedule-day {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--cca-cream);
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.cca-schedule-info {
    font-size: 16px;
    color: var(--cca-gray);
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.cca-video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.cca-video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--cca-coffee);
}

.cca-video-container video {
    width: 100%;
    display: block;
}

.cca-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,9,6,0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.cca-video-overlay:hover {
    background: rgba(13,9,6,0.3);
}

.cca-video-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cca-play-btn {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(212,165,74,0.4);
    transition: var(--transition-smooth);
}

.cca-play-btn svg {
    width: 30px;
    height: 30px;
    fill: var(--cca-espresso);
    margin-left: 5px;
}

.cca-video-overlay:hover .cca-play-btn {
    transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.cca-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.cca-contact-info h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--cca-cream);
    margin-bottom: 25px;
}

.cca-contact-info p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--cca-gray);
    margin-bottom: 35px;
}

.cca-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cca-contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(45,24,16,0.5);
    border: 1px solid rgba(212,165,74,0.15);
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.cca-contact-method:hover {
    border-color: var(--cca-gold);
    transform: translateX(10px);
}

.cca-contact-method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 12px;
    font-size: 22px;
}

.cca-contact-method-text {
    flex: 1;
}

.cca-contact-method-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cca-gray);
    margin-bottom: 5px;
}

.cca-contact-method-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--cca-cream);
}

.cca-contact-form {
    background: linear-gradient(145deg, rgba(45,24,16,0.8), rgba(26,15,10,0.9));
    border: 1px solid rgba(212,165,74,0.15);
    border-radius: 24px;
    padding: 50px;
}

.cca-form-group {
    margin-bottom: 25px;
}

.cca-form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cca-gray);
    margin-bottom: 10px;
}

.cca-form-input,
.cca-form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--cca-cream);
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(212,165,74,0.2);
    border-radius: 12px;
    outline: none;
    transition: var(--transition-fast);
}

.cca-form-input:focus,
.cca-form-textarea:focus {
    border-color: var(--cca-gold);
    box-shadow: 0 0 0 3px rgba(212,165,74,0.1);
}

.cca-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.cca-form-input::placeholder,
.cca-form-textarea::placeholder {
    color: var(--cca-gray);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.cca-footer {
    background: var(--cca-espresso);
    border-top: 1px solid rgba(212,165,74,0.1);
    padding: 60px 0 30px;
}

.cca-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(212,165,74,0.1);
    margin-bottom: 30px;
}

.cca-footer-brand img {
    height: 60px;
    width: auto;
}

.cca-footer-social {
    display: flex;
    gap: 15px;
}

.cca-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cca-footer-copy {
    font-size: 14px;
    color: var(--cca-gray);
}

.cca-footer-links {
    display: flex;
    gap: 30px;
}

.cca-footer-link {
    font-size: 13px;
    color: var(--cca-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.cca-footer-link:hover {
    color: var(--cca-gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.cca-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cca-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.cca-animate-delay-1 { transition-delay: 0.1s; }
.cca-animate-delay-2 { transition-delay: 0.2s; }
.cca-animate-delay-3 { transition-delay: 0.3s; }
.cca-animate-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .cca-about-grid,
    .cca-presenter-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .cca-presenter-grid {
        text-align: center;
    }
    
    .cca-presenter-image img {
        margin: 0 auto;
    }
    
    .cca-presenter-social {
        justify-content: center;
    }
    
    .cca-quadros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .cca-contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .cca-nav {
        display: none;
    }
    
    .cca-menu-toggle {
        display: flex;
    }
    
    .cca-hero-logo {
        max-width: 350px;
    }
    
    .cca-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cca-btn-primary,
    .cca-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cca-quadros-grid {
        grid-template-columns: 1fr;
    }
    
    .cca-about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cca-schedule-card {
        padding: 35px 25px;
    }
    
    .cca-footer-top,
    .cca-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }
    
    .cca-hero-logo {
        max-width: 280px;
    }
    
    .cca-section-title {
        font-size: 28px;
    }
    
    .cca-contact-form {
        padding: 25px 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
