@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

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

body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.3px;
}

header {
    background-color: #252525;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 3px solid #D4AF37;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    flex: 1;
    text-align: center;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
}

.acceder-btn {
    background-color: #D4AF37;
    color: #000000;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.acceder-btn:hover {
    background-color: #E5C158;
    transform: scale(1.05);
}

.highlight {
    color: #D4AF37;
    font-weight: 700;
}

main {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

section {
    margin-bottom: 60px;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

p {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 300;
    line-height: 1.8;
    color: #e0e0e0;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #252525 0%, #2d2d2d 100%);
    padding: 30px;
    border-left: 5px solid #D4AF37;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    color: #D4AF37;
    margin-bottom: 12px;
    font-size: 1.3em;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95em;
    line-height: 1.7;
}

footer {
    background-color: #252525;
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 3px solid #D4AF37;
}

footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-size: 0.95em;
    text-align: center;
}

a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #E5C158;
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #252525;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #D4AF37;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    animation: slideIn 0.3s ease;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #D4AF37;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #E5C158;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 30px;
}

.modal-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.option-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #D4AF37;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.option-card h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.option-card p {
    text-align: center;
    font-size: 0.9em;
}

.option-btn {
    background-color: #D4AF37;
    color: #000000;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.option-btn:hover {
    background-color: #E5C158;
    transform: scale(1.05);
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

section {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
    }

    h1 {
        font-size: 2.5em;
    }

    .modal-options {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 25px;
    }
}
