/* style.css */

:root {
    --color-primary-dark-gray: #5c5c5c; 
    --color-text-light-gray: #757575;
    --color-background-light: #ffffff;
    --color-text-dark: #1c1b1f;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: var(--color-background-light);
    color: var(--color-text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Cabecera Mínima --- */
.minimal-header {
    background-color: var(--color-background-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 40px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo-minimal {
    font-size: 1.5rem;
    color: var(--color-primary-dark-gray);
    margin: 0;
}

/* Estilo para los botones de navegación */
.nav-button {
    text-decoration: none;
    color: var(--color-text-light-gray);
    margin-right: 16px;
    font-size: 0.9rem;
    padding: 8px;
    transition: color 0.3s;
}
.nav-button:hover {
    color: var(--color-primary-dark-gray);
}

/* --- Contenido Principal --- */

.main-content-minimal {
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    padding: 20px;
}

.search-section-minimal {
    max-width: 800px; 
    width: 100%;
    text-align: center;
    padding-bottom: 100px; 
}

.title-kaluma {
    margin-bottom: 16px;
    font-weight: 400; 
    font-size: 2rem;
}

.slogan-minimal {
    color: var(--color-text-light-gray); 
    margin-bottom: 40px;
    font-size: 1.15rem;
}

.search-form-minimal {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.input-group {
    flex-grow: 1; 
    max-width: 550px;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 32px;
    padding: 0 20px;
    height: 60px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); 
    background-color: white;
}

.search-icon {
    color: var(--color-text-light-gray);
    margin-right: 10px;
}

.url-input-field-minimal {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    height: 100%;
    padding: 0; 
}

/* CLASE BASE (VERIFICAR): Mantiene el tamaño grande original */
.verify-button {
    background-color: var(--color-primary-dark-gray);
    color: white;
    border: none;
    border-radius: 32px;
    padding: 15px 30px; /* Tamaño grande original */
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    height: 60px; /* Altura grande original */
    text-decoration: none; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.verify-button:hover {
    background-color: #4a4a4a; 
}

/* --- ESTILOS PARA EL MENSAJE DE RESULTADO (TRES ESTADOS) --- */

/* ESTADO 1: SEGURO (GREEN) - Clase base que ya tenías */
.safe-message-box {
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 500px;
    margin: 20px auto;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Colores por defecto (Sitio Seguro) */
    background-color: #e6ffe6; /* Fondo verde claro */
    border: 1px solid #00b300; /* Borde verde oscuro */
    color: #007300; /* Texto verde oscuro */
    box-shadow: 0 4px 10px rgba(0, 150, 0, 0.1);
}

.safe-message-box .material-icons {
    font-size: 2rem;
    color: #00b300;
    margin-right: 15px;
}

/* ESTADO 2: PELIGROSO (RED) - ¡ESTA ES LA NUEVA CLASE! */
.danger-message-box {
    background-color: #ffe6e6; /* Fondo rojo muy claro */
    border: 1px solid #cc0000; /* Borde rojo fuerte */
    color: #800000; /* Texto rojo oscuro */
    box-shadow: 0 4px 10px rgba(150, 0, 0, 0.1);
}

.danger-message-box .material-icons {
    color: #cc0000; /* Ícono rojo fuerte */
}

/* ESTADO 3: NEUTRO / INFO (YELLOW) - Clase para el caso por defecto */
.info-message-box {
    background-color: #ffffee; /* Fondo amarillo muy claro */
    border: 1px solid #a6a600; /* Borde amarillo-oliva */
    color: #595900; /* Texto amarillo-oliva oscuro */
    box-shadow: 0 4px 10px rgba(150, 150, 0, 0.1);
}

.info-message-box .material-icons {
    color: #a6a600;
}


/* CLASE RESET BUTTON: Hacemos este botón más pequeño y con color gris */
.reset-button {
    background-color: #757575; 
    /* ↓↓↓ PROPIEDADES PARA HACERLO CHICO ↓↓↓ */
    padding: 10px 20px; 
    height: 40px; 
    font-size: 0.9rem; 
}
.reset-button:hover {
    background-color: #5c5c5c; 
}


/* --- Pie de Página --- */
footer {
    padding: 12px;
    text-align: center;
    background-color: #f0f0f0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: auto;
    font-size: 0.85rem;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shieldsoft-logo-container-footer {
    margin-bottom: 8px;
}

.shieldsoft-logo {
    height: 30px; 
    width: auto;
}

/* Barra de Carga de Simulación (estilos que ya tenías) */
.loading-bar {
    width: 100%;
    max-width: 650px;
    height: 4px;
    background-color: #ddd;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

/* ... (Las animaciones y media queries se mantienen iguales) ... */