:root {
    --primary: #2091F9;
    --dark: #1d293f;
    --light: #f4f7f6;
    --white: #ffffff;
    --text: #444;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    background: var(--dark);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.logo {
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo span { color: var(--primary); }

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 400;
    font-size: 0.9rem;
}

.nav-menu a.active { color: var(--primary); font-weight: 600; }

.btn-nav {
    background: var(--primary);
    padding: 8px 18px;
    border-radius: 5px;
    transition: 0.3s;
}

/* HERO SECTION */
.services-hero {
    text-align: center;
    padding: 80px 5%;
    background: linear-gradient(rgba(29, 41, 63, 0.9), rgba(29, 41, 63, 0.9)), 
                url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    color: var(--white);
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: auto;
}

/* GRID DE SERVICIOS */
.container-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 5%;
    max-width: 1200px;
    margin: auto;
}

.item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.item:hover {
    transform: translateY(-10px);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.item figure {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.item:hover img {
    transform: scale(1.1);
}

.info-product {
    padding: 25px;
}

.info-product h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.description {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    height: 45px;
}

.price-tag {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn-cotizar {
    display: block;
    text-align: center;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-cotizar:hover {
    background: var(--primary);
}

.main-footer {
    text-align: center;
    padding: 40px;
    background: var(--dark);
    color: var(--white);
    font-size: 0.8rem;
}