/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #141516;
    color: #ffffff;
    line-height: 1.5;
    min-height: 100vh;
}

.app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#cover-landing {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.container {
    position: relative;
    margin: 0 auto;
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 400px;
    flex-direction: column;
}

@media (min-width: 768px) {
    .container {
        max-width: 100%;
    }
}

/* Header */
.header {
    position: relative;
    display: flex;
    height: 60px;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #2a2a2a;
    padding: 12px 16px;
    background: rgba(20, 21, 22, 0.95);
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .header {
        height: 64px;
    }
}

.header-content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 84px;
    height: 30px;
}

.menu-icon {
    width: 24px;
    height: 24px;
}

/* Brand Logo Styles - Diseño Moderno y Atractivo */
.logo-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.brand-logo {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.5px;
    text-transform: none;
    position: relative;
    background: linear-gradient(135deg, #c0d475 0%, #a8c157 25%, #90ae39 50%, #7a9b1b 75%, #658800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 10px rgba(192, 212, 117, 0.2));
    }
    100% {
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(192, 212, 117, 0.4));
    }
}

.brand-logo:hover {
    background: linear-gradient(135deg, #d4e685 0%, #c0d475 25%, #a8c157 50%, #90ae39 75%, #7a9b1b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 25px rgba(192, 212, 117, 0.6));
    animation: none;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(192, 212, 117, 0.1), rgba(168, 193, 87, 0.1));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-logo:hover::before {
    opacity: 1;
}

.logo-underline {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #c0d475 20%, #a8c157 50%, #c0d475 80%, transparent 100%);
    margin: 4px auto 0;
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo-underline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.logo-container:hover .logo-underline {
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #d4e685 20%, #c0d475 50%, #d4e685 80%, transparent 100%);
    box-shadow: 0 0 15px rgba(192, 212, 117, 0.5);
}

.logo-container:hover .logo-underline::before {
    left: 100%;
}

/* Responsive Design */
@media (min-width: 768px) {
    .brand-logo {
        font-size: 2.1rem;
        letter-spacing: -0.8px;
    }
    
    .logo-underline {
        width: 80px;
        height: 3px;
    }
    
    .logo-container:hover .logo-underline {
        width: 110px;
        height: 4px;
    }
}

@media (min-width: 1024px) {
    .brand-logo {
        font-size: 2.3rem;
        letter-spacing: -1px;
    }
    
    .logo-underline {
        width: 90px;
    }
    
    .logo-container:hover .logo-underline {
        width: 120px;
    }
}

@media (max-width: 479px) {
    .brand-logo {
        font-size: 1.5rem;
        letter-spacing: -0.3px;
    }
    
    .logo-underline {
        width: 50px;
        height: 2px;
    }
    
    .logo-container:hover .logo-underline {
        width: 70px;
        height: 2px;
    }
}

/* Main Content */
.main-content {
    flex: 1;
    width: 100%;
}

.content-container {
    margin: 0 auto;
    max-width: 400px;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .content-container {
        max-width: 580px;
    }
}

/* Feature Badges */
.badges {
    margin: 24px 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
}

.badge {
    display: flex;
    width: 100%;
    max-width: 250px;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    border: 1px solid #c0d475;
    padding: 8px;
}

.badge-icon {
    aspect-ratio: 1;
    height: 20px;
    width: 20px;
    min-width: 20px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-size: 8px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: -0.032px;
    color: #c0d475;
}

@media (min-width: 768px) {
    .badge-title {
        font-size: 10px;
    }
}

@media (min-width: 1024px) {
    .badge-title {
        font-size: 12px;
    }
}

.badge-desc {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
    color: #c0d475;
}

@media (min-width: 768px) {
    .badge-desc {
        font-size: 12px;
    }
}

@media (min-width: 1024px) {
    .badge-desc {
        font-size: 14px;
    }
}

/* Main Image */
.main-image {
    margin: 0 auto 24px auto;
    height: auto;
    min-height: 235px;
    width: calc(100% - 40px);
    max-width: 540px;
    display: block;
    object-fit: contain;
}

/* Title Section */
.title-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    margin-bottom: 32px;
}

.main-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 36px;
    color: #ffffff;
}

.subtitle {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.32px;
    color: #a0a0a0;
}

/* Action Buttons */
.action-buttons {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
}

.action-btn {
    position: relative;
    width: 100%;
    border-radius: 8px;
    background-color: #c0d475;
    padding: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0px 8px 24px 0px rgba(192, 212, 117, 0.3);
}

.action-btn:hover {
    background-color: #b5c968;
    transform: translateY(-1px);
    box-shadow: 0px 12px 28px 0px rgba(192, 212, 117, 0.4);
}

.action-btn:active {
    transform: translateY(0);
    box-shadow: 0px 4px 16px 0px rgba(192, 212, 117, 0.3);
}

.action-btn:disabled {
    background-color: #6b7a3d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #141516;
}

.btn-arrow {
    width: 21px;
    height: 20px;
}

/* Footer */
.footer {
    padding: 24px 16px 16px 16px;
}

.footer-content {
    margin: 0 auto;
    max-width: 312px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-text {
    word-break: break-words;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #a0a0a0;
    line-height: 1.4;
}

.legal-link {
    color: #a0a0a0;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: #c0d475;
}

.company-info {
    min-height: 24px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #a0a0a0;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .container {
        max-width: 100%;
    }

    .content-container {
        max-width: 580px;
    }

    .main-image {
        width: 540px;
        height: 381px;
    }

    .action-buttons {
        max-width: 540px;
        margin: 32px auto 0 auto;
    }
}

/* Additional mobile optimizations */
@media (max-width: 479px) {
    .badges {
        flex-direction: column;
        gap: 8px;
    }

    .badge {
        max-width: 100%;
    }

    .main-title {
        font-size: 24px;
        line-height: 32px;
    }

    .subtitle {
        font-size: 14px;
    }
}

/* Dark theme enhancements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, #1a1b1c 0%, #0f1011 100%);
    z-index: -1;
}
