
.clima-card {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.clima-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    margin-bottom: 10px;
}

.temperatura {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ciudad-nombre {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.descripcion {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-style: italic;
}

.detalles p {
    margin-bottom: 5px;
    font-size: 1rem;
}

.detalles strong {
    color: rgba(255, 255, 255, 0.9);
}


#ciudadInput {
    border-radius: 25px 0 0 25px;
    border: 2px solid #74b9ff;
    padding: 12px 20px;
    font-size: 1.1rem;
}

#ciudadInput:focus {
    border-color: #0984e3;
    box-shadow: 0 0 10px rgba(116, 185, 255, 0.3);
}

#buscarClima {
    border-radius: 0 25px 25px 0;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    border: 2px solid #00b894;
    transition: all 0.3s ease;
}

#buscarClima:hover {
    background: linear-gradient(135deg, #00a085 0%, #00b894 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
}


#climaResultado {
    animation: fadeIn 0.5s ease-in-out;
    display: none;
}

#climaError {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .temperatura {
        font-size: 2rem;
    }
    
    .ciudad-nombre {
        font-size: 1.5rem;
    }
    
    .descripcion {
        font-size: 1rem;
    }
    
    .clima-icon {
        width: 60px;
        height: 60px;
    }
}


body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px 0;
}

.card {
    border: none;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

h2.text-primary {
    color: #0984e3 !important;
}