/* ===================================
   ESCUDO UNIVERSAL - ESTILOS PRINCIPALES
   Diseño inspirado en Google Material Design
   =================================== */

/* Importar fuente moderna */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Variables CSS */
:root {
    --primary-color: #1a73e8;
    --primary-dark: #1557b0;
    --primary-light: #4285f4;
    --danger-color: #ea4335;
    --danger-light: #f28b82;
    --success-color: #34a853;
    --warning-color: #fbbc04;
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --text-light: #80868b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --border-color: #dadce0;
    --shadow-sm: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    --shadow-md: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
    --shadow-lg: 0 2px 6px 2px rgba(60, 64, 67, 0.15), 0 8px 24px 4px rgba(60, 64, 67, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaed 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===================================
   BARRA DE ALERTAS
   =================================== */
.alert-bar {
    background: #ea4335;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    min-height: 40px;
    transition: var(--transition);
}

.alert-bar:hover {
    background: #d33426;
}

.alert-content {
    text-align: center;
    line-height: 1.4;
    word-wrap: break-word;
    max-width: 100%;
}



/* ===================================
   CONTENEDOR PRINCIPAL
   =================================== */
.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px 40px;
}

/* ===================================
   HEADER Y LOGO
   =================================== */
.header {
    text-align: center;
    margin-bottom: 48px;
    animation: fadeInDown 0.6s ease-out;
}

.logo-container {
    display: inline-block;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

.shield-logo {
    width: 80px;
    height: 96px;
    filter: drop-shadow(0 4px 12px rgba(26, 115, 232, 0.3));
    transition: var(--transition);
}

.shield-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(26, 115, 232, 0.4));
}

.main-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   ZONA DE BÚSQUEDA - ESTILO GOOGLE
   =================================== */
.search-section {
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.search-box {
    background-color: #ffffff;
    border-radius: 24px;
    /* Estilo pastilla, no cuadrado */
    border: 1px solid #dfe1e5;
    /* Casi invisible hasta hover */
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    /* Sombra suave de Google */
    padding: 14px 24px;
    /* Padding perfecto para centrado visual */
    transition: box-shadow 0.2s ease;
    margin-bottom: 20px;
}

/* Al pasar el ratón - oscurece la sombra como Google */
.search-box:hover {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.45);
}

/* Al escribir - mantén el borde limpio, sin colores extraños */
.search-box:focus-within {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.45);
    border-color: #dfe1e5;
    /* Borde limpio, sin cambios de color */
    outline: none !important;
}

.search-input {
    width: 100%;
    border: none;
    outline: none !important;
    font-size: 18px;
    /* Fuente grande - CLAVE para centrado visual */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: #202124;
    /* Color de texto de Google */
    font-weight: 400;
    resize: none;
    min-height: 24px;
    max-height: 120px;
    overflow-y: auto;
    background: transparent;
    line-height: 1.5;
    padding: 0;
    /* Sin padding extra, ya está en .search-box */
}

.search-input:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.search-input::placeholder {
    color: #5f6368;
    /* Color de placeholder de Google */
    font-weight: 400;
}

/* ===================================
   BOTONES DE ACCIÓN (TARJETAS)
   =================================== */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.action-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    min-height: 120px;
}

.action-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.02) 0%, rgba(66, 133, 244, 0.02) 100%);
}

.action-card:active {
    transform: translateY(-2px);
}

.action-card.active {
    border-color: var(--danger-color);
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.05) 0%, rgba(242, 139, 130, 0.05) 100%);
}

.action-card.active .action-icon {
    color: var(--danger-color);
    animation: pulse 1.5s ease-in-out infinite;
}

.action-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    transition: var(--transition);
}

.action-card:hover .action-icon {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.action-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ===================================
   BOTÓN ANALIZAR
   =================================== */
.analyze-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.analyze-btn:active {
    transform: translateY(0);
}

.analyze-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Estado de carga con animación */
.analyze-btn.loading {
    opacity: 0.8;
    animation: buttonPulse 1.5s ease-in-out infinite;
}

@keyframes buttonPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Animación de rotación para el icono cuando está cargando */
.analyze-btn.loading .btn-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   CONTADOR SOCIAL
   =================================== */
.social-counter {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 16px;
}

.counter-number {
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===================================
   ÁREA DE RESULTADOS
   =================================== */
.results-area {
    margin-top: 40px;
}

.results-area.hidden {
    display: none;
}

/* Animación de Escaneo */
.scanning-animation {
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 0.4s ease-out;
}

.scanning-animation.hidden {
    display: none;
}

.radar-container {
    position: relative;
    width: 200px;
    height: 240px;
    margin: 0 auto 32px;
    overflow: visible;
    /* Permitir que el resplandor se vea */
}

/* Animación de Respiración Tecnológica */
@keyframes techBreathe {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 4px 12px rgba(26, 115, 232, 0.3));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(50, 150, 255, 0.9)) drop-shadow(0 0 40px rgba(50, 150, 255, 0.6));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 12px rgba(26, 115, 232, 0.3));
    }
}

.radar-shield {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    animation: techBreathe 3s infinite ease-in-out !important;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(26, 115, 232, 0.8), transparent);
    transform-origin: top center;
    transform: translate(-50%, -40%) rotate(0deg);
    animation: sweep 2s linear infinite;
}

@keyframes sweep {
    0% {
        transform: translate(-50%, -40%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -40%) rotate(360deg);
    }
}

.scan-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.scan-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s ease-out infinite;
}

.scan-ring:nth-child(2) {
    animation-delay: 0.6s;
}

.scan-ring:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes ripple {
    0% {
        width: 40px;
        height: 40px;
        opacity: 1;
    }

    100% {
        width: 160px;
        height: 160px;
        opacity: 0;
    }
}

.scanning-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.progress-bar {
    width: 100%;
    max-width: 300px;
    height: 4px;
    background: var(--bg-secondary);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    animation: progress 3s ease-out forwards;
}

@keyframes progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Tarjeta de Resultado */
.result-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    text-align: center;
    animation: scaleIn 0.4s ease-out;
}

.result-card.hidden {
    display: none;
}

.result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.result-icon.safe {
    background: linear-gradient(135deg, #34a853 0%, #2d8e47 100%);
    box-shadow: 0 4px 16px rgba(52, 168, 83, 0.3);
    animation: successPop 0.6s ease-out;
}

.result-icon.danger {
    background: linear-gradient(135deg, #ea4335 0%, #d33426 100%);
    box-shadow: 0 4px 16px rgba(234, 67, 53, 0.3);
    animation: shake 0.5s ease-out;
}

.result-icon.warning {
    background: linear-gradient(135deg, #fbbc04 0%, #f29900 100%);
    box-shadow: 0 4px 16px rgba(251, 188, 4, 0.3);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

.result-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.result-message {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.result-details {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.result-details p {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.result-details strong {
    color: var(--text-primary);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* ===================================
   BOTÓN DE PÁNICO
   =================================== */
.panic-section {
    margin-top: 60px;
    text-align: center;
}

.panic-btn {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.1) 0%, rgba(211, 52, 38, 0.1) 100%);
    color: var(--danger-color);
    border: 2px solid var(--danger-light);
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.panic-btn:hover {
    background: linear-gradient(135deg, var(--danger-color) 0%, var(--danger-light) 100%);
    color: white;
    border-color: var(--danger-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   MODAL DE EMERGENCIA
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 32px 32px 8px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 0 32px 24px;
}

.emergency-list {
    padding: 0 32px;
}

.emergency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.emergency-item:hover {
    background: var(--bg-secondary);
}

.emergency-item strong {
    color: var(--text-primary);
    font-size: 15px;
}

.emergency-phone {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.emergency-phone:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.modal-footer {
    background: #fff3cd;
    padding: 20px 32px;
    margin-top: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.modal-footer p {
    font-size: 14px;
    color: #856404;
    margin: 0;
}

/* ===================================
   TOAST DE VOZ
   =================================== */
.voice-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: white;
    padding: 16px 24px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 999;
    animation: slideUpToast 0.3s ease-out;
}

.voice-toast.hidden {
    display: none;
}

@keyframes slideUpToast {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.voice-pulse {
    width: 12px;
    height: 12px;
    background: var(--danger-color);
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 640px) {
    .container {
        padding: 40px 16px 32px;
    }

    .main-title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
    }

    .shield-logo {
        width: 64px;
        height: 76.8px;
    }

    .search-box {
        padding: 12px 16px;
        border-radius: 20px;
    }

    .search-input {
        font-size: 15px;
    }

    .action-buttons {
        gap: 12px;
    }

    .action-card {
        padding: 20px 16px;
        min-height: 100px;
    }

    .action-icon {
        width: 40px;
        height: 40px;
    }

    .action-label {
        font-size: 13px;
    }

    .analyze-btn {
        font-size: 15px;
        padding: 14px 24px;
    }

    .result-card {
        padding: 32px 24px;
    }

    .result-title {
        font-size: 24px;
    }

    .modal-content {
        margin: 0 16px;
    }

    .modal-title {
        font-size: 20px;
        padding: 24px 24px 8px;
    }

    .modal-subtitle,
    .emergency-list,
    .modal-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .emergency-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ===================================
   MODAL DE RADAR DE AMENAZAS
   =================================== */
.threat-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}

.threat-modal.hidden {
    display: none;
}

.threat-modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px 30px 30px;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.threat-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f1f3f4;
    color: #5f6368;
    font-size: 28px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.threat-modal-close:hover {
    background: #ea4335;
    color: white;
    transform: rotate(90deg);
}

.threat-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #202124;
    margin: 0 0 10px 0;
    text-align: center;
}

.threat-modal-subtitle {
    font-size: 15px;
    color: #5f6368;
    text-align: center;
    margin: 0 0 30px 0;
}

.tips-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-card {
    border: 2px solid #fce8e6;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: #ea4335;
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.1);
    transform: translateY(-2px);
}

.tip-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tip-card-icon {
    font-size: 32px;
    line-height: 1;
}

.tip-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #202124;
    margin: 0;
    flex: 1;
}

.tip-card-text {
    font-size: 15px;
    color: #5f6368;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.tip-card-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tip-card-share:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.tip-card-share svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ===================================
   RESPONSIVE - MODAL AMENAZAS
   =================================== */
@media (max-width: 640px) {
    .threat-modal {
        padding: 10px;
    }

    .threat-modal-content {
        padding: 35px 20px 20px;
        border-radius: 12px;
    }

    .threat-modal-title {
        font-size: 22px;
    }

    .threat-modal-subtitle {
        font-size: 14px;
    }

    .tip-card {
        padding: 16px;
    }

    .tip-card-icon {
        font-size: 28px;
    }

    .tip-card-title {
        font-size: 16px;
    }

    .tip-card-text {
        font-size: 14px;
    }
}

/* ===================================
   RESPONSIVE
   =================================== */


/* ===================================
   ACCESIBILIDAD
   =================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible para accesibilidad */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}