/* ===== VARIÁVEIS DE COR ===== */
:root {
    --primary-dark: #0a1628;
    --primary-blue: #1a3a52;
    --accent-blue: #2563eb;
    --accent-gold: #d4af37;
    --accent-silver: #e8e8e8;
    --accent-light-blue: #60a5fa;
    --text-light: #f0f4f8;
    --text-muted: #a0aec0;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --border-color: rgba(212, 175, 55, 0.2);
    --border-silver: rgba(232, 232, 232, 0.15);
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-gold: rgba(212, 175, 55, 0.1);
    --glass-silver: rgba(232, 232, 232, 0.08);
    --color-past: #8b5cf6;
    --color-present: #ec4899;
    --color-future: #06b6d4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PLAYER SECTION ===== */
.player-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-dark) 50%, var(--bg-darker) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.player-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.player-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px 80px;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
    animation: slideUp 0.8s ease-out;
}

.audio-waves {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 60px;
}

.wave {
    width: 6px;
    background: linear-gradient(180deg, var(--accent-light-blue), var(--accent-gold));
    border-radius: 3px;
    animation: wave 0.8s ease-in-out infinite;
}

.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 0.1s; }
.wave:nth-child(3) { animation-delay: 0.2s; }
.wave:nth-child(4) { animation-delay: 0.1s; }
.wave:nth-child(5) { animation-delay: 0s; }

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 60px; }
}

.player-info {
    text-align: center;
}

.now-playing {
    font-size: 0.9rem;
    color: var(--accent-light-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.program-name {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 500;
}

.radio-player {
    width: 100%;
    max-width: 500px;
    height: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(96, 165, 250, 0.1));
    border: 1px solid var(--border-color);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/communication-pattern.svg') center/cover no-repeat,
                linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 58, 82, 0.8) 50%, rgba(10, 22, 40, 0.85) 100%);
    background-attachment: fixed;
    z-index: 2;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: 0 0;
    }
    50% {
        background-position: 50px 50px;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
}

.hero-logo-container {
    margin-bottom: 30px;
    animation: scaleIn 0.8s ease-out;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #f0f4f8 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
}

.hero-headline {
    font-size: 1.8rem;
    color: var(--accent-light-blue);
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-darker);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
    background: transparent;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* ===== SEÇÕES GERAIS ===== */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BLOCO CONCEITO ===== */
.concept-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-dark) 50%, var(--bg-darker) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.concept-header {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.concept-content {
    max-width: 900px;
    margin: 0 auto;
}

.concept-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: center;
}

/* ===== BLOCO PILARES ===== */
.pillars-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.pillars-header {
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.pillar-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
}

.pillar-card.pillar-past {
    color: var(--color-past);
}

.pillar-card.pillar-present {
    color: var(--color-present);
}

.pillar-card.pillar-future {
    color: var(--color-future);
}

.pillar-card:hover {
    transform: translateY(-15px);
    border-color: currentColor;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, currentColor, rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.pillar-icon svg {
    width: 45px;
    height: 45px;
}

.pillar-label {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid currentColor;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pillar-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.pillar-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
}

.pillar-highlight {
    font-size: 0.95rem;
    color: currentColor;
    font-weight: 600;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* ===== BLOCO MISSÃO ===== */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-dark) 50%, var(--bg-darker) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.mission-text {
    animation: slideInLeft 0.8s ease-out;
}

.mission-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-text strong {
    color: var(--accent-gold);
}

.mission-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    animation: slideInRight 0.8s ease-out;
}

.benefit-item {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-darker);
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mission-conclusion {
    grid-column: 1 / -1;
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* ===== BLOCO IMPACTO ===== */
.impact-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.impact-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.impact-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.impact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-darker);
}

.impact-icon svg {
    width: 40px;
    height: 40px;
}

.impact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.impact-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.impact-conclusion {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* ===== BLOCO SUSTENTABILIDADE ===== */
.sustainability-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-dark) 50%, var(--bg-darker) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.partner-type {
    background: var(--glass-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-type:hover {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.partner-type h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-placeholder {
    padding: 40px 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.sustainability-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* ===== BLOCO FUTURO ===== */
.future-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.future-roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.roadmap-item {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.roadmap-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.roadmap-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.roadmap-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.roadmap-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.future-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* ===== BLOCO INSTITUCIONAL ===== */
.institutional-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--bg-darker) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.institutional-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.institutional-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f0f4f8 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.institutional-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== BLOCO FINAL ===== */
.closing-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

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

.closing-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.closing-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.closing-question {
    font-size: 1.4rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--bg-darker) 100%);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
}

.footer-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.footer-location {
    font-size: 0.85rem !important;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-headline {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .institutional-title {
        font-size: 2rem;
    }

    .closing-title {
        font-size: 1.8rem;
    }

    .closing-question {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-headline {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .pillars-grid,
    .impact-grid,
    .partners-showcase,
    .future-roadmap {
        grid-template-columns: 1fr;
    }

    .pillar-card,
    .impact-card,
    .benefit-item {
        padding: 30px 20px;
    }

    .roadmap-number {
        font-size: 2rem;
    }

    .institutional-title {
        font-size: 1.5rem;
    }

    .closing-title {
        font-size: 1.3rem;
    }

    .closing-question {
        font-size: 1rem;
    }
}

/* ===== PLAYER LOGO ===== */
.player-logo-container {
    margin-bottom: 20px;
}

.player-logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.2));
    transition: all 0.3s ease;
}

.player-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.3));
}

/* ===== PILLAR LOGO ===== */
.pillar-logo-container {
    margin-bottom: 20px;
}

.pillar-logo {
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}


/* ===== PLAYER INVITATION ===== */
.player-invitation {
    text-align: center;
    margin-bottom: 30px;
}

.invitation-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.invitation-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ===== PLAY RADIO BUTTON ===== */
.btn-play-radio {
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bg-darker);
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 20px;
}

.btn-play-radio:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-play-radio:active {
    transform: translateY(-1px);
}

.btn-play-radio.playing {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
}


/* ===== EFEITOS LUXUOSOS ===== */

/* Decorações de ouro e prata */
.section-title::before {
    content: '✦';
    display: block;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.section-title::after {
    content: '✦';
    display: block;
    color: var(--accent-silver);
    font-size: 1.5rem;
    margin-top: 15px;
    text-shadow: 0 0 15px rgba(232, 232, 232, 0.3);
}

/* Linhas decorativas de ouro */
.section-title {
    position: relative;
    padding: 30px 0;
}

.section-title::before,
.section-title::after {
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }
}

/* Cards com bordas de ouro e prata */
.pillar-card,
.mission-card,
.impact-card,
.roadmap-item {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
                linear-gradient(135deg, var(--accent-gold), var(--accent-silver)) border-box;
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.2),
        inset 0 0 20px rgba(212, 175, 55, 0.05);
    transition: all 0.4s ease;
}

.pillar-card:hover,
.mission-card:hover,
.impact-card:hover,
.roadmap-item:hover {
    border: 2px solid transparent;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
                linear-gradient(135deg, var(--accent-gold), var(--accent-silver)) border-box;
    box-shadow: 
        0 0 50px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(232, 232, 232, 0.2),
        inset 0 0 30px rgba(212, 175, 55, 0.1);
    transform: translateY(-10px);
}

/* Efeito de brilho nos botões */
.btn-primary,
.btn-secondary,
.btn-play-radio {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-play-radio::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.5s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-play-radio:hover::before {
    left: 100%;
}

/* Efeito de brilho no hero */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Linhas decorativas horizontais */
.concept-section::before,
.pillars-section::before,
.mission-section::before,
.impact-section::before,
.future-section::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent-silver), transparent);
    margin-bottom: 60px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Efeito de brilho nas imagens */
.player-logo,
.pillar-logo,
.footer-logo-img {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4)) 
            drop-shadow(0 0 40px rgba(212, 175, 55, 0.2));
    transition: filter 0.3s ease;
}

.player-logo:hover,
.pillar-logo:hover,
.footer-logo-img:hover {
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6)) 
            drop-shadow(0 0 60px rgba(212, 175, 55, 0.3))
            drop-shadow(0 0 20px rgba(232, 232, 232, 0.2));
}

/* Decorações de canto em ouro */
.hero-content::before,
.hero-content::after,
.closing-content::before,
.closing-content::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-gold);
}

.hero-content::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.3);
}

.hero-content::after {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.3);
}

.closing-content::before {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.3);
}

.closing-content::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Efeito de partículas de ouro */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

.pillar-icon,
.mission-card::before {
    animation: float 3s ease-in-out infinite;
}

/* Brilho animado nas bordas */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.pillar-card,
.mission-card,
.impact-card {
    background-size: 200% 100%;
    animation: shimmer 8s infinite;
}

/* Efeito de vidro luxuoso */
.player-wrapper {
    backdrop-filter: blur(20px);
    background: linear-gradient(135deg, var(--glass-gold), var(--glass-silver));
    border: 1px solid var(--border-color);
    border-right: 1px solid var(--border-silver);
    border-bottom: 1px solid var(--border-silver);
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

/* Texto com efeito de ouro */
.hero-headline,
.closing-question {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Efeito de sombra luxuosa */
.btn-primary,
.btn-secondary,
.btn-play-radio {
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-play-radio:hover {
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.3),
        0 0 20px rgba(232, 232, 232, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Divisores luxuosos */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent-silver), transparent);
    margin: 60px 0;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Efeito de transição suave em todos os elementos interativos */
button,
a,
.card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animação de entrada para seções */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: slideInUp 0.8s ease-out forwards;
}

section:nth-child(2) { animation-delay: 0.1s; }
section:nth-child(3) { animation-delay: 0.2s; }
section:nth-child(4) { animation-delay: 0.3s; }
section:nth-child(5) { animation-delay: 0.4s; }
section:nth-child(6) { animation-delay: 0.5s; }
section:nth-child(7) { animation-delay: 0.6s; }
section:nth-child(8) { animation-delay: 0.7s; }
section:nth-child(9) { animation-delay: 0.8s; }
section:nth-child(10) { animation-delay: 0.9s; }


/* ===== MODAL DE VÍDEO ===== */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: linear-gradient(135deg, var(--glass-bg), var(--glass-gold));
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    box-shadow: 
        0 0 50px rgba(212, 175, 55, 0.4),
        0 0 100px rgba(212, 175, 55, 0.2),
        inset 0 0 30px rgba(212, 175, 55, 0.1);
    padding: 20px;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.close-modal {
    position: absolute;
    right: 30px;
    top: 15px;
    font-size: 40px;
    font-weight: bold;
    color: var(--accent-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.close-modal:hover {
    color: var(--accent-silver);
    transform: rotate(90deg) scale(1.2);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        padding: 15px;
    }
    
    .modal-video {
        max-height: 50vh;
    }
    
    .close-modal {
        right: 15px;
        top: 10px;
        font-size: 30px;
    }
}

/* ===== AJUSTES ADICIONAIS - LOGO HERO E FORMULÁRIO ===== */

.hero-logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scaleIn 0.8s ease-out;
}

.hero-logo {
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 300px;
    }
}

/* SIGNUP SECTION STYLES */
.signup-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a2533 100%);
    color: white;
    border-top: 1px solid var(--border-color);
}

.signup-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.signup-form .form-group {
    margin-bottom: 20px;
}

.signup-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

.signup-form input, 
.signup-form select, 
.signup-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.signup-form input:focus, 
.signup-form select:focus, 
.signup-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.15);
}

.signup-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.signup-form textarea {
    height: 120px;
    resize: vertical;
}

.signup-form .form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.signup-form .form-checkbox input {
    width: auto;
}

.signup-form .form-checkbox label {
    margin-bottom: 0;
    color: var(--text-muted);
    font-weight: normal;
    letter-spacing: 0;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

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

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


/* ===== TV MAR SECTION ===== */
.tvmar-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-dark) 50%, var(--bg-darker) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.tvmar-player-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    animation: slideUp 0.8s ease-out;
}

.tvmar-player-container iframe {
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3), 0 0 100px rgba(212, 175, 55, 0.15);
    transition: box-shadow 0.3s ease;
}

.tvmar-player-container iframe:hover {
    box-shadow: 0 0 70px rgba(212, 175, 55, 0.5), 0 0 120px rgba(212, 175, 55, 0.25);
}

@media (max-width: 768px) {
    .tvmar-section {
        padding: 60px 0;
    }
    
    .tvmar-player-container iframe {
        height: 400px !important;
    }
}


/* ===== TV MAR LOGO TITLE ===== */
.tvmar-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    line-height: 1;
}

.tvmar-logo-title {
    max-width: 50px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
    animation: slideInLeft 0.6s ease-out;
    display: inline-block;
    vertical-align: middle;
}

.tvmar-title-container .section-title {
    margin: 0;
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (max-width: 768px) {
    .tvmar-title-container {
        gap: 10px;
    }
    
    .tvmar-logo-title {
        max-width: 40px;
    }
    
    .tvmar-title-container .section-title {
        font-size: 24px;
    }
}


/* ===== BOTÃO TV MAR ===== */
.tvmar-button-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.tvmar-button {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background-color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tvmar-button:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.tvmar-button:active {
    transform: translateY(0);
}

/* Modal para o player externo */
.tvmar-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.tvmar-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tvmar-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    max-height: 600px;
    background-color: #000;
    border-radius: 15px;
    overflow: hidden;
}

.tvmar-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.tvmar-modal-close:hover {
    color: #d4af37;
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .tvmar-button {
        padding: 10px 30px;
        font-size: 14px;
    }
    
    .tvmar-modal-content {
        width: 95%;
        height: 70vh;
    }
}
