* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#map{
    height: 100vh;
    width:100%;
}
nav {
    position: absolute; 
    top: 20px;
    left: 20px;
    z-index:1000;
    display: flex; 
    flex-direction: column;
    gap: 10px;
}
.tool-btn {
    cursor: pointer;
    height:50px;
    width: 50px;
    border-radius: 12.5px;
    border: 1px solid rgba(255, 255, 255, .9);
    background-color: rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    align-items: center;

}
.tool-btn i{
    color: #734960;
    font-size: 17.5px;
}
section {
    position: absolute;
    bottom: 20px;
    height: 80px;
    width: 90%;
    left: 5%;
    z-index: 2000;
    overflow: hidden;
    background-color: rgba(255, 255, 255, .6); 
    backdrop-filter: blur(10px); 
    border-radius: 20px; 
    border: 1px solid rgba(255, 255, 255, .9); 
}
#weather-card{ 
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left:30px;
    gap:25px;
    width: 100%;
    height:100%;
}
#w-data{
    display:flex;
    flex-direction: column;
}
#w-icon{
  font-size: 40px;
}
#w-temp{
    font-size:25px;
    font-weight: 600;
}
.punto-radar {
    position: relative;
    width: 20px;
    height: 20px;
    background: #734960;
    border-radius: 50%;
}

.punto-radar::before {
    content: "";
    position: absolute;
    inset: 0; 
    border-radius: 50%;
    background: #734960;
    z-index: -1;
    animation: pulso-radar 2s ease-out infinite;
}

@keyframes pulso-radar {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3.5); opacity: 0; }
}
@media (min-width: 768px) {
    section{
        left:auto;
        width:300px;
        margin:20px;
        right:20px;
    }
    #weather-card{
        width:100%;
        height:100%;
        justify-content: center;
        padding:0 20px;
    }
}
