:root {
    --primary-color: #FF914C;
    --secondary-color: #3B5296;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

.landing-body {
    background-color: var(--white);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: block !important;
    height: auto !important;
}

/* Corrección de contenedores estrechos para la Landing */
.landing-body main.container {
    max-width: 100% !important;
    padding: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    margin-top: 0 !important;
}

.landing-body .container {
    max-width: 1300px !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 20px !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    margin-top: 0 !important;
    padding: 60px 0 100px 0 !important;
    overflow: visible;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.hero-image {
    max-width: 110%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-cta {
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-todate {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary-todate:hover {
    background-color: #e96818;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 145, 76, 0.4);
    color: white;
}

.btn-secondary-todate {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.btn-secondary-todate:hover {
    background-color: #2c3e72;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 82, 150, 0.4);
    color: white;
}

/* Features */
.features-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 60px;
}

.feature-card {
    padding: 40px;
    border-radius: 20px;
    background: white;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

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

.feature-title {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Privacy Section */
.privacy-highlight {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0;
    border-radius: 30px;
    margin: 40px 0;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-text {
    font-size: 0.9rem;
    color: #555;
    max-width: 800px;
    margin-bottom: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-image {
        margin-top: 50px;
        max-width: 100%;
    }
}