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

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#333;
    line-height:1.6;
    background:#f5f7fb;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

header{
    background:#ffffff;
    padding:0;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:80px;
}

.logo img{
    width:520px;
    max-width:100%;
    height:auto;
}

nav a{
    color:#0c2d5c;
    text-decoration:none;
    margin-left:25px;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#ff7a00;
}

/* HERO */

.hero{
    padding:70px 0;
}

.hero-content{
    display:flex;
    align-items:center;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h2{
    font-size:4rem;
    color:#0c2d5c;
    margin-bottom:25px;
}

.hero-text p{
    font-size:1.1rem;
    margin-bottom:20px;
}

.hero-text strong{
    color:#0c2d5c;
    font-size:1.3rem;
}

.hero-buttons{
    margin-top:30px;
}

.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

/* BUTTONS */

.btn-primary{
    background:#ff7a00;
    color:white;
    text-decoration:none;
    padding:15px 28px;
    border-radius:8px;
    font-weight:bold;
    display:inline-block;
    margin-right:10px;
}

.btn-secondary{
    background:#0c2d5c;
    color:white;
    text-decoration:none;
    padding:15px 28px;
    border-radius:8px;
    font-weight:bold;
    display:inline-block;
}

/* FEATURES */

.features,
.plans,
.section{
    padding:80px 0;
}

.features h2,
.plans h2,
.section h2{
    text-align:center;
    color:#0c2d5c;
    margin-bottom:40px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.card,
.plan{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

.card h3{
    color:#0c2d5c;
    margin-bottom:10px;
}

.plan h3{
    color:#ff7a00;
    font-size:2rem;
}

/* POPULAR PLAN */

.popular{
    position:relative;
    border:3px solid #ff7a00;
}

.badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#ff7a00;
    color:white;
    padding:6px 14px;
    border-radius:20px;
    font-size:0.8rem;
    font-weight:bold;
}

/* FREE TRIAL */

.trial{
    margin-top:40px;
    background:#eef2f7;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.trial h3{
    color:#0c2d5c;
}

/* CONTACT */

#contact p{
    margin-bottom:15px;
    text-align:center;
}

/* FOOTER */

footer{
    background:#0c2d5c;
    color:white;
    text-align:center;
    padding:50px 20px;
}

footer p{
    margin-bottom:10px;
}

/* WHATSAPP */

.whatsapp-button{
    position:fixed;
    right:25px;
    bottom:25px;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:15px 22px;
    border-radius:50px;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,0.25);
    z-index:9999;
}

.whatsapp-button:hover{
    background:#20ba5a;
}

/* MOBILE */

@media(max-width:768px){

    header .container{
        flex-direction:column;
        text-align:center;
    }

    .logo img{
        width:280px;
    }

    nav{
        margin-top:15px;
    }

    nav a{
        display:inline-block;
        margin:8px;
    }

    .hero-content{
        flex-direction:column;
    }

    .hero-text h2{
        font-size:2.5rem;
        text-align:center;
    }

    .hero-text{
        text-align:center;
    }

    .hero-buttons a{
        display:block;
        margin:10px auto;
        width:220px;
    }
}
/* EQUIPMENT SECTION */

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

.equipment-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.equipment-card:hover{
transform:translateY(-5px);
}

.equipment-card img{
width:100%;
height:220px;
object-fit:contain;
background:#ffffff;
padding:20px;
}

.equipment-content{
padding:25px;
text-align:center;
}

.equipment-content h3{
color:#14356f;
margin-bottom:15px;
}

.condition-new{
color:#16a34a;
font-weight:bold;
}

.condition-used{
color:#f97316;
font-weight:bold;
}

.featured{
border:3px solid #ff7a00;
}

.featured-badge{
background:#ff7a00;
color:white;
padding:8px 15px;
display:inline-block;
border-radius:20px;
font-size:14px;
font-weight:bold;
margin-bottom:15px;
}