/* Variables de colores y fuentes */
:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --primary-purple: #6a0dad;
    --secondary-purple: #8a2be2;
    --light-purple: #9b30ff;
    --primary-gold: #ffd700;
    --secondary-gold: #daa520;
    --text-light: #f5f5f5;
    --text-gray: #b0b0b0;
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

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

/* Ventana de presentación */
.presentation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.presentation-content {
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 40px;
}

.logo-part {
    position: absolute;
    background-color: var(--primary-purple);
    border: 2px solid var(--primary-gold);
    opacity: 0;
}

.part1 {
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border-radius: 20px 0 0 0;
    animation: assemblePart1 1.5s forwards 0.5s;
}

.part2 {
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-radius: 0 20px 0 0;
    animation: assemblePart2 1.5s forwards 1s;
}

.part3 {
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border-radius: 0 0 0 20px;
    animation: assemblePart3 1.5s forwards 1.5s;
}

.part4 {
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-radius: 0 0 20px 0;
    animation: assemblePart4 1.5s forwards 2s;
}

.logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: fadeInText 1s forwards 2.5s;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.logo-text h1 span {
    color: var(--primary-gold);
}

.logo-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.logo-text .subtitle {
    font-size: 1rem;
    color: var(--light-purple);
    font-style: italic;
}

.enter-button {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInButton 1s forwards 3s;
    box-shadow: 0 0 20px rgba(106, 13, 173, 0.5);
}

.enter-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.7);
}

/* Animaciones de la presentación */
@keyframes assemblePart1 {
    0% {
        opacity: 0;
        transform: translate(-100px, -100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes assemblePart2 {
    0% {
        opacity: 0;
        transform: translate(100px, -100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes assemblePart3 {
    0% {
        opacity: 0;
        transform: translate(-100px, 100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes assemblePart4 {
    0% {
        opacity: 0;
        transform: translate(100px, 100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Header */
.header {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
}

.logo h1 span {
    color: var(--primary-gold);
}

.by-onyx {
    font-size: 0.8rem;
    color: var(--light-purple);
    margin-top: -5px;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.download-btn {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.4);
}

.download-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Secciones generales */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

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

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.4);
}

.btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.6);
}

.btn.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-purple);
}

.btn.secondary:hover {
    background-color: rgba(106, 13, 173, 0.1);
    transform: translateY(-5px);
}

.btn.large {
    padding: 15px 40px;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-bottom: 15px;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(106, 13, 173, 0.1) 0%, transparent 50%);
}

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

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-text h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h2 span {
    color: var(--primary-gold);
    display: block;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.game-preview {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-purple);
    position: relative;
}

.game-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.2) 0%, transparent 50%);
}

.game-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.game-preview:hover img {
    transform: scale(1.05);
}

/* Historia Section */
.history {
    background-color: var(--secondary-black);
}

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

.history-text {
    flex: 1;
}

.history-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.milestones {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.milestone {
    text-align: center;
}

.milestone h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.milestone p {
    font-size: 1rem;
    color: var(--text-gray);
}

.history-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-purple);
}

.history-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.history-image:hover img {
    transform: scale(1.05);
}

/* Equipo Section */
.team {
    background-color: var(--primary-black);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.team-member {
    background-color: var(--secondary-black);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(106, 13, 173, 0.3);
    flex: 1;
    max-width: 300px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.3);
    border-color: var(--primary-purple);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-purple);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p:last-child {
    color: var(--text-gray);
}

/* Misión y Visión Section */
.mission-vision {
    background-color: var(--secondary-black);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background-color: var(--primary-black);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-gold);
}

.mv-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.mv-card .icon {
    margin-top: 30px;
    color: var(--primary-gold);
}

.mission {
    border-top: 5px solid var(--primary-purple);
}

.vision {
    border-top: 5px solid var(--primary-gold);
}

.objective {
    border-top: 5px solid var(--light-purple);
}

/* Financiamiento Section */
.financing {
    background-color: var(--primary-black);
}

.financing-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.financing-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.financing-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkmark {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: bold;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--secondary-black);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(106, 13, 173, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.3);
    border-color: var(--primary-purple);
}

.pricing-card.popular {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--primary-black);
    padding: 5px 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-card > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(106, 13, 173, 0.2);
    color: var(--text-gray);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
}

/* Descarga Section */
.download {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

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

.download-text {
    flex: 1;
}

.download-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.download-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.download-stats {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat p {
    font-size: 1rem;
    color: var(--text-gray);
}

.download-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-purple);
}

.download-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.download-image:hover img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--secondary-black);
    padding: 70px 0 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.footer-section p {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-purple);
    transform: translateY(-5px);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.contact-info p, .address p {
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(106, 13, 173, 0.3);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content, .history-content, .download-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text, .history-text, .download-text {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .team-row {
        flex-wrap: wrap;
    }
    
    .team-member {
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .milestones {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn.large {
        margin-right: 0;
        width: 100%;
    }
    
    .download-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .team-member {
        max-width: 100%;
    }
    
    .team-row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-container {
        width: 250px;
        height: 250px;
    }
    
    .part1, .part2, .part3, .part4 {
        width: 125px;
        height: 125px;
    }
    
    .logo-text h1 {
        font-size: 2rem;
    }
    
    .logo-text p {
        font-size: 1rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ESTILOS PARA PÁGINAS SEPARADAS ===== */

/* Hero sections específicas para páginas */
.team-hero, .mission-hero, .financing-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding: 150px 0 100px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.team-hero::before {
    background: radial-gradient(circle at 70% 30%, rgba(106, 13, 173, 0.15) 0%, transparent 50%);
}

.mission-hero::before {
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.financing-hero::before {
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
}

/* Sección CTA para páginas individuales */
.cta {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

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

/* Valores corporativos */
.values-section {
    margin-top: 80px;
}

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

.value-card {
    background: var(--secondary-black);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(106, 13, 173, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.2);
}

.value-card h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Proceso de compra */
.process-steps {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--primary-gold) 100%);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-black);
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.process-step h4 {
    margin-bottom: 10px;
    color: var(--text-light);
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 80px;
}

.faq-item {
    background: var(--secondary-black);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(106, 13, 173, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--primary-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(106, 13, 173, 0.1);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-toggle {
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

/* Responsive para páginas individuales */
@media (max-width: 768px) {
    .team-hero, .mission-hero, .financing-hero {
        min-height: 50vh;
        padding: 120px 0 80px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
/* ===== ESTILOS ESPECÍFICOS PARA FINANCIAMIENTO ===== */

.financing-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding: 150px 0 100px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.financing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
}

/* Proceso de compra */
.process-section {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(106, 13, 173, 0.3);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--primary-gold) 100%);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-black);
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    color: var(--primary-gold);
    font-size: 1.2rem;
    position: relative;
    z-index: 3;
}

.process-step h4 {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Métodos de pago */
.payment-methods {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(106, 13, 173, 0.3);
}

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

.payment-method {
    background: var(--secondary-black);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(106, 13, 173, 0.2);
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.2);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.payment-method h4 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.payment-method p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* FAQ Section para financiamiento */
.faq-section {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(106, 13, 173, 0.3);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary-black);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(106, 13, 173, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-purple);
}

.faq-question {
    padding: 20px;
    background: var(--primary-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(106, 13, 173, 0.1);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-toggle {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

/* Nota CTA */
.cta-note {
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.cta-note a {
    color: var(--primary-gold);
    text-decoration: none;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* Mejoras para las tarjetas de precios en página de financiamiento */
.pricing-card {
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Responsive para financiamiento */
@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        padding: 0;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .financing-hero {
        min-height: 50vh;
        padding: 120px 0 80px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-answer.active {
        padding: 15px;
    }
}

/* Animaciones para elementos de financiamiento */
.pricing-card, .payment-method, .process-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing-card.animate-in, 
.payment-method.animate-in, 
.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ESTILOS ESPECÍFICOS PARA DESCARGAS ===== */

.download-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding: 150px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.download-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(106, 13, 173, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.download-info {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.info-item .icon {
    font-size: 1.2rem;
}

/* Opciones de descarga */
.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.download-option {
    background: var(--secondary-black);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(106, 13, 173, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.download-option:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.3);
}

.download-option.popular {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.download-option.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.download-option.coming-soon {
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.download-option.coming-soon:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.platform-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.download-option h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.download-option > p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.version-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(106, 13, 173, 0.1);
    border-radius: 10px;
}

.version, .size {
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(106, 13, 173, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

.download-btn-platform {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Requisitos del sistema */
.system-requirements {
    text-align: left;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(106, 13, 173, 0.2);
}

.system-requirements h4 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1rem;
}

.system-requirements ul {
    list-style: none;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.system-requirements li {
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
}

.system-requirements li::before {
    content: '•';
    color: var(--primary-purple);
    position: absolute;
    left: 0;
}

/* Sección de notificación */
.notify-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(106, 13, 173, 0.2);
}

.notify-section p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.notify-form {
    display: flex;
    gap: 10px;
}

.notify-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 5px;
    background: var(--primary-black);
    color: var(--text-light);
    font-size: 0.9rem;
}

.notify-input:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.notify-btn {
    white-space: nowrap;
    padding: 10px 20px;
}

/* Guía de instalación */
.installation-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 50px auto 0;
}

.installation-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: var(--secondary-black);
    border-radius: 15px;
    border: 1px solid rgba(106, 13, 173, 0.2);
    transition: all 0.3s ease;
}

.installation-step:hover {
    border-color: var(--primary-purple);
    transform: translateX(10px);
}

.installation-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Estadísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: var(--secondary-black);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(106, 13, 173, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* FAQ específica para descargas */
.download-faq {
    background: var(--secondary-black);
}

/* Responsive para descargas */
@media (max-width: 992px) {
    .download-options {
        grid-template-columns: 1fr;
    }
    
    .download-option.popular {
        transform: scale(1);
    }
    
    .download-option.popular:hover {
        transform: translateY(-10px);
    }
    
    .download-info {
        justify-content: center;
    }
    
    .installation-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .installation-step:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .download-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .download-option {
        padding: 30px 20px;
    }
    
    .version-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* Animaciones para elementos de descarga */
.download-option, .installation-step, .stat-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.download-option.animate-in, 
.installation-step.animate-in, 
.stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   📱 RESPONSIVE DESIGN (AJUSTE MÓVIL)
============================================================ */

/* ----- Tablets (pantallas medianas) ----- */
@media (max-width: 992px) {
    .hero-content,
    .download-content,
    .history-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text, 
    .download-text, 
    .history-text {
        padding-right: 0;
    }

    .hero-buttons, 
    .download-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-image, 
    .download-image, 
    .history-image {
        margin-top: 30px;
        width: 100%;
    }

    .team-row {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        max-width: 90%;
    }

    .pricing-cards, 
    .mv-grid, 
    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: 70px 0;
    }
}

/* ----- Celulares (pantallas pequeñas) ----- */
@media (max-width: 768px) {
    /* Menú hamburguesa */
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background-color: var(--secondary-black);
        flex-direction: column;
        width: 70%;
        height: calc(100vh - 70px);
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        z-index: 1001;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--text-light);
        margin: 3px 0;
        transition: all 0.3s ease;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    /* Ajustes generales */
    .hero-text h2 {
        font-size: 2.2rem;
    }

    .btn.large {
        width: 100%;
        text-align: center;
    }

    .hero-content {
        gap: 30px;
    }

    .mv-card, .pricing-card, .value-card {
        padding: 25px 20px;
    }
}

/* ----- Celulares muy pequeños (menores a 480px) ----- */
@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.8rem;
    }

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

    .btn {
        width: 100%;
        padding: 10px 20px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .by-onyx {
        font-size: 0.7rem;
    }

    .section {
        padding: 60px 0;
    }
}

/* ============================================================
   📱 ACORDEONES EN MODO MÓVIL (DESPLEGABLES HACIA LA IZQUIERDA)
============================================================ */
@media (max-width: 768px) {
    .section[data-collapsible] {
        overflow: hidden;
        position: relative;
    }

    /* Contenedor del contenido plegable */
    .section[data-collapsible] .section-content {
        position: relative;
        left: 100%;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    /* Al abrir, el contenido se desplaza hacia la izquierda */
    .section[data-collapsible].active .section-content {
        left: 0;
        opacity: 1;
        max-height: 1000px;
        padding-top: 10px;
    }

    /* Título clickeable */
    .section[data-collapsible] .section-title {
        cursor: pointer;
        position: relative;
        padding-right: 40px;
    }

    /* Flecha animada */
    .section[data-collapsible] .section-title::after {
        content: "▶";
        position: absolute;
        right: 15px;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .section[data-collapsible].active .section-title::after {
        transform: rotate(90deg);
    }
}



.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo {
    width: 45px;
    height: auto;
    border-radius: 50%;
    filter: drop-shadow(0 0 5px #00eaff);
}

@media(max-width: 768px) {
    .navbar-logo {
        width: 35px;
    }
}


/* =============================== */
/* MEJORAS DE LEGIBILIDAD GLOBAL  */
/* =============================== */

/* Variables más claras */
:root {
    --text-light: #ffffff;
    --text-gray: #d2d2d2;
}

/* Texto general más claro y grande */
body {
    font-size: 1.15rem;
    line-height: 1.75;
}

/* Párrafos */
p {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Títulos */
h1, h2, h3, h4 {
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(255,255,255,0.15);
}

/* Navbar más legible */
.nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light) !important;
}


/* ===================== */
/*  FIX TEXT VISIBILITY  */
/* ===================== */

.team-member h3 {
    color: #ffffff !important;
    text-shadow: 0 0 6px rgba(255,255,255,0.25) !important;
}

.team-member p,
.role,
.text-gray {
    color: #e5e5e5 !important;
}

h1, h2, h3, h4 {
    color: #ffffff !important;
}

.logo h1 {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255,255,255,0.3) !important;
}


/* Force WordShooter next to logo to be white */
.navbar-brand,
.custom-brand {
    color: #ffffff !important;
}
