
/*
Theme Name: Gova Mudanzas Pro
Author: Mario Navarro
Version: 1.0
Description: Theme premium para fletes y mudanzas Equipos Gova.
*/

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#111;
    color:#fff;
}

header{
    background:#000;
    padding:15px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo img{
    height:85px;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin:0 15px;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#e30613;
}

.whatsapp-btn{
    background:#e30613;
    padding:14px 24px;
    border-radius:40px;
    color:#fff;
    text-decoration:none;
    font-weight:bold;
}

.hero{
    min-height:88vh;
    display:flex;
    align-items:center;
    padding:0 8%;
    background:
    linear-gradient(to right, rgba(0,0,0,.85), rgba(0,0,0,.45)),
    url('https://images.unsplash.com/photo-1600518464441-9154a4dea21b?q=80&w=1600');
    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:650px;
}

.hero h4{
    color:#ff2c2c;
    font-size:28px;
    margin-bottom:10px;
    letter-spacing:2px;
}

.hero h1{
    font-size:78px;
    line-height:1;
    margin:0 0 25px;
}

.hero span{
    color:#e30613;
}

.hero p{
    font-size:24px;
    line-height:1.6;
    color:#ddd;
}

.cta-btn{
    display:inline-block;
    margin-top:30px;
    background:#e30613;
    padding:22px 40px;
    border-radius:12px;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    font-weight:bold;
}

.features{
    margin-top:-50px;
    position:relative;
    z-index:20;
}

.feature-grid{
    max-width:1300px;
    margin:auto;
    background:#fff;
    color:#111;
    border-radius:18px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    padding:35px;
    gap:25px;
    box-shadow:0 10px 40px rgba(0,0,0,.4);
}

.feature{
    text-align:center;
}

.feature h3{
    color:#e30613;
}

.services{
    padding:90px 8%;
}

.services h2{
    font-size:52px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:40px;
}

.card{
    background:#1a1a1a;
    padding:35px;
    border-radius:18px;
    border:1px solid #2d2d2d;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#e30613;
}

.card h3{
    color:#ff2c2c;
}

footer{
    background:#000;
    padding:40px;
    text-align:center;
    color:#aaa;
}

@media(max-width:900px){
    header{
        flex-direction:column;
        gap:20px;
    }

    .hero h1{
        font-size:52px;
    }

    .hero p{
        font-size:20px;
    }

    nav{
        text-align:center;
    }
}
