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

/* Reset y tipografía */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
input,
textarea,
span, 
button,
label {
    font-family: "Poppins", sans-serif;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

option{
    background: #4b367d;
}

/* Utilidades */
.c2 { 
    filter: hue-rotate(35deg);
}

.check {
    font-size: 0.95rem;
    color: white
}

.check-subtitle {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: white
}

.full-width {
    width: 100%;
}

.half-width {
    width: 49%;
}

.inline-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Layout principal */

.main-layout {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.container-form {
    width: 25%;
    min-height: 100vh;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-image: url(assets/fondo-interfaz.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 2px;
}

.icon-maquina {
  background-image: url("assets/Icon/maquina-icono.png");
}

.icon-producto {
  background-image: url("assets/Icon/producto-icono.png");
}

.icon-tamano {
  background-image: url("assets/Icon/tamano-icono.png"); /* FALTAAAA */
}

.icon-cantidad {
  background-image: url("assets/Icon/cantidad-icono.png");
}

.icon-tinta {
  background-image: url("assets/Icon/tintas-icono.png");
}

.icon-cant-pliegos {
  background-image: url("assets/Icon/cant-pliegos-icono.png");
}

.icon-pliegos {
  background-image: url("assets/Icon/pliegos-iconos.png");
}

.icon-planchas {
  background-image: url("assets/Icon/planchas-icono.png");
}

.icon-tirajes {
  background-image: url("assets/Icon/tirajes-icono.png");
}

.icon-plegado {
  background-image: url("assets/Icon/plegado-icono.png");
}

.icon-plastificado {
  background-image: url("assets/Icon/plastificado-icono.png");
}

.icon-uv-parcial {
  background-image: url("assets/Icon/uv-icono.png");
}

.icon-troquelado {
  background-image: url("assets/Icon/troquel-icono.png");
}

.input-container span .icon {
  opacity: 0;
}

.container-help {
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    height: 100vh;
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #ede7f6;
    z-index: 999;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.1);
}

.body-help-active .container-help {
    display: flex;
    opacity: 1;
}

.container-help {
    transform: translateX(100%);
    opacity: 0;
}
.body-help-active .container-help {
    transform: translateX(0);
    opacity: 1;
}

#imagen-superior {
    width: 60%;
    height: auto;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

#image-container-responsive {
    display: none;
    position: relative;
}

/* Estilos para el banner informativo - Desktop */
.banner-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.info-banner {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.info-banner.hidden {
    opacity: 0;
    visibility: hidden;
}

.video-por-ciudad.hidden {
    display: none !important;
}

.video-por-ciudad.visible {
    display: block !important;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

#image-container {
    position: fixed;
    top: 0;
    left: 25%;
    width: 75%;
    height: 100%;
    pointer-events: none;
}

/* Banner para desktop */
.banner-container-desktop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    transition: opacity 0.5s ease-in-out;
}

.banner-container-desktop.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.info-banner-desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.body-help-active #image-container {
    width: 50% !important;
}

#video-fondo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
}

/* Formulario */
.contact-form {
    width: 90%;
    background-color: #7e57c2;
    border: 1px solid #4b367d;
    position: relative;
    border-radius: 10px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: visible;
    position: relative;
}

.title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.input-container {
    position: relative;
    margin: 1rem 0;
    display: inline-block;
    width: 100%;
}

.input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: 0.3s;
}

textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: auto;
    border-radius: 10px;
    resize: none;
    overflow-y: hidden;
    text-align: left;
}

.recomendaciones-render {
    padding: 0.8rem 1.2rem;
    background-color: #7e57c2;
    color: white;
    border: 2px solid #fafafa;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    white-space: normal;
    word-break: break-word;
    overflow-y: hidden; 
    transition: height 0.2s ease;
}

.recomendaciones-render ul {
    padding-left: 0.8rem;
    margin: 0;
}

.recomendaciones-render li {
    margin-bottom: 0.4rem;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

.input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

.input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.input-container span:before,
.input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #7e57c2;
    top: 50%;
    transform: translateY(-50%);
}

.input-container span:before {
    left: 50%;
}

.input-container span:after {
    right: 50%;
}

.input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.resultados label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
    transition: none;
}

.resultados span:before,
.resultados span:after {
    width: 50%;
    opacity: 1;
}

/* Ayuda */

.faq-panel {
    background: #ffffff;
    border-radius: 1rem 0 0 1rem;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    overflow-y: auto;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.faq-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4b367d; /* título con color institucional */
    margin: 0;
}

.faq-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #7e57c2;
    cursor: pointer;
}

.faq-close:hover {
    color: #4b367d;
}

.faq-search {
    margin: 1rem 0;
}

.faq-search input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid #c2b6de;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    background-color: #f9f6ff;
    color: #4b367d;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.faq-item {
    padding: 0.4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #7e57c2;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 0.3rem 0;
}

.faq-question::before {
    content: "❔";
    font-size: 1rem;
}

.faq-answer {
    display: none;
    margin-top: 0.3rem;
    font-size: 0.9rem;
    color: #4b367d;
    padding-left: 1.5rem;
}

.faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-footer {
    margin-top: auto;
    border-top: 1px solid #e0e0e0;
    padding: 1rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-footer button {
    background: none;
    border: none;
    font-size: 0.95rem;
    color: #7e57c2;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
    cursor: pointer;
}

.faq-footer button::before {
    content: "";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.faq-footer button:nth-child(1)::before {
    content: "💬";
}

.faq-footer button:nth-child(2)::before {
    content: "📞";
}

.faq-footer button:hover {
    text-decoration: underline;
    color: #4b367d;
}

.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-icon {
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    user-select: none;
    transition: color 0.3s ease;
}

.tooltip-icon:hover {
    color: #4b367d;
}

.tooltip-text {
    display: none;
    position: absolute;
    top: 50%;
    left: 120%;
    transform: translateY(-50%);
    background-color: #4b367d;
    color: #fff;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: normal;
    z-index: 1000;
    width: 220px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border: 1px solid #d1d5db;
    line-height: 1.3;
}

.tooltip-container:hover .tooltip-text {
    display: block;
}

/* Botones */
.btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #4b367d;
    font-size: 0.95rem;
    color: #4b367d;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
}

.btn:hover {
    background-color: #4b367d;
    border: 2px solid #4b367d;
    color: #fff;
}

.button-container {
    padding-top: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Enlaces inferiores */
.sidebar-links {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 30px 10px 10px 10px;
    box-sizing: border-box;
    background-color: transparent;
}

#comment-text, #site-text, .help-text, #imposicion-text, #imposicion-text-2 {
    padding: 10px 20px;
    background-color: #4b367d;
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#comment-text:hover, #site-text:hover, .help-text:hover, #imposicion-text:hover, #imposicion-text-2:hover {
    background-color: #6a4bbb;
    transform: translateY(-2px);
}

/* Animación especial para el botón de imposición */
#imposicion-text, #imposicion-text-2 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #4b367d, #6a4bbb, #4b367d);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

#imposicion-text::before, #imposicion-text-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

#imposicion-text::after, #imposicion-text-2::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8b5cf6, #a855f7, #9333ea, #7c3aed, #6366f1, #8b5cf6);
    background-size: 300% 300%;
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    animation: purpleGlow 3s linear infinite;
}

#imposicion-text:hover, #imposicion-text-2:hover {
    background: linear-gradient(45deg, #6a4bbb, #8b6bb1, #6a4bbb);
    background-size: 200% 200%;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(75, 54, 125, 0.4);
    animation: gradientShift 3s ease-in-out infinite, pulseHover 1s ease-in-out infinite;
}

#imposicion-text:hover::after, #imposicion-text-2:hover::after {
    opacity: 0.7;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 0 0 0 rgba(75, 54, 125, 0.7);
    }
    50% {
        box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 0 0 10px rgba(75, 54, 125, 0);
    }
}

@keyframes pulseHover {
    0%, 100% {
        transform: translateY(-2px) scale(1.05);
    }
    50% {
        transform: translateY(-2px) scale(1.08);
    }
}

@keyframes purpleGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Media Queries */
@media (max-width: 1520px) {
    .container-form {
        width: 30%;
    }
    #image-container {
        left: 30%;
        width: 70%;
    }
}

@media (max-width: 1240px) {
    .container-form {
        width: 35%;
    }
    #image-container {
        left: 35%;
        width: 65%;
    }
}

@media (max-width: 1055px) {
    .container-form {
        width: 40%;
    }
    #image-container {
        left: 40%;
        width: 60%;
    }
}

@media (max-width: 957px) {
    .container-form {
        width: 45%;
    }
    #image-container {
        left: 45%;
        width: 55%;
    }
}

@media (max-width: 850px) {
    .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }
}

@media (max-width: 840px) {
    .container-form {
        width: 50%;
    }
    #image-container {
        left: 50%;
        width: 50%;
    }
}

@media (max-width: 640px) {
    .container-form {
        width: 100%;
        min-height: 100vh;
        padding: 0;
    }

    .form-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        width: 100%;
    }

    .form-content > :first-child {
        align-self: flex-start;
        margin-left: 0.5rem;
    }

    #image-container {
        display: none;
    }

    #imagen-superior {
        width: 30%;
        height: auto;
        margin-bottom: 0.5rem;
        margin-top: 0.5rem;
    }

    #image-container-responsive {
        display: block;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        position: relative;
    }

    .imagen-final {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
        margin-bottom: 2rem;
    }

    /* Estilos para el banner informativo */
    .banner-container {
        position: relative;
        width: 100%;
        aspect-ratio: 16/9; /* Mismo aspect ratio que típicamente tienen los videos */
        margin-bottom: 2rem;
        overflow: hidden;
    }

    .info-banner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        opacity: 1;
        transition: opacity 0.5s ease-in-out;
    }

    .info-banner.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .video-por-ciudad.hidden {
        display: none !important;
    }

    .video-por-ciudad.visible {
        display: block !important;
        opacity: 1;
        transition: opacity 0.5s ease-in-out;
    }

    #comment-text, #site-text, .help-text {
        width: 90%;
        text-align: center;
    }

    .contact-form {
        width: 90%;
    }

    .tooltip-text {
        top: 100%;
        right: 0;
        left: auto;
        transform: translateY(8px);
        max-width: 240px;
        width: max-content;
        white-space: normal;
    }

    .container-help {
        width: 90%;
        height: 100vh;
        padding: 0.8rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background: #ede7f6;
        z-index: 999;
        transition: transform 1.0s ease, opacity 0.3s ease, visibility 0.3s ease;
        box-shadow: -2px 0 6px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .faq-answer {
        padding-left: 0.5rem;
    }
    
    .body-help-active .container-help {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    form {
        padding: 1.7rem 1.6rem;
    }
    .title {
        font-size: 1.15rem;
    }
    .input {
        padding: 0.45rem 1.2rem;
    }
    .btn {
        padding: 0.45rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .sidebar-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 30px 10px 10px 10px;
        box-sizing: border-box;
        background-color: transparent;
        align-items: center;
    }
    
    /* Hacer que el botón Montaje tenga exactamente los mismos estilos que los otros */
    #comment-text, #site-text, .help-text, #imposicion-text, #imposicion-text-2 {
        width: 100%;
        max-width: none;
        flex: 1;
        justify-content: center;
        text-align: center;
    }
}

/* Estilos para el Modal de Imposición */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    pointer-events: none;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: calc(100% - 40px);
    max-width: none;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.4s ease-out;
    pointer-events: auto;
    border: 3px solid #4b367d;
}

/* Asegurar que el modal se ajuste al área expandida */
.modal-body {
    padding: 0;
    height: calc(90vh - 100px);
    overflow: hidden;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.98));
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    backdrop-filter: blur(10px);
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
}

.modal-icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: rgba(107, 114, 128, 0.1);
    border: 1px solid rgba(229, 231, 235, 0.6);
    color: #6b7280;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    transform: scale(1.05);
}

.modal-body {
    padding: 0;
    height: 600px;
    overflow: hidden;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-icon.facebook { background: #1877f2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.social-icon.twitter { background: #1da1f2; }

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive para el modal */
@media (max-width: 1520px) {
    .modal-overlay {
        width: 50%;
    }
}

@media (max-width: 1240px) {
    .modal-overlay {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .modal-overlay {
        background-color: transparent;
        justify-content: center;
        align-items: flex-end;
        pointer-events: auto;
        width: 100%;
        padding-bottom: 20px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
        border-radius: 10px;
    }
    
    /* Quitar todas las animaciones en responsive */
    #imposicion-text, #imposicion-text-2 {
        animation: none !important;
    }
    
    .modal-content {
        animation: none !important;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        width: 100%;
        align-items: flex-end;
        padding-bottom: 10px;
    }
    
    .modal-content {
        width: 95%;
        height: 60vh;
        max-height: 60vh;
        border-radius: 15px 15px 0 0;
        margin: 0 10px 0 10px;
        border: 2px solid #4b367d;
        border-bottom: none;
    }
    
    .modal-body {
        height: calc(60vh - 60px);
    }
    
    /* Quitar todas las animaciones en móvil pequeño */
    #imposicion-text, #imposicion-text-2 {
        animation: none !important;
    }
    
    .modal-content {
        animation: none !important;
    }
}