*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Poppins,sans-serif;
    background:#f5f5f5;
    color:#222;
    line-height:1.6;

}

.container{

    width:min(1200px,95%);
    margin:auto;

}

.site-header{

    background:#ffffff;
    border-bottom:1px solid #e5e5e5;

}

.site-header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;

}

.logo{

    font-size:28px;
    font-weight:700;
    color:#111;
    text-decoration:none;

}

.hero{

    text-align:center;
    padding:70px 0 40px;

}

.hero h1{

    font-size:42px;
    margin-bottom:15px;

}

.hero p{

    max-width:760px;
    margin:auto;
    color:#666;

}
.projects-grid{

    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(340px,1fr));
    gap:35px;
    margin:50px 0 80px;

}

.project-card{

    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.25s;
    display:flex;
    flex-direction:column;

}

.project-card:hover{

    transform:translateY(-6px);
    box-shadow:0 16px 40px rgba(0,0,0,.12);

}

.project-card img{

    width:100%;
    height:280px;
    object-fit:cover;
    display:block;

}

.project-info{

    padding:24px;
    display:flex;
    flex-direction:column;
    flex:1;

}

.project-info h2{

    margin-bottom:15px;
    font-size:24px;
    line-height:1.3;

}

.project-info h2 a{

    text-decoration:none;
    color:#111;

}

.project-info h2 a:hover{

    color:#0077cc;

}

.project-info p{

    color:#666;
    margin-bottom:25px;
    flex:1;

}

.btn-project{

    display:inline-block;
    padding:18px 35px;
    border-radius:10px;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.2s;
}

.btn-project:hover{

    background:#008de1;

}

/*==================================================
FOOTER
==================================================*/

.site-footer{

    margin-top:120px;

    background:#0A2540;

    color:#fff;

}

.footer-container{

    max-width:1400px;

    margin:auto;

    padding:80px 30px 60px;

    display:grid;

    grid-template-columns:1.4fr 1fr 1fr 1.2fr;

    gap:70px;

}

.footer-logo{

    width:220px;

    margin-bottom:25px;

}

.footer-brand p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    max-width:320px;

}

.footer-column h3{

    font-size:1.3rem;

    margin-bottom:28px;

}

.footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-column li{

    margin-bottom:18px;

}

.footer-column a{

    color:rgba(255,255,255,.82);

    text-decoration:none;

    transition:.25s;

}

.footer-column a:hover{

    color:#fff;

    padding-left:8px;

}

.oceano-logo{

    width:230px;

    margin:15px 0 25px;

}

.footer-oceano p{

    color:rgba(255,255,255,.75);

    line-height:1.8;

    margin-bottom:30px;

}

.btn-oceano{

    display:inline-block;

    background:#fff;

    color:#0A2540 !important;

    padding:15px 28px;

    border-radius:100px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.btn-oceano:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    padding-left:28px !important;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.10);

    padding:25px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    max-width:1400px;

    margin:auto;

    color:rgba(255,255,255,.65);

    font-size:.95rem;

}

.footer-bottom p{

    margin:0;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

.footer-container{

    grid-template-columns:1fr 1fr;

    gap:50px;

}

}

@media(max-width:768px){

.footer-container{

    grid-template-columns:1fr;

    text-align:center;

    padding:60px 25px;

}

.footer-brand p{

    margin:auto;

}

.footer-logo,

.oceano-logo{

    margin-left:auto;

    margin-right:auto;

}

.footer-bottom{

    flex-direction:column;

    gap:12px;

    text-align:center;

}

}

@media(max-width:768px){

    .hero{

        padding:40px 0 25px;

    }

    .hero h1{

        font-size:32px;

    }

    .projects-grid{

        grid-template-columns:1fr;
        gap:25px;

    }

    .project-card img{

        height:240px;

    }

}

.project-hero{

    margin:40px 0;

}

.project-hero-image{

    position:relative;
    border-radius:18px;
    overflow:hidden;

}

.project-hero-image img{

    width:100%;
    height:550px;
    object-fit:cover;
    display:block;

}

.project-hero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.10)
    );

    display:flex;
    align-items:flex-end;

}

.project-hero-content{

    padding:50px;
    color:#fff;

}

.project-hero-content h1{

    font-size:48px;
    line-height:1.2;
    margin:15px 0;

}

.breadcrumb{

    font-size:14px;
    opacity:.9;

}

.breadcrumb a{

    color:#fff;
    text-decoration:none;

}

.project-meta{

    display:flex;
    gap:25px;
    flex-wrap:wrap;
    margin-top:20px;

}

.meta-item{

    background:rgba(255,255,255,.15);
    padding:10px 16px;
    border-radius:30px;
    backdrop-filter:blur(8px);

}

.project-container{

    max-width:900px;
    margin:auto;

}

.project-lead{

    font-size:20px;
    line-height:1.9;
    color:#444;
    margin:50px 0;

}
.project-content{

    margin:60px 0;

}

.project-content h2{

    font-size:34px;
    margin-bottom:25px;

}

.project-text{

    font-size:18px;
    line-height:1.9;
    color:#555;

}

.project-benefits{

    margin:80px 0;

}

.benefits-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.benefit{

    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.benefit span{

    font-size:42px;
    display:block;
    margin-bottom:20px;

}

.benefit h3{

    margin-bottom:15px;

}

.project-cta{

    margin:90px 0;

}

.cta-box{

    background:#111;
    color:#fff;
    padding:60px;
    border-radius:20px;
    text-align:center;

}

.cta-box h2{

    font-size:38px;
    margin-bottom:20px;

}

.cta-box p{

    max-width:750px;
    margin:0 auto 35px;

}

.btn-whatsapp{

    display:inline-block;
    padding:18px 35px;
    background:#25D366;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;

}

.related-projects{

    margin:80px 0;

}

.related-grid{

    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:25px;

}

.related-card{

    text-decoration:none;
    color:#222;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.related-card img{

    width:100%;
    height:220px;
    object-fit:cover;

}

.related-card h3{

    padding:20px;
    font-size:18px;

}

@media(max-width:900px){

    .benefits-grid{

        grid-template-columns:1fr;

    }

    .cta-box{

        padding:35px;

    }

}
.work-process{

    margin:100px 0;

}

.process-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.process-item{

    text-align:center;
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.process-number{

    width:65px;
    height:65px;
    border-radius:50%;
    background:#008de1;
    color:#fff;
    font-size:28px;
    font-weight:bold;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 25px;

}

.process-item h3{

    margin-bottom:15px;

}

.faq{

    margin:100px 0;

}

.faq-item{

    background:#fff;
    border-radius:15px;
    padding:30px;
    margin-bottom:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.07);

}

.faq-item h3{

    margin-bottom:15px;

}

.final-cta{

    margin:120px 0;
    text-align:center;

}

.final-cta h2{

    font-size:42px;
    margin-bottom:20px;

}

.final-cta p{

    max-width:700px;
    margin:0 auto 35px;

}

@media(max-width:900px){

.process-grid{

grid-template-columns:1fr;

}

}
.highlight-icon{

    width:64px;
    height:64px;
    margin:0 auto 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#eef6ff;
    border-radius:18px;
    color:#008de1;

}

.highlight-icon svg{

    width:32px;
    height:32px;

}

/* ==========================================================
   NAVEGACIÓN ANTERIOR / SIGUIENTE
========================================================== */

.project-navigation{

    margin:45px auto;
    max-width:1200px;

}

.project-nav-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;

}

.project-nav-left,
.project-nav-right{

    background:#fff;
    border-radius:14px;
    padding:22px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.project-nav-right{

    text-align:right;

}

.project-nav-left span,
.project-nav-right span{

    display:block;
    font-size:13px;
    color:#888;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;

}

.project-nav-left a,
.project-nav-right a{

    color:#222;
    text-decoration:none;
    font-weight:600;
    font-size:18px;
    line-height:1.4;

}

.project-nav-left a:hover,
.project-nav-right a:hover{

    color:#008de1;

}


/* ==========================================================
   IMAGEN PRINCIPAL
========================================================== */

.project-image-full{

    width:min(1200px,95%);
    margin:50px auto;

}

.project-image-full img{

    width:100%;
    display:block;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.12);

}


/* ==========================================================
   BADGE CATEGORÍA
========================================================== */

.project-category-badge{

    display:inline-block;
    background:#008de1;
    color:#fff;
    padding:10px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    margin-bottom:35px;

}


/* ==========================================================
   CONTENIDO CATEGORÍAS
========================================================== */

.category-section{

    margin:70px 0;

}

.category-section h2{

    font-size:34px;
    margin-bottom:25px;

}

.category-section p{

    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;

}


/* ==========================================================
   TARJETAS CATEGORÍA
========================================================== */

.category-highlights{

    margin:80px 0;

}

.highlight-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.highlight-card{

    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.07);
    transition:.25s;

}

.highlight-card:hover{

    transform:translateY(-5px);

}

.highlight-card h3{

    margin:20px 0 15px;

}

.highlight-card p{

    margin:0;
}


/* ==========================================================
   ICONOS SVG
========================================================== */

.highlight-icon{

    width:68px;
    height:68px;
    background:#eef7ff;
    color:#008de1;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;

}

.highlight-icon svg{

    width:34px;
    height:34px;

}


/* ==========================================================
   RELACIONADOS
========================================================== */

.related-content{

    padding:20px;

}

.related-content h3{

    margin:0;
    font-size:18px;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1000px){

    .highlight-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:650px){

    .highlight-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:900px){

.project-nav-grid{

grid-template-columns:1fr;

}

.project-nav-right{

text-align:left;

}

.category-section h2{

font-size:28px;

}

.category-section p{

font-size:17px;

}

}

/*==================================================
PAGINACIÓN
==================================================*/

.pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;

    margin:70px 0;

}

.page-number,
.page-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:48px;

    height:48px;

    padding:0 18px;

    border-radius:12px;

    background:#fff;

    color:#0A2540;

    text-decoration:none;

    font-weight:600;

    border:1px solid #dbe4ef;

    transition:.25s;

}

.page-number:hover,
.page-btn:hover{

    background:#0A2540;

    color:#fff;

    border-color:#0A2540;

}

.page-number.active{

    background:#0A2540;

    color:#fff;

    border-color:#0A2540;

}