/* Estilos generales para Robot De Oro Mr. Y 6.0 */

/* Variables de colores */
:root {
    --color-gold: #d4af37;
    --color-gold-light: #f0d875;
    --color-gold-dark: #b8860b;
    --color-black: #111111;
    --color-dark-gray: #222222;
    --color-light-gray: #333333;
    --color-white: #ffffff;
    --color-off-white: #f5f5f5;
    --color-accent: #4169e1; /* Azul para acentos y botones */
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-gold-light);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--color-dark-gray);
}

section:nth-child(even) {
    background-color: var(--color-black);
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-float span {
    display: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

.whatsapp-float:hover span {
    display: inline;
}

/* Navegación */
header {
    background-color: rgba(17, 17, 17, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--color-gold);
    font-weight: 800;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
}

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

nav ul li a:hover:after {
    width: 100%;
}

.btn-acceso {
    background-color: var(--color-gold);
    color: var(--color-black) !important;
    padding: 10px 20px !important;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-acceso:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Sección Hero */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/1920x1080/111111/333333') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--color-white);
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: var(--color-gold);
    text-transform: uppercase;
}

.hero h2:after {
    display: none;
}

.hero h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--color-white);
    font-weight: 400;
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: var(--color-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-comprar {
    display: inline-block;
    background: linear-gradient(45deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
    color: var(--color-black);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-comprar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: var(--color-black);
}

/* Sección de Poder de IA */
.ai-power .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ai-chart {
    flex: 1;
}

.ai-content {
    flex: 1;
}

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

.feature-card {
    background-color: var(--color-light-gray);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-card h3 {
    color: var(--color-gold);
    margin-bottom: 15px;
}

/* Cómo Configurar */
.setup-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50px;
    right: 0;
    width: 50%;
    height: 2px;
    background-color: var(--color-gold);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--color-gold);
}

.step-icon i {
    font-size: 2rem;
    color: var(--color-gold);
}

/* Resultados y Rendimiento */
.results-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.result-image {
    flex: 1;
}

.result-content {
    flex: 1;
}

.btn-resultados {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-resultados:hover {
    background-color: #3050c5;
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Adaptabilidad */
.adapting .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.adapting-content {
    flex: 1;
}

.adapting-image {
    flex: 1;
}

/* Por Qué Muchos Traders Fallan */
.why-fail .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.fail-image {
    flex: 1;
}

.fail-content {
    flex: 1;
}

/* Testimonios */
.testimonials {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    text-align: center;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    margin: 50px 0;
    overflow-x: auto;
    padding-bottom: 20px;
}

.testimonial {
    background-color: var(--color-light-gray);
    border-radius: 10px;
    padding: 30px;
    min-width: 300px;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.author {
    font-weight: 700;
    color: var(--color-gold);
    margin-top: 20px;
}

.btn-testimonios {
    display: inline-block;
    background-color: transparent;
    color: var(--color-gold);
    padding: 12px 25px;
    border: 2px solid var(--color-gold);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-testimonios:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

/* Preguntas Frecuentes */
.faq-item {
    background-color: var(--color-light-gray);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 15px rgba(212, 175, 55, 0.2);
}

.faq-item h3 {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Sección de Compra */
.pricing {
    text-align: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
}

.price-card {
    background-color: var(--color-light-gray);
    border-radius: 15px;
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--color-gold);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-gold);
    margin: 20px 0 10px;
}

.price-description {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 30px;
}

.price-features {
    margin-bottom: 30px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.price-features li i {
    color: var(--color-gold);
    margin-right: 10px;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.payment-btn {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.payment-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

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

.link-card {
    background-color: var(--color-light-gray);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.link-card i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.link-card h3 {
    color: var(--color-gold);
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--color-black);
    padding: 80px 0 30px;
    border-top: 1px solid var(--color-gold);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo h2:after {
    display: none;
}

.footer-links {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-links h3 {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

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

.footer-links ul li a {
    color: var(--color-white);
}

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

.footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-contact h3 {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact p a {
    color: var(--color-white);
    display: flex;
    align-items: center;
}

.footer-contact p a i {
    margin-right: 10px;
    color: var(--color-gold);
}

.footer-contact p a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries para Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 3.5rem;
    }
    
    .hero .container,
    .ai-power .container,
    .results-grid,
    .adapting .container,
    .why-fail .container {
        flex-direction: column;
    }
    
    .hero-content,
    .ai-content,
    .result-content,
    .adapting-content,
    .fail-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px 10px;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero h3 {
        font-size: 1.5rem;
    }
    
    .step:not(:last-child):after {
        display: none;
    }
    
    .price-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .btn-comprar {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .features-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .setup-steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 30px;
    }
    
    .testimonials-slider {
        flex-direction: column;
    }
    
    .testimonial {
        min-width: auto;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

/* Estilos adicionales para las opciones de pago */
.additional-payments {
    margin-top: 30px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #d4af37;
}

.bank-transfer, .e-payment, .bitcoin-payment {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #222;
    border-radius: 8px;
    border-left: 3px solid #d4af37;
}

.bank-transfer h5, .e-payment h5 {
    color: #d4af37;
    margin-top: 0;
    font-size: 1.2em;
}

.bitcoin-address {
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
    color: #d4af37;
    text-align: center;
    margin: 10px 0;
    font-size: 1.1em;
    word-break: break-all;
}

.payment-instructions {
    margin-top: 30px;
    padding: 20px;
    background-color: #222;
    border-radius: 8px;
    border: 1px dashed #d4af37;
}

.payment-instructions ul {
    list-style-type: none;
    padding-left: 0;
}

.payment-instructions ul li {
    padding: 5px 0;
    border-bottom: 1px dotted #444;
}

.payment-instructions .note {
    margin-top: 15px;
    font-style: italic;
    color: #d4af37;
    font-size: 0.9em;
}
