
/* =========================
   COMMON
========================= */

.fibro-section-label {
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(0,0,0,0.45);
}

.fibro-section-line {
    width: 54px;
    height: 1px;
    background: rgba(0,0,0,0.18);
    margin: 28px 0;
}


/* =========================
   HERO
========================= */

.fibro-hero {
    width: 100%;
    min-height: 980px;
    display: grid;
    grid-template-columns: 50% 50%;
    overflow: hidden;
}

.fibro-hero-content {
    background: #fdfcfd;
    padding: 36px 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fibro-hero-title {
    font-size: 70px;
    line-height: 1.08;
    font-weight: 300;
    color: #1d1d1d;
    margin-bottom: 40px;
}

.fibro-hero-description {
    max-width: 400px;
    font-size: 24px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
}

.fibro-hero-image{
    background: #fdfcfd;
}

.fibro-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   SURFACES
========================= */

.surfaces-section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 1100px;
}

.surfaces-sidebar {
    background: #f5f5f3;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.surfaces-title {
    font-size: 70px;
    line-height: 1.05;
    font-weight: 300;
    color: #1d1d1d;
}

.surfaces-description {
    margin-bottom: 60px;
    font-size: 24px;
    line-height: 1.8;
    color: #666;
    max-width: 360px;
}

.surfaces-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.surfaces-list li {
    position: relative;
    padding-left: 42px;
    font-size: 20px;
    color: #444;
}

.surfaces-list li::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 1px;
    background: #999;
    left: 0;
    top: 10px;
}

/* GRID */

.surfaces-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 416px;
    gap: 4px;
    background: #fff;
}

.surfaces-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 340px;
    gap: 4px;
    background: #fff;
}

.surface-large {
    grid-column: span 1;
    grid-row: span 2;
}

.surface-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* =========================
   TECHNOLOGY
========================= */

.technology-section {
    position: relative;
    min-height: 140vh;
    overflow: hidden;
}

.technology-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.technology-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technology-content {
    position: relative;
    z-index: 2;
    min-height: 980px;
    display: flex;
    align-items: center;
    padding: 80px 70px;
}

.technology-left {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 10%;
}

.technology-title {
    font-size: 70px;
    line-height: 1.08;
    font-weight: 300;
    color: #1d1d1d;
    margin-bottom: 50px;
}

.technology-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.technology-list li {
    font-size: 22px;
    color: #444;
    display: flex;
    gap: 20px;
}

.technology-list li img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

.technology-description {
    font-size: 22px;
    line-height: 1.8;
    color: #555;
}

/* =========================
   MATERIAL
========================= */

.material-section {
    width: 100%;
}

.material-content {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 920px;
    background: #f7f7f5;
}

.material-left {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.material-title {
    font-size: 70px;
    line-height: 1.08;
    font-weight: 300;
    color: #1d1d1d;
}

.material-description {
    font-size: 22px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 46px;
}

.material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   ADAPTIVE
========================= */

@media (max-width: 1400px) {

    .technology-title,
    .material-title {
        font-size: 56px;
    }
}

@media (max-width: 992px) {

    .material-content {
        grid-template-columns: 1fr;
    }

    .material-image {
        height: 600px;
    }

    .technology-content,
    .material-left {
        padding: 60px 30px;
    }

    .technology-title,
    .material-title {
        font-size: 46px;
    }
}

@media (max-width: 768px) {

    .technology-content,
    .material-left {
        padding: 40px 20px;
    }

    .technology-title,
    .material-title {
        font-size: 36px;
    }

    .technology-list li,
    .material-description {
        font-size: 16px;
    }
}



/* =========================
   ADAPTIVE
========================= */

@media (max-width: 1400px) {

    .fibro-hero-title,
    .surfaces-title {
        font-size: 56px;
    }

    .surfaces-section {
        grid-template-columns: 420px 1fr;
    }
}

@media (max-width: 992px) {

    .fibro-hero {
        grid-template-columns: 1fr;
    }

    .fibro-hero-image {
        height: 600px;
    }

    .surfaces-section {
        grid-template-columns: 1fr;
    }

    .surfaces-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .surface-large {
        grid-row: span 1;
    }

    .fibro-hero-content,
    .surfaces-sidebar {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {

    .fibro-hero-title,
    .surfaces-title {
        font-size: 40px;
    }

    .fibro-hero-description,
    .surfaces-description {
        font-size: 16px;
    }

    .surfaces-grid {
        grid-template-columns: 1fr;
    }

    .fibro-hero-content,
    .surfaces-sidebar {
        padding: 40px 20px;
    }
}

/* =========================
   ADAPTIVE
========================= */

@media (max-width: 1200px) {

    .hero-title,
    .section-title,
    .facades-title {
        font-size: 48px;
    }

    .about-title,
    .solution-title,
    .environment-title {
        font-size: 44px;
    }

    .environment-background-text {
        font-size: 72px;
    }

    .environment-background-text span {
        font-size: 52px;
    }
}

@media (max-width: 992px) {

    .hero-grid,
    .reputation-grid,
    .environment-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-image,
    .reputation-image,
    .environment-image,
    .solution-image {
        height: 500px;
    }

    .about-content,
    .hero-content,
    .reputation-content,
    .environment-content,
    .solution-content {
        padding: 60px 40px;
    }

    .facades-info {
        left: 40px;
        top: 60px;
    }
}

@media (max-width: 768px) {

    .container {
        padding: 0 16px;
    }

    .hero-title,
    .section-title,
    .facades-title {
        font-size: 36px;
    }

    .about-title,
    .solution-title,
    .environment-title {
        font-size: 34px;
    }

    .about-content,
    .hero-content,
    .reputation-content,
    .environment-content,
    .solution-content {
        padding: 40px 24px;
    }

    .facades-info {
        left: 24px;
        top: 40px;
    }

    .environment-background-text {
        font-size: 48px;
    }

    .environment-background-text span {
        font-size: 36px;
    }
}



@media (max-width: 1440px)
{
    body .hero-title{font-size: 60px;}
    .fibro-hero-content{padding: 36px 0px 80px 70px;}
    body .descrip{font-size: 20px}
}

@media (max-width: 1320px)
{
    .surfaces-section{grid-template-columns: .5fr 1fr;}
}

@media (max-width: 1200px)
{
    body .hero-title{font-size: 52px;}
    body .technology-title{font-size: 48px;}
    .technology-left{max-width: 40%;}
}




/*mobile*/

@media (max-width:560px )
{

    .container{padding: 0;}
    body .hero-title{font-size: 28px;}
    body .descrip{font-size: 16px;}
    .fibro-hero-content{padding: 36px 0px 36px 24px;}
    .fibro-hero-image, .material-image{height: auto;}
    .surfaces-section{grid-template-columns: 100%}
    .surfaces-grid{grid-auto-rows: 200px}
    .technology-background img{object-position: 5%;}
    .technology-left{max-width: 100%;}
    .technology-content{min-height: auto}
    .technology-section{min-height: 65vh;}
    
}