*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#333;
}

header{
    background:#ffcc00;
    padding:20px;
    text-align:center;
}

header h1{
    font-size:1.8rem;
}

header p{
    margin-top:6px;
}

section{
    padding:20px;
    max-width:1000px;
    margin:auto;
}

.section-title{
    font-size:1.4rem;
    margin-bottom:12px;
}

form{
    background:#f9f9f9;
    padding:15px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,.1);
}

form input,
form textarea,
form button{
    width:100%;
    margin-bottom:10px;
    padding:10px;
    border-radius:6px;
    border:1px solid #ccc;
    font-size:1rem;
}

textarea{
    resize:none;
}

.btn-enviar{
    background:#25d366;
    color:#fff;
    border:none;
    font-weight:bold;
    cursor:pointer;
}

.btn-enviar:hover{
    opacity:0.9;
}

.btn-ubicacion{
    background:#007bff;
    color:#fff;
    border:none;
    cursor:pointer;
}

.btn-ubicacion:hover{
    opacity:0.9;
}

.tarifas{
    background:#f8f8f8;
    border-radius:10px;
}

.tarifa-card{
    background:#fff;
    padding:15px;
    border-radius:10px;
    margin-bottom:10px;
    box-shadow:0 0 8px rgba(0,0,0,.1);
}

.nota-tarifa{
    font-size:0.85rem;
    color:#555;
}

.map-container{
    border-radius:10px;
    overflow:hidden;
}

footer{
    background:#eee;
    text-align:center;
    padding:15px;
    font-size:0.9rem;
}

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25d366;
    color:#fff;
    padding:15px 18px;
    border-radius:50%;
    font-size:24px;
    text-decoration:none;
    box-shadow:0 0 10px rgba(0,0,0,.3);
}

@media(max-width:600px){
    header h1{
        font-size:1.5rem;
    }
}
