/* Estilos para el modal */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(5px);
transition: all 0.3s ease;
}

.modal-content {
background-color: #1c1c1c;
margin: 5% auto;
padding: 20px;
border: 2px solid #ffd700;
border-radius: 15px;
width: 80%;
max-width: 800px;
box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
animation: modalFadeIn 0.4s;
}

@keyframes modalFadeIn {
from {
    opacity: 0;
    transform: translateY(-50px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.close-modal {
color: #ffd700;
float: right;
font-size: 28px;
font-weight: bold;
transition: all 0.3s;
}

.close-modal:hover,
.close-modal:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
transform: rotate(90deg);
}

.modal-header {
display: flex;
align-items: center;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid #333;
}

.modal-header img {
width: 100px;
height: auto;
margin-right: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.modal-header h2 {
color: #ffd700;
margin: 0;
font-family: "Orbitron", sans-serif;
font-size: 2rem;
}

.modal-body {
padding: 10px 0;
}

.modal-info {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}

.info-section {
margin-bottom: 20px;
}

.info-section h3 {
color: #ffd700;
margin-bottom: 10px;
font-size: 1.2rem;
}

.info-section p {
color: #fff;
font-size: 1rem;
line-height: 1.5;
}

.pedir-btn {
display: block;
width: 100%;
padding: 12px;
background-color: #ffd700;
color: #1c1c1c;
border: none;
border-radius: 8px;
font-size: 1.2rem;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
margin-top: 20px;
font-family: "Orbitron", sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
}

.pedir-btn:hover {
background-color: #ffcc00;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
.modal-content {
    width: 95%;
    margin: 10% auto;
}

.modal-header {
    flex-direction: column;
    text-align: center;
}

.modal-header img {
    margin-right: 0;
    margin-bottom: 15px;
}

.modal-info {
    flex-direction: column;
}
}
