@import url('https://fonts.googleapis.com/css2?family=Yrsa:wght@300;400;500;600;700&family=Yatra+One&display=swap');

/* Ultra-minimalist design - pure white/transparent only */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Yrsa', Georgia, serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    height: 100vh;
}

/* Video Background */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 0.7;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Overlay */
.content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.content-overlay > * {
    pointer-events: auto;
}

/* Logo and Navigation */
.logo-top-left {
    position: absolute;
    top: 30px;
    left: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

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

.logo {
    height: 35px;
    opacity: 0.9;
}

.company-name {
    color: #ffffff;
    font-family: 'Yatra One', cursive;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.top-nav {
    display: flex;
    gap: 8px;
    margin-left: 0;
}

.top-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    padding: 9.6px 19.2px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.020), rgba(255, 255, 255, 0.010));
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.020),
                inset 0 1px 0 rgba(255, 255, 255, 0.042),
                inset 0 -1px 0 rgba(255, 255, 255, 0.010);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.top-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.020), transparent);
    transition: left 0.6s ease;
}

.top-nav a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.031), rgba(255, 255, 255, 0.017));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.031),
                inset 0 2px 0 rgba(255, 255, 255, 0.062),
                inset 0 -1px 0 rgba(255, 255, 255, 0.020),
                0 0 30px rgba(255, 255, 255, 0.011);
    transform: translateY(-2px) scale(1.02);
}

.top-nav a:hover::before {
    left: 100%;
}

/* Legal Links */
.legal-links {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    text-align: right;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.0075), rgba(255, 255, 255, 0.003));
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.012),
                inset 0 1px 0 rgba(255, 255, 255, 0.015);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.legal-links a:hover {
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.006));
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.018),
                inset 0 1px 0 rgba(255, 255, 255, 0.0225),
                0 0 20px rgba(255, 255, 255, 0.0045);
    transform: translateY(-1px) scale(1.01);
}

/* Modal System */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.675);
    backdrop-filter: blur(15px);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: rgba(0, 0, 0, 0.7125);
    margin: 5% auto;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    border-radius: 0;
}

.modal-body {
    color: #ffffff;
}

.modal-body h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -1px;
}

.modal-body h2 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 400;
    margin: 40px 0 20px 0;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

.modal-body h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.modal-body p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 300;
}

.close {
    color: rgba(255, 255, 255, 0.7);
    float: right;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffffff;
}

/* Insights Features */
.insights-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.feature-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
        line-height: 1.5;
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 95vw;
    }
    
    .logo-top-left {
        top: 15px;
        left: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .logo-brand {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .company-name {
        font-size: 1rem;
        display: block; /* Mostrar en móvil */
    }
    
    .top-nav {
        margin-left: 0;
        gap: 2px;
        flex-wrap: wrap;
        max-width: calc(100vw - 30px);
    }
    
    .top-nav a {
        font-size: 1rem;
        padding: 4px 8px;
        white-space: nowrap;
    }
    
    .legal-links {
        bottom: 15px;
        right: 15px;
        gap: 6px;
    }
    
    .legal-links a {
        font-size: 0.8rem;
    }
    
    .legal-links div {
        font-size: 0.8rem !important;
        margin-top: 8px !important;
    }
    
    .modal-content {
        margin: 3% auto;
        padding: 30px 20px;
        width: 96%;
        max-width: none;
    }
    
    .modal-body h1 {
        font-size: 1.9rem;
    }
    
    .modal-body h2 {
        font-size: 1.2rem;
    }
    
    .modal-body h3 {
        font-size: 1.05rem;
    }
    
    .modal-body p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-content {
        padding: 0 15px;
        max-width: 90vw;
    }
    
    .logo-top-left {
        top: 10px;
        left: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .logo-brand {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .logo {
        height: 32px;
    }
    
    .company-name {
        font-size: 0.9rem;
        display: block; /* Mostrar en móvil pequeño */
    }
    
    .top-nav {
        gap: 1px;
        margin-left: 0;
    }
    
    .top-nav a {
        font-size: 0.9rem;
        padding: 3px 6px;
        letter-spacing: 0.3px;
    }
    
    .legal-links {
        bottom: 10px;
        right: 10px;
        gap: 4px;
    }
    
    .legal-links a {
        font-size: 0.75rem;
    }
    
    .legal-links div {
        font-size: 0.75rem !important;
        margin-top: 6px !important;
    }
    
    .modal-content {
        margin: 1% auto;
        padding: 25px 15px;
        width: 98%;
    }
    
    .modal-body h1 {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }
    
    .modal-body h2 {
        font-size: 1.1rem;
    }
    
    .modal-body h3 {
        font-size: 1rem;
    }
    
    .modal-body p {
        font-size: 1rem;
        line-height: 1.6;
    }
}