#tiempo-wrapper * { box-sizing: border-box; }
#tiempo-wrapper {
    font-family: 'Segoe UI', system-ui, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    color: #1a1a2e;
}

/* HERO */
#tiempo-wrapper .tiem-hero {
    background: #1a6fa8;
    border-radius: 16px;
    padding: 36px 40px;
    text-align: center;
    margin-bottom: 28px;
}
#tiempo-wrapper .tiem-hero h1 { font-size: 28px !important; font-weight: 800 !important; color: #fff !important; margin: 0 0 8px !important; }
#tiempo-wrapper .tiem-hero p { font-size: 16px !important; color: rgba(255,255,255,0.85) !important; margin: 0 !important; }

/* BUSCADOR */
#tiempo-wrapper .tiem-buscador {
    background: #f0f7ff;
    border: 1px solid #d0e4f7;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 28px;
}
#tiempo-wrapper .tiem-buscador-inner {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
}
#tiempo-wrapper .tiem-field { flex: 1; min-width: 250px; display: flex; flex-direction: column; gap: 6px; }
#tiempo-wrapper .tiem-field label { font-size: 12px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: 0.5px; }
#tiempo-wrapper .tiem-autocomplete-wrapper { position: relative; }
#tiempo-wrapper #tiem-input {
    width: 100%;
    border: 2px solid #d0e4f7;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    color: #1a1a2e;
    background: #fff;
    font-family: inherit;
}
#tiempo-wrapper #tiem-input:focus { border-color: #1a6fa8; outline: none; }
#tiempo-wrapper .tiem-sugerencias {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #d0e4f7;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}
#tiempo-wrapper .tiem-sugerencias.visible { display: block; }
#tiempo-wrapper .tiem-sugerencia-item {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #1a1a2e;
    border-bottom: 1px solid #f0f4f8;
}
#tiempo-wrapper .tiem-sugerencia-item:hover { background: #f0f7ff; }
#tiempo-wrapper .tiem-sugerencia-item small { color: #888; font-size: 12px; }

#tiempo-wrapper .tiem-btn {
    background: #1a6fa8;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}
#tiempo-wrapper .tiem-btn:hover { background: #155d8e; }

/* RESULTADO */
#tiempo-wrapper .tiem-municipio-header {
    text-align: center;
    margin-bottom: 24px;
}
#tiempo-wrapper .tiem-municipio-header h2 { font-size: 26px !important; font-weight: 800 !important; color: #1a1a2e !important; margin: 0 0 4px !important; }
#tiempo-wrapper .tiem-municipio-header p { font-size: 14px !important; color: #888 !important; margin: 0 !important; }

/* DÍAS */
#tiempo-wrapper .tiem-dias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
    margin-bottom: 32px;
}
#tiempo-wrapper .tiem-dia {
    background: #fff;
    border: 1px solid #e0eaf6;
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
}
#tiempo-wrapper .tiem-dia-fecha { font-size: 12px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
#tiempo-wrapper .tiem-dia-icono { font-size: 36px; margin-bottom: 8px; }
#tiempo-wrapper .tiem-dia-desc { font-size: 12px; color: #555; margin-bottom: 10px; line-height: 1.3; min-height: 30px; }
#tiempo-wrapper .tiem-dia-temps {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}
#tiempo-wrapper .tiem-dia-max { color: #e63946; font-size: 16px; }
#tiempo-wrapper .tiem-dia-min { color: #1a6fa8; font-size: 14px; }
#tiempo-wrapper .tiem-dia-lluvia { font-size: 11px; color: #1a6fa8; margin-top: 6px; }
#tiempo-wrapper .tiem-dia-viento { font-size: 11px; color: #666; margin-top: 3px; }

/* LOADING */
#tiempo-wrapper .tiem-loading { text-align: center; padding: 40px; color: #888; }
#tiempo-wrapper .tiem-spinner {
    width: 36px; height: 36px;
    border: 3px solid #e0eaf6;
    border-top-color: #1a6fa8;
    border-radius: 50%;
    animation: tiem-spin 0.8s linear infinite;
    margin: 0 auto 12px;
}
@keyframes tiem-spin { to { transform: rotate(360deg); } }

/* ERROR */
#tiempo-wrapper .tiem-error {
    background: #fff5f5;
    border: 1px solid #ffd0d0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #c53030;
    font-size: 14px;
}

@media (max-width: 600px) {
    #tiempo-wrapper .tiem-hero { padding: 24px 20px; }
    #tiempo-wrapper .tiem-hero h1 { font-size: 20px !important; }
    #tiempo-wrapper .tiem-dias-grid { grid-template-columns: repeat(2, 1fr); }
}
