body{
    margin:0;
    font-family:Arial;
    background:linear-gradient(180deg,#000,#111);
    color:white;
    text-align:center;
}

.header{
    background:#000;
    padding:20px;
    border-bottom:3px solid red;
}

.hero{
    padding:80px 20px;
    background:url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2') center/cover no-repeat;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
}

.hero *{
    position:relative;
}
}

.hero h2{
    font-size:35px;
    color:#ff2b2b;
}

.botones a{
    display:inline-block;
    margin:10px;
    padding:15px 30px;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    transition:0.3s;
    box-shadow:0 0 10px rgba(0,0,0,0.5);
}

.btn-w{
    background:#25D366;
    color:white;
}

.btn-c{
    background:red;
    color:white;
}

.botones a:hover{
    transform:scale(1.1);
    box-shadow:0 0 20px red;
}
}

/* BOTONES */
.btn-w{
    background:#25D366;
    color:white;
}

.btn-c{
    background:red;
    color:white;
}

/* SERVICIOS */
.servicios{
    padding:40px;
}

.grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}

.grid div{
    background:#222;
    padding:20px;
    border-radius:10px;
    width:150px;
}

/* FORMULARIO */
.cotizacion{
    padding:40px;
}

form{
    display:flex;
    flex-direction:column;
    gap:10px;
    max-width:400px;
    margin:auto;
}

input, textarea{
    padding:10px;
    border:none;
    border-radius:5px;
}

/* BOTÓN FORM */
button{
    padding:12px;
    background:#25D366;
    border:none;
    color:white;
    font-weight:bold;
}

/* INFO */
.info{
    padding:30px;
    background:#222;
}

/* BOTONES FLOTANTES */
.float-w, .float-c{
    position:fixed;
    right:15px;
    padding:12px;
    border-radius:50px;
    color:white;
    text-decoration:none;
}

.float-w{
    bottom:80px;
    background:#25D366;
}

.float-c{
    bottom:20px;
    background:red;
}
.logo{
    width:120px;
    margin-bottom:10px;
}
.logo{
    width:140px;
    margin-bottom:15px;
    filter: drop-shadow(0 0 10px red);
    transition:0.3s;
}

.logo:hover{
    transform:scale(1.1);
}
.logo{
    width:140px;
    margin-bottom:15px;
    filter: drop-shadow(0 0 10px red);
    transition:0.3s;
}

.logo:hover{
    transform:scale(1.1);
}
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:15px;
    padding:20px;
}

.grid div{
    background:#111;
    padding:20px;
    border-radius:10px;
    border:1px solid #333;
    transition:0.3s;
}

.grid div:hover{
    transform:translateY(-5px);
    border-color:red;
    box-shadow:0 0 15px red;
}