:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --dark-color: #000000;
    --light-color: #F9FAFB;
    --border-color: #E5E7EB;
    --text-muted: #6B7280;
    --primary-dark: #141414;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-color-light: rgba(0, 0, 0, 0.08);
    --shadow-color-dark: rgba(0, 0, 0, 0.15);
    --primary-rgba-light: rgba(0, 0, 0, 0.02);
    --primary-rgba-medium: rgba(0, 0, 0, 0.05);
    --primary-rgba-border: rgba(0, 0, 0, 0.1);
    --primary-rgba-border-hover: rgba(0, 0, 0, 0.2);
    --primary-rgba-shadow: rgba(0, 0, 0, 0.3);
    --primary-rgba-shadow-hover: rgba(0, 0, 0, 0.4);
    --primary-focus-shadow: rgba(0, 0, 0, 0.25);
    --footer-divider-color: #dee2e6;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

/* Navbar */
.navbar-landing {
    background: white;
    box-shadow: 0 2px 10px var(--shadow-color-light);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-landing.scrolled {
    box-shadow: 0 2px 20px var(--shadow-color);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.navbar-brand i {
    margin-right: 10px;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-register-nav {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-register-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

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

@media (max-width: 768px) {
    .hero {
        padding: 110px 0 50px;
        text-align: center;
    }
    
    .hero h1 {
        margin-top: 0;
        padding-top: 0;
    }
    
    .hero-content {
        text-align: center;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920&q=80') center -70px/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-primary {
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.5;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}

/* Hero Buttons Container */
.hero-buttons {
    gap: 1.5rem !important;
}

/* Hero Features */
.hero-features {
    gap: 2rem !important;
}

@media (max-width: 768px) {
    .hero-features {
        gap: 1.5rem !important;
    }
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--primary-rgba-shadow);
    color: var(--primary-color);
    text-decoration: none;
}

/* Hero Card Styles */
.hero-info-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.hero-card-title {
    color: var(--dark-color) !important;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem !important;
}

.hero-steps-list {
    gap: 1.5rem;
}

.hero-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}

.hero-step-content {
    flex: 1;
}

.hero-step-content h6 {
    color: var(--dark-color) !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hero-step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Hero Why Card - Nuevo Diseño Mejorado */
.hero-why-card {
    background: white;
    border: 1px solid var(--primary-rgba-border) !important;
    transition: all 0.3s ease;
}

.hero-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-color-dark) !important;
    border-color: var(--primary-rgba-border-hover) !important;
}

.hero-why-title {
    color: var(--dark-color) !important;
    font-size: 1.4rem;
    margin-bottom: 1rem !important;
    position: relative;
    padding-bottom: 0.5rem;
}

.hero-why-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.hero-why-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-why-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    background: var(--primary-rgba-light);
    transition: all 0.3s ease;
}

.hero-why-item:hover {
    background: var(--primary-rgba-medium);
    transform: translateX(5px);
}

.hero-why-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--primary-rgba-shadow);
    transition: all 0.3s ease;
}

.hero-why-item:hover .hero-why-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px var(--primary-rgba-shadow-hover);
}

.hero-why-content {
    flex: 1;
}

.hero-why-content h6 {
    color: var(--dark-color) !important;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.hero-why-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Hero Features Section */
.hero-features-container {
    gap: 2.5rem !important;
}

.hero-feature-item {
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    transform: translateY(-3px);
}

.hero-feature-icon {
    color: white !important;
    transition: all 0.3s ease;
}

.hero-feature-item:hover .hero-feature-icon {
    transform: scale(1.1);
    opacity: 0.9;
}

.hero-features-desktop {
    justify-content: flex-start !important;
}

@media (max-width: 768px) {
    .hero-features-container {
        gap: 1.5rem !important;
    }
    
    .hero-features-desktop {
        justify-content: center !important;
    }
    
    .hero-why-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-why-item {
        gap: 0.5rem;
        padding: 0.6rem;
    }
    
    .hero-why-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 1rem;
    }
    
    .hero-why-content h6 {
        font-size: 0.95rem;
    }
    
    .hero-why-content p {
        font-size: 0.8rem;
    }
}

/* Section Styles */
.section {
    padding: 80px 0;
}

/* Reducir padding para secciones específicas */
#incluye.section {
    padding: 50px 0;
}

#para-quien.section {
    padding: 50px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

/* Reducir margin del título en secciones específicas */
#incluye .section-title,
#para-quien .section-title {
    margin-bottom: 2rem;
}

/* How It Works */
.how-it-works {
    background: var(--light-color);
    padding: 50px 0 !important;
}

.step-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 1px 3px var(--shadow-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-color-dark);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 600;
}

.step-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* What's Included */
.feature-item {
    padding: 25px;
    margin-bottom: 20px;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 1px 3px var(--shadow-color);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

/* For Whom - Nuevo Diseño */
.for-whom {
    background: var(--light-color);
}

.for-whom-card {
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow-color-light);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.for-whom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.for-whom-card-success {
    background: var(--primary-color);
}

.for-whom-card-success:hover {
    background: var(--primary-color);
    opacity: 0.9;
}

.for-whom-card-danger {
    background: var(--secondary-color);
}

.for-whom-card-danger:hover {
    background: var(--secondary-color);
    opacity: 0.9;
}

.for-whom-card-header {
    padding: 2rem 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.for-whom-card-success .for-whom-card-header {
    background: transparent;
}

.for-whom-card-danger .for-whom-card-header {
    background: transparent;
}

.for-whom-card-header i {
    font-size: 2rem;
    color: white !important;
}

.for-whom-card-success .for-whom-card-header i {
    color: white !important;
}

.for-whom-card-danger .for-whom-card-header i {
    color: white !important;
}

.for-whom-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
}

.for-whom-card-body {
    padding: 1.5rem 2rem 2rem;
}

.for-whom-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: white !important;
}

.for-whom-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
    color: white !important;
}

.for-whom-card-success .for-whom-item i {
    color: white !important;
}

.for-whom-card-danger .for-whom-item i {
    color: white !important;
}

.for-whom-item span {
    line-height: 1.6;
    color: white !important;
}

@media (max-width: 768px) {
    .for-whom-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .for-whom-card-header h3 {
        font-size: 1.3rem;
    }
    
    .for-whom-card-body {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .for-whom-item {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }
}

/* Connect Main Section - Nuevo Diseño */
.connect-main-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

.connect-main-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white !important;
}

.connect-main-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.connect-main-benefits {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0;
}

.connect-main-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    flex: 1;
    min-width: 200px;
}

.connect-main-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.connect-main-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white !important;
}

.connect-main-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

.connect-main-btn {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .connect-main-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .connect-main-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .connect-main-benefits {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .connect-main-item {
        gap: 0.6rem;
        padding: 0.5rem;
        min-width: 100%;
    }
    
    .connect-main-item i {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1.2rem;
    }
    
    .connect-main-item h5 {
        font-size: 1rem;
    }
    
    .connect-main-item p {
        font-size: 0.85rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer Styles */
.footer-padding {
    padding: 3rem 0 2rem 0;
    margin-top: 0;
}

.footer-brand-size {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer-text-line-height {
    line-height: 1.6;
}

.footer-social-icons {
    display: flex;
}

.footer-social-icons > a {
    margin-right: 1.5rem;
}

.footer-social-icons > a:last-child {
    margin-right: 0;
}

.footer-social-icon {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social-icon:hover {
    color: var(--primary-color);
}

.footer-bottom-links {
    display: flex;
}

.footer-bottom-links > a {
    margin-right: 1.5rem;
}

.footer-bottom-links > a:last-child {
    margin-right: 0;
}

.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-heading {
    color: var(--dark-color);
    font-weight: 700;
}

.footer-divider {
    border-color: var(--footer-divider-color);
    opacity: 0.3;
}

/* Footer Mobile - Más compacto */
@media (max-width: 768px) {
    .footer-padding {
        padding: 2rem 0 0 0;
    }
    
    .footer-padding .row.g-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .footer-padding .col-lg-4,
    .footer-padding .col-lg-2,
    .footer-padding .col-md-6 {
        margin-bottom: 1.5rem;
    }
    
    .footer-padding .col-lg-4:last-child,
    .footer-padding .col-lg-2:last-child,
    .footer-padding .col-md-6:last-child {
        margin-bottom: 0;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 0.75rem !important;
    }
    
    .footer-padding ul {
        margin-bottom: 0;
    }
    
    .footer-padding ul li {
        margin-bottom: 0.5rem !important;
    }
    
    .footer-padding ul li:last-child {
        margin-bottom: 0 !important;
    }
    
    .footer-social-icons > a {
        margin-right: 1rem;
    }
    
    .footer-social-icon {
        font-size: 1.3rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-bottom-links > a {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom-links > a:last-child {
        margin-bottom: 0;
    }
    
    .footer-divider {
        margin: 1rem 0 !important;
    }
    
    .footer-padding .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-padding .col-md-6.text-md-right {
        text-align: center !important;
        margin-top: 1rem;
    }
}

/* Modal Form - Apple Style */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.modal-content {
    border-radius: 18px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 0.5px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    overflow: hidden;
}

.modal-header {
    background: transparent;
    color: #1d1d1f;
    padding: 32px 40px 24px 32px !important;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}

.modal-header .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
}

.modal-header .modal-title i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.modal-body {
    padding: 40px;
}

/* Modal Steps */
.modal-step {
    display: none;
    animation: fadeInApple 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-step.active {
    display: block;
}

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

/* Success Message - Apple Style */
.success-message {
    background: transparent;
    border-radius: 0;
    margin: 0 0 40px;
    border: none;
}

.success-icon {
    font-size: 4rem;
    color: #34c759;
    animation: scaleInApple 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 24px;
}

@keyframes scaleInApple {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-message h3 {
    color: #1d1d1f;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.success-message p {
    color: #86868b;
    font-size: 1rem;
    line-height: 1.5;
}

/* Info Card - Apple Style */
.info-card {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 32px;
    border: none;
    box-shadow: none;
    margin-bottom: 32px;
}

.info-card h5 {
    color: #1d1d1f;
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.info-card h5 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.info-card ul {
    margin: 0;
    padding: 0;
}

.info-card ul li {
    padding: 12px 0;
    color: #1d1d1f;
    font-size: 1rem;
    line-height: 1.5;
    transition: none;
}

.info-card ul li .row {
    display: flex;
    align-items: flex-start;
    margin: 0;
}

.info-card ul li .col-6 {
    display: flex;
    align-items: flex-start;
}

.info-card ul li:hover {
    transform: none;
}

.info-card ul li i {
    font-size: 1.1rem;
    margin-top: 4px;
    margin-right: 8px;
    color: #34c759;
    filter: none;
    flex-shrink: 0;
}

.info-card ul li strong {
    font-weight: 600;
    color: #1d1d1f;
}

/* Form Styles in Modal - Apple Style */
.modal-body .form-group {
    margin-bottom: 24px;
}

.modal-body .form-label {
    color: #1d1d1f;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
}

.modal-body .form-label i {
    font-size: 1rem;
    margin-right: 8px;
    color: #86868b;
}

.modal-body .form-control {
    border-radius: 10px;
    border: 1px solid #d2d2d7;
    padding: 14px 16px;
    font-size: 1rem;
    background: #ffffff;
    color: #1d1d1f;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-body .form-control::placeholder {
    color: #86868b;
}

.modal-body .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
    outline: none;
}

.modal-body .btn-submit {
    margin-top: 8px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.01em;
}

.modal-body .btn-submit:hover {
    background: var(--primary-color);
    opacity: 0.85;
    transform: none;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
    color: white;
}

.modal-body .btn-submit:active {
    transform: scale(0.98);
}

.form-control {
    border-radius: 8px;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--primary-focus-shadow);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 12px 40px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-rgba-shadow);
}

/* Newsletter Button */
.btn-newsletter {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-newsletter:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-rgba-shadow);
    color: white;
}

.btn-newsletter i {
    font-size: 1.1rem;
}

/* Images */
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--primary-rgba-shadow);
}

/* Mobile Menu */
.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.menu-toggle:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    display: block;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 8px var(--shadow-color);
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.mobile-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 8px;
}

.close-menu:hover {
    color: var(--primary-color);
}

.mobile-sidebar-body {
    padding: 15px 0;
}

.mobile-sidebar-body a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.mobile-sidebar-user-info {
    padding: 15px 25px;
    color: var(--dark-color);
}

.mobile-sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px !important;
    color: var(--dark-color) !important;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
    width: 100%;
    text-align: start;
}

.mobile-sidebar-body a:hover,
.mobile-sidebar-body a.active {
    background-color: var(--light-color);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.mobile-sidebar-body a i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.mobile-sidebar-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 15px 20px;
}

.mobile-language-selector {
    padding: 0.5rem 1rem;
}

.mobile-language-selector .btn-group {
    display: flex;
    gap: 0.25rem;
}

.mobile-language-selector .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 4px;
}

.mobile-language-selector .fi {
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    /* Botones en móvil al 100% */
    .hero .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .hero .cta-primary,
    .hero .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    /* Modal más compacto en móvil */
    .modal-mobile-compact {
        max-width: calc(100% - 20px);
    }
    
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-content {
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 20px 20px 16px;
    }
    
    .modal-header .modal-title {
        font-size: 1.25rem;
    }
    
    .modal-header .modal-title i {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 20px;
        padding-top: 0px;
    }
    
    .modal-body .form-group {
        margin-bottom: 18px;
    }
    
    .modal-body .form-label {
        font-size: 0.875rem;
        margin-bottom: 6px;
    }
    
    .modal-body .form-control {
        padding: 12px 14px;
        font-size: 0.9375rem;
    }
    
    .modal-body .btn-submit {
        padding: 12px 20px;
        font-size: 0.9375rem;
        margin-top: 8px;
    }
    
    /* Success message más compacto */
    .success-message {
        margin-bottom: 24px;
    }
    
    .success-icon {
        font-size: 3rem;
        margin-bottom: 0px;
    }
    
    .success-message h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .success-message p {
        font-size: 0.9375rem;
        margin-bottom: 0;
    }
    
    /* Info card más compacto */
    .info-card {
        padding: 20px;
        margin-bottom: -5px;
    }
    
    .info-card h5 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .info-card h5 i {
        font-size: 1.1rem;
    }
    
    .info-card ul li {
        padding: 10px 0;
        font-size: 0.9375rem;
    }
    
    .info-card ul li .row {
        margin: 0;
    }
    
    .info-card ul li .col-6 {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .info-card ul li i {
        font-size: 0.9rem;
        margin-right: 6px;
        margin-top: 2px;
    }
}

