/* RESPONSIVE */
@media (min-width: 768px) {
    .modal-body {
        flex-direction: row;
    }

    .modal-img-container {
        width: 40%;
        padding: 30px;
    }

    .modal-info {
        width: 60%;
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }

    .modal-img {
        max-width: 220px;
        height: 220px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .modal-badge {
        top: 15px;
        right: 20px;
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

/* Deja tu comentario */
#comentarios table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 2px solid #21caf5;
}

#comentarios td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

#comentarios tr:hover {
    background-color: #f1f1f1;
}

#comentarios input, #comentarios textarea, #comentarios select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: pink;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

input[type="submit"]:hover {
    background-color: palevioletred;
}

/* Footer */
.euphoria-footer {
    background: linear-gradient(145deg, #A66DD4, #364F6B);
    color: white;
    padding: 1.5rem 5%;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.footer-logo {
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.footer-tagline {
    font-size: 0.85rem;
    margin-top: 0.3rem;
    color: #e5a15d;
    font-weight: 500;
}

/* Social Section */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-title {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: #e5a15d;
}

.social-icons {
    display: flex;
    gap: 0.9rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #e5a15d;
    overflow: hidden;
    padding: 2px;
}

.social-icon:hover {
    border-color: #e5a15d;
    box-shadow: 0 6px 18px rgba(243, 156, 18, 0.5);
    transform: scale(1.1) rotate(3deg);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.social-text {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.9;
    text-align: center;
}

/* Contact Section */
.footer-contact {
    min-width: 180px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #e5a15d;
    font-size: 0.9rem;
}

/* QR Section */
.footer-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-container img {
    width: 80px;
    height: 80px;
    border: 2px solid #e5a15d;
    border-radius: 8px;
    padding: 3px;
    background: white;
    transition: transform 0.3s ease;
}

.qr-container img:hover {
    transform: scale(1.05);
}

.qr-text {
    font-size: 0.7rem;
    margin-top: 0.3rem;
    text-align: center;
    color: #e5a15d;
}

/* Legal Section */
.footer-legal {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
    width: 100%;
}

.footer-legal a {
    color: #e5a15d;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgb(49, 6, 65);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        justify-content: center;
        gap: 2rem;
    }

    .footer-brand,
    .footer-social,
    .footer-contact,
    .footer-qr {
        flex: 1 1 40%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-brand,
    .footer-social,
    .footer-contact,
    .footer-qr {
        flex: 1 1 100%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {

    .footer-tagline {
        font-size: 0.8rem;
    }
}