:root {
    --bg-dark: #0a0a0a;
    --deep-blue: #030303;
    --accent: #e4b34a;
    --accent-light: #f5d48a;
    --neon-white: #ffffff;
    --text-light: #f0f0f0;
    --text-gray: #c0c0c0;
    --card-bg: rgba(30, 30, 30, 0.6);
    --card-border: rgba(228, 179, 74, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Light Theme Variables */
    --bg-light: #f4f4f4;
    --text-dark: #1a1a1a;
    --card-bg-light: rgba(255, 255, 255, 0.8);
    --card-border-light: rgba(0, 0, 0, 0.1);
}

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

body {
    background: var(--deep-blue);
    color: var(--text-light);
    font-family: 'Raleway', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(228, 179, 74, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 85% 80%, rgba(228, 179, 74, 0.05) 0%, transparent 25%);
    transition: background 0.4s, color 0.4s;
}

body.light-theme {
    background: var(--bg-light);
    color: var(--text-dark);
    background-image: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.6;
}

body.light-theme .section-subtitle {
    color: #555;
}

/* Header */
header {
    background: rgba(10, 10, 10, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(228, 179, 74, 0.1);
    transition: background 0.4s;
}

body.light-theme header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.logo img {
    height: 50px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}

body.light-theme .logo-text {
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

body.light-theme nav ul li a {
    color: var(--text-dark);
}

nav ul li a:hover {
    color: var(--accent);
}

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

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

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

body.light-theme .menu-toggle {
    color: var(--text-dark);
}

/* Theme Toggle Switch */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}
.theme-switch {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 50px;
}
.theme-switch input {
    display:none;
}
.slider {
    background-color: #333;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 16px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 16px;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--accent);
}
input:checked + .slider:before {
    transform: translateX(26px);
}
.slider .fa-moon {
    position: absolute;
    top: 50%;
    left: 7px;
    transform: translateY(-50%);
    color: #f0f0f0;
    font-size: 12px;
}
.slider .fa-sun {
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    color: #333;
    display: none;
}
input:checked + .slider .fa-moon { display: none; }
input:checked + .slider .fa-sun { display: block; }

/* Custom Focus Outline */
a, button, input {
    transition: var(--transition);
}
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(228, 179, 74, 0.5);
    border-radius: 4px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 650px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--neon-white);
    position: relative;
}

body.light-theme .hero-title {
    color: var(--text-dark);
}

.hero-title span {
    color: var(--accent);
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-light);
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 600px;
}

body.light-theme .hero-subtitle {
    color: #444;
}

.hero-author {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.light-theme .hero-author {
    color: #666;
}

.hero-author::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    perspective: 1000px;
}

.book-container {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-5deg);
    transition: var(--transition);
}

.book-container:hover {
    transform: rotateY(0deg);
}

.book-cover {
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(228, 179, 74, 0.3);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.book-cover:hover {
    transform: translateY(-10px);
}

.book-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15px;
    left: 15px;
    background: var(--accent);
    border-radius: 8px;
    z-index: 1;
    opacity: 0.3;
    filter: blur(10px);
}

/* Botones */
.btn {
    display: inline-block;
    padding: 16px 38px;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent);
    z-index: -1;
    transition: var(--transition);
}

.btn:hover::before {
    height: 100%;
}

.btn:hover {
    color: var(--deep-blue);
    box-shadow: 0 10px 25px rgba(228, 179, 74, 0.3);
}

.btn-primary {
    background: var(--accent);
    color: var(--deep-blue);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
}

body.light-theme .btn:hover {
     color: var(--bg-light);
}

body.light-theme .btn-primary {
     color: var(--bg-light);
}

body.light-theme .btn-primary:hover {
     color: var(--accent);
}

/* Generic Card Style */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

body.light-theme .card {
    background: var(--card-bg-light);
    border: 1px solid var(--card-border-light);
}

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

body.light-theme .card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-white);
}

body.light-theme .card-title {
    color: var(--text-dark);
}

.card-content {
    color: var(--text-gray);
    line-height: 1.7;
}

body.light-theme .card-content {
    color: #555;
}

.card-content ul {
    padding-left: 20px;
    margin-top: 15px;
}

.card-content li {
    margin-bottom: 8px;
}

/* Sección del Libro */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

body.light-theme .feature-card {
    background: var(--card-bg-light);
    border: 1px solid var(--card-border-light);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

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

body.light-theme .feature-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-white);
}

body.light-theme .feature-title {
    color: var(--text-dark);
}

.feature-content {
    color: var(--text-gray);
    line-height: 1.7;
}

body.light-theme .feature-content, body.light-theme .feature-content p {
    color: #555;
}

.feature-content ul {
    padding-left: 20px;
    margin-top: 15px;
}

.feature-content li {
    margin-bottom: 8px;
}

.quote-container {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px;
    border-left: 4px solid var(--accent);
    background: var(--card-bg);
    border-radius: 0 12px 12px 0;
    position: relative;
}

body.light-theme .quote-container {
    background: var(--card-bg-light);
}

.quote-container::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 8rem;
    font-family: serif;
    color: rgba(228, 179, 74, 0.1);
    line-height: 1;
}

body.light-theme .quote-container::before {
    color: rgba(0,0,0,0.05);
}

blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

body.light-theme blockquote {
    color: #555;
}

blockquote footer {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    font-style: normal;
}

/* Sección de Compra */
.purchase-section {
    background: rgba(15, 15, 15, 0.9);
}

body.light-theme .purchase-section {
    background: #fff;
}

.purchase-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.purchase-card {
    padding: 25px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
}

body.light-theme .purchase-card {
    background: var(--card-bg-light);
    border: 1px solid var(--card-border-light);
}

.purchase-card .card-icon {
    font-size: 4rem;
    text-align: center;
}

.purchase-card .card-title {
    margin-top: 15px;
    text-align: center;
}

.purchase-note {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 20px 0 30px;
    min-height: 60px;
    text-align: center;
}

body.light-theme .purchase-note {
    color: #666;
}

.country-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.country-flag {
    font-size: 2rem;
}

.country-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-light);
}

body.light-theme .country-name {
    color: #444;
}

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

.store-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

body.light-theme .store-link {
    background: #fff;
    border-color: #ddd;
    color: var(--text-dark);
}

.store-link:hover {
    background: var(--accent);
    color: var(--deep-blue);
    border-color: var(--accent);
}

.store-link i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.store-link span {
    font-weight: 600;
}

.ebook-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.ebook-stores-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Beneficios / Resultados */
.benefits-section {
     background: var(--deep-blue);
}

body.light-theme .benefits-section {
    background: #fff;
}

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

.benefit-item {
    text-align: center;
}

.benefit-item .card-icon {
    font-size: 3rem;
}

.benefit-item .card-title {
    font-size: 1.3rem;
}

/* Lead Magnet Section */
.lead-magnet-section {
    background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(10,10,10,1) 100%);
}

body.light-theme .lead-magnet-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.lead-magnet-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

body.light-theme .lead-magnet-box {
    background: var(--card-bg-light);
    border: 1px solid var(--card-border-light);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.lead-magnet-box .card-icon {
    font-size: 3rem;
}

.lead-magnet-form {
    max-width: 500px;
    margin: 30px auto 0;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 16px 25px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--card-border);
    color: var(--text-light);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: var(--transition);
}

body.light-theme .form-group input[type="email"] {
    background: #fff;
    border-color: #ddd;
    color: var(--text-dark);
}

.form-group button {
    padding: 16px 40px;
}

/* Sección de Cursos */
.course-section {
    background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(10,10,10,1) 100%);
    border-top: 1px solid rgba(228, 179, 74, 0.1);
    border-bottom: 1px solid rgba(228, 179, 74, 0.1);
}

body.light-theme .course-section {
    background: linear-gradient(135deg, #fdfdfd 0%, #f7f7f7 100%);
    border-color: #eee;
}

.course-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

body.light-theme .course-card {
    background: var(--card-bg-light);
    border: 1px solid var(--card-border-light);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), #b48e53);
}

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

.course-header {
    margin-bottom: 40px;
}

.course-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.course-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--neon-white);
    margin-bottom: 15px;
}

body.light-theme .course-title {
    color: var(--text-dark);
}

.course-subtitle {
    font-size: 1.4rem;
    color: var(--accent-light);
    margin-bottom: 25px;
}

body.light-theme .course-subtitle {
    color: #555;
}

.course-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

body.light-theme .course-description {
    color: #555;
}

.course-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 25px;
    width: 220px;
    transition: var(--transition);
}

body.light-theme .benefit-card {
    background: #fff;
    border-color: #eee;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

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

body.light-theme .benefit-text {
    color: #555;
}

.course-form {
    max-width: 600px;
    margin: 50px auto 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--card-border);
}

body.light-theme .course-form {
    background: #fff;
    border-color: #eee;
}

.form-title {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.course-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

body.light-theme .course-note {
    color: #777;
}

/* Sección de Retiros */
.retreat-section {
    background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, rgba(5,5,5,0.95) 100%);
    border-top: 1px solid rgba(228, 179, 74, 0.1);
    border-bottom: 1px solid rgba(228, 179, 74, 0.1);
}

body.light-theme .retreat-section {
    background: #f9f9f9;
    border-color: #eee;
}

.retreat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 50px;
    max-width: 1000px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

body.light-theme .retreat-card {
    background: var(--card-bg-light);
    border-color: var(--card-border-light);
}

.retreat-card p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

body.light-theme .retreat-card p, body.light-theme .retreat-card li {
    color: #555;
}

.retreat-card ul {
    padding-left: 25px;
    margin: 30px 0;
}

.retreat-card li {
    margin-bottom: 15px;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.retreat-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 2px;
    background: var(--accent);
}

/* Biografía */
.bio-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.bio-text {
    flex: 2;
}

.bio-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.author-frame {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.author-img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.author-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.7;
}

.author-frame:hover .author-img {
    transform: scale(1.05);
}

.bio-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

body.light-theme .bio-card {
    background: var(--card-bg-light);
    border-color: var(--card-border-light);
}

.bio-card p {
    margin-bottom: 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

body.light-theme .bio-card p, body.light-theme .bio-card h4, body.light-theme .bio-card li {
    color: #555;
}

.bio-card h4 {
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    margin-top: 20px;
    margin-bottom: 10px;
}

.bio-card ul {
    list-style: none;
    padding-left: 0;
}

.bio-card li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.bio-card li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
}

.bio-highlight {
    display: block;
    padding: 25px;
    background: rgba(228, 179, 74, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
    font-style: italic;
    color: var(--accent-light);
    font-size: 1.2rem;
    line-height: 1.7;
}

body.light-theme .bio-highlight {
    background: #fff5e1;
    color: #8c6b2f;
}

/* Bot Prompt */
.footer-bot-prompt {
    text-align: center;
    margin-bottom: 60px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-top: 1px solid var(--card-border);
}

.footer-bot-prompt p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0;
}

.footer-bot-prompt strong {
    color: var(--accent);
}

.footer-bot-prompt i {
    margin-right: 10px;
    color: var(--accent);
}

body.light-theme .footer-bot-prompt {
    background: #fff;
    border-color: #eee;
}

body.light-theme .footer-bot-prompt p {
    color: #555;
}

/* Footer */
footer {
    background: rgba(5, 5, 5, 0.98);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(228, 179, 74, 0.1);
}

body.light-theme footer {
    background: #e9e9e9;
    border-top: 1px solid #ddd;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    width: 70px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

body.light-theme .footer-logo p {
    color: #555;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
    font-size: 1.2rem;
    transition: var(--transition);
}

body.light-theme .social-icon {
    background: #fff;
}

.social-icon:hover {
    background: var(--accent);
    color: var(--deep-blue);
    transform: translateY(-5px);
}

body.light-theme .social-icon:hover {
    color: #fff;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    list-style: none;
    flex-grow: 1;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

body.light-theme .footer-col ul li a {
    color: #555;
}

.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 0.95rem;
}

body.light-theme .copyright {
    border-top: 1px solid #ddd;
    color: #666;
}

/* Animaciones y efectos */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
    .purchase-options {
        gap: 20px;
        max-width: 500px;
    }
    .purchase-card {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-author {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
        margin-top: 50px;
    }
    
    .bio-content {
        flex-direction: column;
    }
    
    .bio-image {
        order: -1;
        margin-bottom: 50px;
    }
    
    .form-group {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-right {
        gap: 15px;
    }
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 30px;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(228, 179, 74, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out;
    }
    
    body.light-theme nav {
        background: rgba(255, 255, 255, 0.98);
        border-bottom-color: #eee;
    }
    
    nav.show {
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .course-card, .retreat-card, .lead-magnet-box {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .course-benefits {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .book-cover {
        max-width: 280px;
    }
}

/* Distributors Section */
.distributors-section {
    background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(10,10,10,1) 100%);
    border-top: 1px solid rgba(228, 179, 74, 0.1);
    border-bottom: 1px solid rgba(228, 179, 74, 0.1);
}

body.light-theme .distributors-section {
    background: linear-gradient(135deg, #fdfdfd 0%, #f7f7f7 100%);
    border-color: #eee;
}

/* Accordion Styles for Distributors */
.accordion-container {
    margin-bottom: 50px;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
}

body.light-theme .accordion-item {
    border-color: #ddd;
}

.accordion-button {
    width: 100%;
    padding: 20px;
    background: var(--card-bg);
    border: none;
    color: var(--text-light);
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

body.light-theme .accordion-button {
    background: var(--card-bg-light);
    color: var(--text-dark);
}

.accordion-button:hover {
    background: rgba(228, 179, 74, 0.1);
}

.accordion-button i {
    transition: transform 0.3s ease;
}

.accordion-button.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

body.light-theme .accordion-content {
    background: #f9f9f9;
}

.accordion-content.show {
    max-height: 500px;
}

.distributors-list {
    list-style: none;
    padding: 20px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.distributors-list.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.distributors-list li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

body.light-theme .distributors-list li {
    color: #555;
}

/* Video Styles */
video {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Form Message Styles */
.form-message {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #F44336;
    color: #F44336;
}
