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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a237e 0%, #e91e63 100%);
    padding: 20px 0;
    color: white;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-img {
    height: 200px;
    width: auto;
}

.header-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.header-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #ffffff;
}

.highlight {
    color: #e91e63;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e91e63, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.8;
    color: #ffffff;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e91e63;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.7;
    color: #ffffff;
}

/* CEO Section */
.ceo-section {
    background: #1a1a1a;
    padding: 80px 0;
    color: white;
}

.ceo-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ceo-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e91e63;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.ceo-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.ceo-title {
    font-size: 1.2rem;
    color: #e91e63;
    margin-bottom: 20px;
    font-weight: 600;
}

.ceo-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    color: #ffffff;
}

/* Reports Section */
.reports-section {
    background: #0a0a0a;
    padding: 80px 0;
    color: white;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.8;
    color: #ffffff;
}

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

.report-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateY(-10px);
    border-color: #e91e63;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.report-card.exclusive {
    border: 2px solid #e91e63;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 100%);
}

.report-status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.report-status.available {
    background: #4caf50;
    color: white;
}

.report-status.exclusive {
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    color: white;
}

.report-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.report-author {
    font-size: 1rem;
    color: #e91e63;
    margin-bottom: 20px;
    font-style: italic;
}

.report-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #ffffff;
}

.report-stats, .report-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.report-stat, .feature {
    text-align: center;
}

.stat-number, .feature-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 5px;
}

.stat-label, .feature-label {
    font-size: 0.9rem;
    opacity: 0.7;
    color: #ffffff;
}

.report-highlights ul {
    list-style: none;
    margin-bottom: 30px;
}

.report-highlights li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    color: #ffffff;
}

.report-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.report-actions {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #e91e63;
    border: 2px solid #e91e63;
}

.btn-secondary:hover {
    background: #e91e63;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* Audio Section */
.audio-section {
    background: #1a1a1a;
    padding: 80px 0;
    color: white;
}

.audio-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #333;
}

.audio-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.audio-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #ffffff;
}

.audio-player {
    background: #0a0a0a;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #333;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

.audio-progress {
    flex: 1;
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    width: 0%;
    transition: width 0.3s ease;
}

.audio-time {
    font-size: 1rem;
    color: #ffffff;
}

.audio-waves {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.wave {
    width: 4px;
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    border-radius: 2px;
    animation: wave 1.5s ease-in-out infinite;
}

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

@keyframes wave {
    0%, 100% { height: 10px; }
    50% { height: 30px; }
}

.audio-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.audio-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.audio-details span {
    font-size: 1rem;
    color: #ffffff;
}

/* Timeline Section */
.timeline-section {
    background: #0a0a0a;
    padding: 80px 0;
    color: white;
}

.timeline-container {
    position: relative;
    margin-top: 60px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #4caf50 0%, #ff9800 50%, #9c27b0 100%);
    transform: translateX(-50%);
    z-index: 0; /* Linha atrás dos elementos */
}

.timeline-period {
    margin-bottom: 80px;
    position: relative;
    z-index: 10; /* Cards na frente */
}

.period-header {
    text-align: center;
    margin-bottom: 40px;
}

.period-years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.period-label {
    display: block;
    font-size: 1.2rem;
    opacity: 0.8;
    color: #ffffff;
}

.timeline-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 10; /* Cards na frente */
}

.timeline-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10; /* Cards na frente */
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.timeline-card[data-period="short"]:hover {
    border-color: #4caf50;
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.2);
}

.timeline-card[data-period="medium"]:hover {
    border-color: #ff9800;
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.2);
}

.timeline-card[data-period="long"]:hover {
    border-color: #9c27b0;
    box-shadow: 0 15px 30px rgba(156, 39, 176, 0.2);
}

.timeline-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.timeline-card p {
    font-size: 1rem;
    opacity: 0.8;
    color: #ffffff;
}

/* Main Points Section */
.main-points-section {
    background: #1a1a1a;
    padding: 80px 0;
    color: white;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.point-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.point-card:hover {
    transform: translateY(-10px);
    border-color: #e91e63;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.point-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.point-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 10px;
    color: #ffffff;
}

.point-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #ffffff;
}

.point-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(233, 30, 99, 0.2);
    color: #e91e63;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(233, 30, 99, 0.3);
}

.methodology-note {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #333;
    text-align: center;
}

.methodology-note h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e91e63;
}

.methodology-note p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    color: #ffffff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a237e 0%, #e91e63 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #ffffff;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 40px;
    color: white;
    border-top: 1px solid #333;
}

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

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.8;
    color: #ffffff;
}

.partner-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.partner-logo {
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.imma-logo {
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    color: white;
}

.hari-logo {
    background: linear-gradient(135deg, #9c27b0, #e1bee7);
    color: white;
}

.footer-note {
    background: rgba(233, 30, 99, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #e91e63;
}

.footer-note p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin: 10% auto;
    padding: 40px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
    border: 2px solid #e91e63;
    color: white;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #e91e63;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ff6b9d;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e91e63;
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .ceo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .audio-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-cards {
        grid-template-columns: 1fr;
        margin-left: 40px;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 30px;
    }
}

