/* --------------------------
   ESTILO GENERAL
--------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0E1117;
    color: white;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

/* --------------------------
   ENCABEZADO
--------------------------- */
.header {
    padding-top: 50px;
    position: relative;
}

.logo {
    width: 180px;
    margin-bottom: 10px;
}

.title {
    font-size: 45px;
    font-weight: 700;
    margin: 10px 0;
}

.subtitle {
    font-size: 16px;
    margin-top: -5px;
    opacity: 0.9;
}

.limit {
    font-size: 14px;
    opacity: 0.8;
}

/* --------------------------
   SECCIÓN DE VOZ
--------------------------- */
.voice-section {
    margin-top: 40px;
}

.voice-title {
    font-size: 26px;
    margin-bottom: 5px;
}

.voice-note {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 40px;
}

/* --------------------------
   WIDGET CENTRADO
--------------------------- */
.widget-container {
    display: flex;
    justify-content: center;
    margin-bottom: 120px; /* espacio para expansión del widget */
}

/* --------------------------
   BOTÓN VOLVER
--------------------------- */
.back-button {
    display: inline-block;
    background: #4a35ff;
    padding: 12px 25px;
    color: white;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 40px;
    transition: 0.2s ease;
}

.back-button:hover {
    background: #6957ff;
}

/* --------------------------
   PIE DE PÁGINA
--------------------------- */
.footer-info {
    margin-top: 40px;
    margin-bottom: 60px;
}

.version {
    font-size: 13px;
    opacity: 0.8;
}

.credits {
    font-size: 14px;
    opacity: 0.9;
}

/* --------------------------
   ELEMENTO DECORATIVO ANIMADO SUAVE
--------------------------- */
.header:after {
    content: "";
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,102,255,0.12), rgba(255,0,180,0.08));
    position: absolute;
    top: 20px;
    right: 20px;
    filter: blur(30px);
    animation: pulse 6s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.9; transform: scale(1.25); }
}

/* --------------------------
   RESPONSIVE
--------------------------- */
@media (max-width: 768px) {

    .title {
        font-size: 32px;
    }

    .widget-container {
        margin-bottom: 140px;
    }

    .voice-note {
        padding: 0 20px;
    }
}

/* --------------------------
   LAYOUT PARA PÁGINA DE BLOQUEO
--------------------------- */
.page {
    min-height: 100vh;
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 16px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Contenedor del mensaje de bloqueo */
.block-wrapper {
    margin-top: 40px;
    max-width: 680px;
    text-align: center;
}

/* Texto principal del bloqueo */
.block-text {
    font-size: 16px;
    line-height: 1.7;
    color: #E4E4E4;
    margin-bottom: 40px;
}

/* Fila de botones */
.buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

/* Botón base */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

/* Botón 1 – Volver */
.btn-secondary {
    background: transparent;
    border: 1px solid #4a35ff;
    color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(74, 53, 255, 0.18);
}

/* Botón 2 – Solicitar demo */
.btn-primary {
    background: #4a35ff;
    color: white;
    border: 1px solid #4a35ff;
}

.btn-primary:hover {
    background: #6957ff;
}

/* Responsive: botones a una sola columna en móvil */
@media (max-width: 768px) {
    .buttons-row {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
}
