* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Navbar Fijo */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 3rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav {
    gap: 30px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

.btn-login {
    border: 2px solid #6BB645;
    color: #6BB645;
    padding: 8px 30px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-register {
    background: #6BB645;
    color: white;
    padding: 8px 30px;
    border-radius: 25px;
    font-weight: 600;
}

/* Asistente Virtual Fijo */
.virtual-assistant {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 999;
    background: #6BB645;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(107, 182, 69, 0.4);
}

.virtual-assistant img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Sections con Opacidad */
section {
    min-height: 100vh;
    opacity: 0.3;
    transition: opacity 0.8s ease;
    position: relative;
}

section.active {
    opacity: 1;
}

/* Sección 1 - Hero Principal */
.hero-main {
    background-size: cover;
    background-position: center;
    padding-top: 150px;
    color: white;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 800;
    color: #6BB645;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-main-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.hero-main-subtitle .underline {
    text-decoration: underline;
    text-decoration-color: #f4e04d;
    text-decoration-thickness: 4px;
}

.hero-main-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-primary-custom {
    background: #6BB645;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    margin-right: 15px;
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid white;
}

/* Animación - Drop Down */
.drop-animation {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease;
}

.drop-animation.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Sección 2 - Práctica */
.practice-section {
    background: white;
    padding: 100px 0;
}

.practice-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.practice-left {
    flex: 1;
    position: relative;
}

.student-image-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.student-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-badge {
    position: absolute;
    background: #6BB645;
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-badge.top {
    top: 100px;
    right: -50px;
}

.feature-badge.bottom {
    bottom: 150px;
    right: -50px;
}

.feature-badge.left {
    bottom: 50px;
    left: -50px;
}

.practice-right {
    flex: 1;
}

/* Animación - Slide Right */
.slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.2s ease;
}

.slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.practice-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.practice-title-green {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6BB645;
    margin-bottom: 30px;
}

.practice-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.vr-image {
    width: 100%;
    border-radius: 20px;
    margin-top: 30px;
}

/* Sección 3 - Instructores */
.instructors-section {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.instructors-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.instructors-title-green {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6BB645;
    position: relative;
    display: inline-block;
}

.instructors-title-green::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #f4e04d;
}

.instructors-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.instructors-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 60px;
}

.instructor-card {
    text-align: center;
}

.instructor-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #e0e0e0;
}

.instructor-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.instructor-quote {
    font-size: 1rem;
    color: #666;
    max-width: 280px;
    margin: 0 auto;
    position: relative;
}

.quote-underline {
    width: 80%;
    height: 4px;
    background: #f4e04d;
    margin: 15px auto 0;
}

/* Sección 4 - Planes */
.pricing-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.pricing-tab {
    background: white;
    padding: 15px 60px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2rem;
}

.pricing-tab:first-child {
    border-radius: 50px 0 0 50px;
}

.pricing-tab:last-child {
    border-radius: 0 50px 50px 0;
}

.pricing-tab.active {
    background: #6BB645;
    color: white;
    border-color: #6BB645;
}

.pricing-cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: #e8e8e8;
    padding: 50px 40px;
    flex: 1;
    max-width: 400px;
}

.pricing-card:first-child {
    border-radius: 20px 0 0 20px;
}

.pricing-card:last-child {
    border-radius: 0 20px 20px 0;
}

.pricing-card.featured {
    background: #d0d0d0;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.pricing-name {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-price-box {
    background: #6BB645;
    color: white;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
}

.pricing-period {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    color: #6BB645;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-features li.disabled::before {
    content: '✗';
    color: #dc3545;
}

.btn-purchase {
    background: #6BB645;
    color: white;
    padding: 15px;
    border-radius: 30px;
    width: 100%;
    border: none;
    font-weight: 600;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Sección 5 - Aliados */
.partners-section {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.partner-logo img {
    height: 120px;
    object-fit: contain;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: #999;
    margin-bottom: 20px;
}

.footer-email {
    color: #6BB645;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #6BB645;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    color: #999;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .practice-content {
        flex-direction: column;
    }
    
    .pricing-cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        border-radius: 20px !important;
        margin: 10px 0;
    }
    
    .instructors-grid {
        flex-direction: column;
        gap: 40px;
    }
} 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Navbar Fijo */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 3rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav {
    gap: 30px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

.btn-login {
    border: 2px solid #6BB645;
    color: #6BB645;
    padding: 8px 30px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-register {
    background: #6BB645;
    color: white;
    padding: 8px 30px;
    border-radius: 25px;
    font-weight: 600;
}

/* Asistente Virtual Fijo */
.virtual-assistant {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 999;
    background: #6BB645;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(107, 182, 69, 0.4);
}

.virtual-assistant img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Sections con Opacidad */
section {
    min-height: 100vh;
    opacity: 0.3;
    transition: opacity 0.8s ease;
    position: relative;
}

section.active {
    opacity: 1;
}

/* Sección 1 - Hero Principal */
.hero-main {
    background-size: cover;
    background-position: center;
    padding-top: 150px;
    color: white;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 800;
    color: #6BB645;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-main-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.hero-main-subtitle .underline {
    text-decoration: underline;
    text-decoration-color: #f4e04d;
    text-decoration-thickness: 4px;
}

.hero-main-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-primary-custom {
    background: #6BB645;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    margin-right: 15px;
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid white;
}

/* Animación - Drop Down */
.drop-animation {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease;
}

.drop-animation.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Sección 2 - Práctica */
.practice-section {
    background: white;
    padding: 100px 0;
}

.practice-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.practice-left {
    flex: 1;
    position: relative;
}

.student-image-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.student-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-badge {
    position: absolute;
    background: #6BB645;
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-badge.top {
    top: 100px;
    right: -50px;
}

.feature-badge.bottom {
    bottom: 150px;
    right: -50px;
}

.feature-badge.left {
    bottom: 50px;
    left: -50px;
}

.practice-right {
    flex: 1;
}

/* Animación - Slide Right */
.slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.2s ease;
}

.slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.practice-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.practice-title-green {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6BB645;
    margin-bottom: 30px;
}

.practice-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.vr-image {
    width: 100%;
    border-radius: 20px;
    margin-top: 30px;
}

/* Sección 3 - Instructores */
.instructors-section {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.instructors-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.instructors-title-green {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6BB645;
    position: relative;
    display: inline-block;
}

.instructors-title-green::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #f4e04d;
}

.instructors-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.instructors-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 60px;
}

.instructor-card {
    text-align: center;
}

.instructor-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #e0e0e0;
}

.instructor-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.instructor-quote {
    font-size: 1rem;
    color: #666;
    max-width: 280px;
    margin: 0 auto;
    position: relative;
}

.quote-underline {
    width: 80%;
    height: 4px;
    background: #f4e04d;
    margin: 15px auto 0;
}

/* Sección 4 - Planes */
.pricing-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.pricing-tab {
    background: white;
    padding: 15px 60px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2rem;
}

.pricing-tab:first-child {
    border-radius: 50px 0 0 50px;
}

.pricing-tab:last-child {
    border-radius: 0 50px 50px 0;
}

.pricing-tab.active {
    background: #6BB645;
    color: white;
    border-color: #6BB645;
}

.pricing-cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: #e8e8e8;
    padding: 50px 40px;
    flex: 1;
    max-width: 400px;
}

.pricing-card:first-child {
    border-radius: 20px 0 0 20px;
}

.pricing-card:last-child {
    border-radius: 0 20px 20px 0;
}

.pricing-card.featured {
    background: #d0d0d0;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.pricing-name {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-price-box {
    background: #6BB645;
    color: white;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
}

.pricing-period {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    color: #6BB645;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-features li.disabled::before {
    content: '✗';
    color: #dc3545;
}

.btn-purchase {
    background: #6BB645;
    color: white;
    padding: 15px;
    border-radius: 30px;
    width: 100%;
    border: none;
    font-weight: 600;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Sección 5 - Aliados */
.partners-section {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.partner-logo img {
    height: 120px;
    object-fit: contain;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: #999;
    margin-bottom: 20px;
}

.footer-email {
    color: #6BB645;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #6BB645;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    color: #999;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .practice-content {
        flex-direction: column;
    }
    
    .pricing-cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        border-radius: 20px !important;
        margin: 10px 0;
    }
    
    .instructors-grid {
        flex-direction: column;
        gap: 40px;
    }
}
