/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0e27;
    color: #e4e4e7;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
}

a {
    color: #00d9ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #00b8d4;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #e4e4e7;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00d9ff;
}

.btn-nav {
    background: #00d9ff;
    color: #0a0e27;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.btn-nav:hover {
    background: #00b8d4;
    color: #0a0e27;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .btn-nav {
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(10, 14, 39, 0.7) 50%, rgba(0, 217, 255, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00d9ff;
}

.hero-title {
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #00d9ff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 217, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 600;
    color: #e4e4e7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.8s both;
    flex-wrap: wrap;
}

.hero-trust {
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-trust p {
    color: #94a3b8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: #e4e4e7;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-features,
.hero-cta,
.trust-badges {
    justify-content: center;
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #00d9ff;
    color: #0a0e27;
}

.btn-primary:hover {
    background: #00b8d4;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

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

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00b8d4;
    color: #00b8d4;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

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

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.section-title {
    background: linear-gradient(135deg, #00d9ff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.section-description {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* ============================================
   ABOUT RAMILSON SECTION
   ============================================ */

.about-ramilson {
    background: linear-gradient(135deg, rgba(10, 14, 39, 1) 0%, rgba(20, 25, 60, 0.5) 100%);
}

.ramilson-bio {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.ramilson-bio p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.ramilson-bio strong {
    color: #00d9ff;
}

.ramilson-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.ramilson-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.ramilson-card:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ramilson-card h3 {
    color: #00d9ff;
    margin-bottom: 0.75rem;
}

.ramilson-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.discografia {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
}

.discografia h3 {
    color: #00d9ff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.discografia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.disco-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(10, 14, 39, 0.5);
    border-radius: 0.5rem;
    border-left: 3px solid #00d9ff;
}

.year {
    font-weight: 700;
    color: #00d9ff;
    font-size: 0.9rem;
}

.title {
    color: #e4e4e7;
    font-weight: 600;
    font-size: 0.95rem;
}

.type {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ============================================
   ABOUT MENTORSHIP SECTION
   ============================================ */

.about-mentorship {
    background: linear-gradient(135deg, rgba(10, 14, 39, 1) 0%, rgba(20, 25, 60, 0.5) 100%);
}

.mentorship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.mentorship-text p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.mentorship-text strong {
    color: #00d9ff;
}

.mentorship-image {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.mentorship-image img {
    width: 100%;
    height: auto;
    display: block;
}

.format-structure {
    margin-bottom: 3rem;
}

.format-structure h3 {
    color: #00d9ff;
    margin-bottom: 1.5rem;
}

.format-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.format-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.format-card:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.format-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.format-card h4 {
    color: #e4e4e7;
    margin-bottom: 0.75rem;
}

.format-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.why-choose {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
}

.why-choose h3 {
    color: #00d9ff;
    margin-bottom: 1.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
}

.why-icon {
    color: #00d9ff;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-item span:last-child {
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .mentorship-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   MODULES SECTION
   ============================================ */

.modules {
    background: linear-gradient(135deg, rgba(10, 14, 39, 1) 0%, rgba(20, 25, 60, 0.5) 100%);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.module-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.module-card:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-10px);
}

.module-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 217, 255, 0.1);
}

.module-card h3 {
    color: #00d9ff;
    margin-bottom: 0.75rem;
}

.module-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.module-section {
    margin-bottom: 1.5rem;
}

.module-section h4 {
    color: #e4e4e7;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.module-section ul {
    list-style: none;
    padding-left: 0;
}

.module-section li {
    color: #cbd5e1;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.module-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00d9ff;
    font-weight: bold;
}

.modules-note {
    text-align: center;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    color: #cbd5e1;
}

.modules-note strong {
    color: #00d9ff;
}

/* ============================================
   DIFFERENTIALS SECTION
   ============================================ */

.differentials {
    background: linear-gradient(135deg, rgba(10, 14, 39, 1) 0%, rgba(20, 25, 60, 0.5) 100%);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.differential-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.differential-card:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-10px);
}

.diff-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.differential-card h3 {
    color: #00d9ff;
    margin-bottom: 0.75rem;
}

.differential-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.exclusivity-box {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.exclusivity-box h3 {
    color: #00d9ff;
    margin-bottom: 1rem;
}

.exclusivity-box p {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
}

.exclusivity-highlight {
    color: #a855f7;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ============================================
   BONUS SECTION
   ============================================ */

.bonus {
    background: linear-gradient(135deg, rgba(10, 14, 39, 1) 0%, rgba(20, 25, 60, 0.5) 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-10px);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-card h3 {
    color: #00d9ff;
    margin-bottom: 0.75rem;
}

.bonus-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* ============================================
   IMPORTANT INFO SECTION
   ============================================ */

.important-info {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.important-info h2 {
    color: #00d9ff;
    margin-bottom: 2rem;
    text-align: center;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(0, 217, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 3px solid #00d9ff;
}

.info-icon {
    color: #00d9ff;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item span:last-child {
    color: #cbd5e1;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, rgba(10, 14, 39, 1) 0%, rgba(20, 25, 60, 0.5) 100%);
    text-align: center;
}

.cta-title {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.indicator-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.indicator-card:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.indicator-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.indicator-card h4 {
    color: #00d9ff;
    margin-bottom: 0.5rem;
}

.indicator-card p {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.urgency-box {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 1.5rem;
    border-radius: 1rem;
}

.urgency-text {
    color: #e4e4e7;
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(10, 14, 39, 0.8);
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #00d9ff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00d9ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .modules-grid,
    .differentials-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .ramilson-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: 80vh;
        margin-top: 50px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .trust-badge {
        text-align: center;
    }
    
    .ramilson-cards {
        grid-template-columns: 1fr;
    }
    
    .discografia-grid {
        grid-template-columns: 1fr;
    }
    
    .info-list {
        grid-template-columns: 1fr;
    }
    
    .cta-indicators {
        grid-template-columns: 1fr;
    }
}
