        .modal-terminos {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .modal-content-terminos {
            width: 90%;
            max-width: 800px;
            height: 80%;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
        }

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

        .cerrar-modal {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }