*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:'Inter', Arial, sans-serif;
    background:#f5f6f7;
    color:#222;
}

/* HEADER */

.site-header{
    background:#003A70;
    color:#fff;
}

.header-inner{
    max-width:1100px;
    margin:0 auto;
    padding:18px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#fff;
    text-decoration:none;
    font-weight:800;
    font-size:20px;
}

.main-nav a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
    font-weight:500;
}

main{
    padding:20px;
}

/* HERO */

.hero-home{
    background:url('/assets/images/hero-camping.jpg') center/cover no-repeat;
    position:relative;
    color:#fff;
    padding:100px 20px;
    margin:-20px -20px 40px;
}

.hero-home::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:relative;
    max-width:900px;
    margin:0 auto;
}

.hero-home h1{
    font-size:46px;
    margin-bottom:20px;
}

.hero-home p{
    font-size:18px;
    max-width:600px;
}

.hero-actions{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.btn-primary{
    background:#1F6F50;
    color:#fff;
    padding:12px 18px;
    text-decoration:none;
    font-weight:600;
}

.btn-secondary{
    background:#ffffff33;
    color:#fff;
    padding:12px 18px;
    text-decoration:none;
}

/* GRID */

.home-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:30px;
}

.home-card{
    background:#fff;
    padding:25px;
    border:1px solid #ddd;
}

/* FOOTER */

.site-footer{
    background:#003A70;
    color:#fff;
    margin-top:40px;
}

.footer-inner{
    max-width:1100px;
    margin:0 auto;
    padding:25px;
    text-align:center;
}

.footer-small{
    opacity:0.8;
    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:900px){
    .home-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero-home h1{
        font-size:36px;
    }
}

@media(max-width:600px){
    .home-grid{
        grid-template-columns:1fr;
    }

    .hero-actions{
        flex-direction:column;
    }
}
/* ===== HEADER PRO ICCS ===== */

.site-header-pro{
    background:#fff;
    border-bottom:1px solid #e2e2e2;
}

/* TOP BAR */

.top-header{
    max-width:1120px;
    margin:0 auto;
    padding:14px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

/* LOGO BLOQUE */

.brand-block{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#000;
    gap:14px;
}

.brand-logo{
    font-size:40px;
    font-weight:900;
    color:#1F6F50;
    letter-spacing:1px;
}

.brand-separator{
    width:2px;
    height:40px;
    background:#1F6F50;
}

.brand-text{
    font-size:13px;
    line-height:1.4;
    color:#444;
}

/* CONTACTO */

.header-contact{
    text-align:right;
    font-size:14px;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.header-contact a{
    color:#1F6F50;
    text-decoration:none;
    font-weight:600;
}

/* MENU */

.main-menu{
    background:#1F6F50;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
}

.main-menu a{
    color:#fff;
    text-decoration:none;
    padding:14px 18px;
    font-weight:600;
    font-size:14px;
    border-right:1px solid rgba(255,255,255,0.15);
}

.main-menu a:last-child{
    border-right:none;
}

.main-menu a:hover{
    background:#166943;
}

/* RESPONSIVE HEADER */

@media(max-width:900px){
    .top-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .header-contact{
        align-items:flex-start;
        text-align:left;
    }

    .brand-logo{
        font-size:32px;
    }
}

@media(max-width:600px){
    .main-menu{
        justify-content:flex-start;
        overflow-x:auto;
    }

    .main-menu a{
        white-space:nowrap;
    }
}