@charset "utf-8";
/* CSS Document */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text);
    overflow-x: hidden;
}
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


@media (max-width: 768px) {
    body { background-attachment: scroll; }
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 20px;
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

#banner-publicidad {
    background: var(--primary);
    color: white;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 600;
    position: fixed;
    bottom: 20px;
    left: 20px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    z-index: 9999;
}

#banner-publicidad:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    #banner-publicidad {
        left: auto;
        right: 20px;
        bottom: 20px;
        font-size: 14px;
        padding: 10px 20px;
    }
}

#cookie-banner {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: none;
    z-index: 9999;
    border-top: 3px solid var(--primary);
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    z-index: 10000;
}

.cookie-modal-content {
    background: #ffffff;
    width: 420px;
    margin: 8% auto;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}

.cookie-option {
    margin: 15px 0;
}

.modal-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.btn-secondary {
    padding: 10px 20px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-weight: 600;
    background: #e5e7eb;
}


