/*
Theme Name: Apollo FIDC
Description: Tema profissional para fundos de investimento com sistema completo de membros, oportunidades e documentos. Design luxuoso com efeitos visuais premium.
Version: 1.0.0
Author: Manus AI
Text Domain: apollo-fidc
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --apollo-primary: #d4af37;
    --apollo-secondary: #000000;
    --apollo-accent: #1e40af;
    --apollo-text: #333333;
    --apollo-light: #f8f9fa;
    --apollo-white: #ffffff;
    --apollo-gray: #6b7280;
    --apollo-dark: #1a1a1a;
    --apollo-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --apollo-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --apollo-transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--apollo-text);
    background: var(--apollo-white);
    overflow-x: hidden;
}

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

/* Header */
.apollo-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 2px solid var(--apollo-primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.apollo-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
}

.apollo-logo {
    height: 50px;
    width: auto;
    transition: var(--apollo-transition);
    filter: brightness(1.1);
}

.apollo-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.3);
}

.apollo-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.apollo-menu a {
    color: #e5e5e5;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--apollo-transition);
    position: relative;
    overflow: hidden;
}

.apollo-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--apollo-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.apollo-menu a:hover::before {
    left: 0;
}

.apollo-menu a:hover {
    color: #000;
    transform: translateY(-2px);
}

/* Hero Section */
.apollo-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%), 
                url('assets/images/Globo_Dourado_background.webp') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.apollo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: apollo-glow 4s ease-in-out infinite alternate;
}

@keyframes apollo-glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.apollo-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.apollo-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--apollo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: apollo-fadeInUp 1s ease-out;
}

.apollo-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: apollo-fadeInUp 1s ease-out 0.2s both;
}

/* Animações */
@keyframes apollo-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* Botões */
.apollo-btn {
    display: inline-block;
    background: var(--apollo-gradient);
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--apollo-transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.apollo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.apollo-btn:hover::before {
    left: 0;
}

.apollo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.apollo-btn-outline {
    background: transparent;
    color: var(--apollo-primary);
    border: 2px solid var(--apollo-primary);
}

.apollo-btn-outline:hover {
    background: var(--apollo-primary);
    color: #000;
}

/* Estatísticas */
.apollo-stats {
    background: var(--apollo-white);
    padding: 80px 0;
    position: relative;
}

.apollo-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.apollo-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--apollo-shadow);
    transition: var(--apollo-transition);
    position: relative;
    overflow: hidden;
}

.apollo-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--apollo-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.apollo-stat-card:hover::before {
    transform: scaleX(1);
}

.apollo-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.apollo-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--apollo-primary);
    margin-bottom: 10px;
    animation: apollo-countUp 2s ease-out;
}

.apollo-stat-label {
    font-size: 1.1rem;
    color: var(--apollo-gray);
    font-weight: 500;
}

/* Atividades */
.apollo-activities {
    background: var(--apollo-light);
    padding: 100px 0;
}

.apollo-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.apollo-activity-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--apollo-shadow);
    transition: var(--apollo-transition);
    position: relative;
    overflow: hidden;
}

.apollo-activity-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.apollo-activity-card:hover::before {
    opacity: 1;
}

.apollo-activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.apollo-activity-icon {
    width: 60px;
    height: 60px;
    background: var(--apollo-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #000;
    font-size: 1.5rem;
}

.apollo-activity-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--apollo-text);
}

.apollo-activity-description {
    color: var(--apollo-gray);
    line-height: 1.7;
}

/* Oportunidades em Destaque */
.apollo-featured-opportunities {
    padding: 100px 0;
    background: white;
}

.apollo-opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.apollo-opportunity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--apollo-shadow);
    transition: var(--apollo-transition);
    position: relative;
}

.apollo-opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.apollo-opportunity-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.apollo-opportunity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.apollo-opportunity-card:hover .apollo-opportunity-image img {
    transform: scale(1.1);
}

.apollo-opportunity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--apollo-gradient);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.apollo-opportunity-content {
    padding: 30px;
}

.apollo-opportunity-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--apollo-text);
}

.apollo-opportunity-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--apollo-primary);
    margin-bottom: 15px;
}

.apollo-opportunity-details {
    color: var(--apollo-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.apollo-opportunity-origin {
    font-size: 0.9rem;
    color: var(--apollo-gray);
    margin-bottom: 20px;
}

.apollo-opportunity-actions {
    display: flex;
    gap: 10px;
}

.apollo-btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Equipe */
.apollo-team {
    background: var(--apollo-light);
    padding: 100px 0;
}

.apollo-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.apollo-team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--apollo-shadow);
    transition: var(--apollo-transition);
    text-align: center;
}

.apollo-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.apollo-team-photo {
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.apollo-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.apollo-team-member:hover .apollo-team-photo img {
    transform: scale(1.1);
}

.apollo-team-info {
    padding: 30px;
}

.apollo-team-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--apollo-text);
}

.apollo-team-position {
    color: var(--apollo-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.apollo-team-contact {
    text-align: left;
}

.apollo-team-contact p {
    margin: 8px 0;
    color: var(--apollo-gray);
    font-size: 0.9rem;
}

.apollo-team-contact i {
    width: 20px;
    color: var(--apollo-primary);
    margin-right: 8px;
}

/* Call to Action */
.apollo-cta {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.apollo-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: apollo-pulse 3s ease-in-out infinite;
}

@keyframes apollo-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.apollo-cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.apollo-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--apollo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apollo-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* Footer */
.apollo-footer {
    background: #000;
    color: white;
    padding: 60px 0 30px;
}

.apollo-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.apollo-footer-section h3 {
    color: var(--apollo-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.apollo-footer-section p,
.apollo-footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
    transition: var(--apollo-transition);
}

.apollo-footer-section a:hover {
    color: var(--apollo-primary);
}

.apollo-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

/* Responsividade */
@media (max-width: 768px) {
    .apollo-hero h1 {
        font-size: 2.5rem;
    }
    
    .apollo-hero p {
        font-size: 1.1rem;
    }
    
    .apollo-menu {
        display: none;
    }
    
    .apollo-mobile-toggle {
        display: block;
        background: none;
        border: none;
        color: #e5e5e5;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .apollo-stats-grid,
    .apollo-activities-grid,
    .apollo-opportunities-grid,
    .apollo-team-grid {
        grid-template-columns: 1fr;
    }
    
    .apollo-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .apollo-container {
        padding: 0 15px;
    }
}

/* Utilitários */
.apollo-text-center { text-align: center; }
.apollo-text-left { text-align: left; }
.apollo-text-right { text-align: right; }

.apollo-mb-20 { margin-bottom: 20px; }
.apollo-mb-30 { margin-bottom: 30px; }
.apollo-mb-40 { margin-bottom: 40px; }

.apollo-mt-20 { margin-top: 20px; }
.apollo-mt-30 { margin-top: 30px; }
.apollo-mt-40 { margin-top: 40px; }

.apollo-hidden { display: none; }
.apollo-visible { display: block; }

/* Estados de loading */
.apollo-loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.apollo-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--apollo-primary);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: apollo-spin 1s linear infinite;
}

@keyframes apollo-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Seleção de texto */
::selection {
    background: var(--apollo-primary);
    color: #000;
}

::-moz-selection {
    background: var(--apollo-primary);
    color: #000;
}

