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

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

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

.acoustic-hero-title {
    font-size: 70px;
    line-height: 1.05;
    font-weight: 400;
    color: #1d1d1d;
    margin-bottom: 34px;
}

.acoustic-hero-description {
    max-width: 420px;
    font-size: 22px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 60px;
}

.acoustic-features {
    display: flex;
    gap: 0px;
    margin-bottom: 60px;
}

.acoustic-feature {
    max-width: 200px;
    padding: 0 15px;
}

.acoustic-feature + .acoustic-feature{
    border-left: 1px solid #ccc;
}
.acoustic-feature-icon {
    width: 28px;
    margin-bottom: 18px;
}

.acoustic-feature-icon img {
    width: 100%;
    display: block;
}

.acoustic-feature-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

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

/* =========================
   TEXTURES
========================= */

.textures-section {
    width: 100%;
    background: #fff;
    padding: 70px 70px 90px;
}

.textures-header {
    margin-bottom: 50px;
}

.textures-title {
    font-size: 70px;
    line-height: 1.05;
    font-weight: 400;
    color: #1d1d1d;
    margin-bottom: 24px;
}

.textures-description {
    max-width: 520px;
    font-size: 22px;
    line-height: 1.7;
    color: #666;
}

.textures-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.texture-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.texture-card:hover{
    box-shadow: 1px 1px 5px 3px #ccc;
}

.texture-card-image {
    aspect-ratio: 1 / 1.2;
}

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

.texture-card-content {
    padding: 18px;
}

.texture-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1d;
    margin-bottom: 8px;
}

.texture-card-category {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.texture-card-color {
    font-size: 18px;
    line-height: 1.5;
    color: #444;
}


/* =========================
   ABOUT ACOUSTIC
========================= */

.about-acoustic {
    width: 100%;
    overflow: hidden;
}

.about-acoustic-content {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 980px;
}

/* LEFT */

.about-acoustic-left {
    background: #f5f5f3;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-acoustic-title {
    font-size: 70px;
    line-height: 1.05;
    font-weight: 400;
    color: #1d1d1d;
    margin-bottom: 46px;
}

.about-acoustic-description {
    max-width: 450px;
    font-size: 22px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 26px;
}

.about-acoustic-features {
    display: flex;
    gap: 0;
    margin: 56px 0 60px;
}

.about-acoustic-feature {
    padding: 0 30px;
    border-right: 1px solid rgba(0,0,0,0.08);
}

.about-acoustic-feature:first-child {
    padding-left: 0;
}

.about-acoustic-feature:last-child {
    border-right: none;
}

.about-acoustic-feature-icon {
    width: 40px;
    margin-bottom: 18px;
}

.about-acoustic-feature-icon img {
    width: 100%;
    display: block;
}

.about-acoustic-feature-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* RIGHT */

.about-acoustic-right {
    position: relative;
}

.about-acoustic-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ZOOM */

.about-acoustic-zoom {
    position: absolute;
    left: -20px;
    bottom: 40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.9);
    z-index: 3;
}

.about-acoustic-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LINE */

.about-acoustic-line {
    position: absolute;
    left: 190px;
    bottom: 192px;
    width: 180px;
    height: 1px;
    background: rgba(255,255,255,0.9);
    transform: rotate(-22deg);
    transform-origin: left center;
    z-index: 2;
}

/* DOT */

.about-acoustic-dot {
    position: absolute;
    left: 360px;
    bottom: 260px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6c6c6c;
    z-index: 3;
}

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

@media (max-width: 1400px) {

    .about-acoustic-title {
        font-size: 56px;
    }
}

@media (max-width: 992px) {

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

    .about-acoustic-right {
        min-height: 700px;
    }

    .about-acoustic-left {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {

    .about-acoustic-left {
        padding: 40px 20px;
    }

    .about-acoustic-title {
        font-size: 40px;
    }

    .about-acoustic-description {
        font-size: 18px;
    }

    .about-acoustic-features {
        flex-direction: column;
        gap: 30px;
    }

    .about-acoustic-feature {
        padding: 0;
        border: none;
    }

    .about-acoustic-zoom {
        width: 160px;
        height: 160px;
        left: 10px;
        bottom: 20px;
    }

    .about-acoustic-line,
    .about-acoustic-dot {
        display: none;
    }
}











/* =========================
   HOW WORKS
========================= */

.how-works {
    width: 100%;
    display: grid;
    grid-template-columns: 30% 70%;
}

/* LEFT */

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

.how-works-title {
    font-size: 70px;
    line-height: 1.05;
    font-weight: 400;
    color: #1d1d1d;
    margin-bottom: 40px;
}

.how-works-description {
    max-width: 600px;
    font-size: 22px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 60px;
}

/* FEATURES */

.how-works-features {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.how-works-feature {
    display: flex;
    gap: 28px;
    padding: 34px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.how-works-feature:first-child {
    padding-top: 0;
}

.how-works-feature-icon {
    flex-shrink: 0;
}

.how-works-feature-icon img {
    width: 100%;
    display: block;
}

.how-works-feature-title {
    font-size: 24px;
    line-height: 1.4;
    color: #1d1d1d;
    margin-bottom: 12px;
}

.how-works-feature-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

/* RIGHT */

.how-works-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px 0 0 4px;
}

.how-works-image {
    width: 100%;
    display: block;
}

/* WAVE */

.how-works-wave {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* STEPS */

.wave-step {
    position: absolute;
    max-width: 260px;
}

.wave-step span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #1d1d1d;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.wave-step-title {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 10px;
}

.wave-step-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.wave-step-1 {
    left: 12%;
    top: 60%;
}
/*.wave-step-1:after{
    position: absolute;
    height: 300px;
    width: 1px;
    background: #fff;
    content: '';
    left: 20px;
    bottom: 210px;
}*/

.wave-step-2 {
    left: 45%;
    top: 60%;
}

.wave-step-3 {
    right: 3%;
    top: 60%;
}

/* STATS */

.how-works-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f1f1ef;
    border-radius: 4px 0 0 0;
    margin: 20px 0;
}

.how-works-stat {
    padding: 34px 36px;
    border-right: 1px solid rgba(0,0,0,0.08);
}

.how-works-stat:last-child {
    border-right: none;
}

.how-works-stat-value {
    font-size: 58px;
    line-height: 1;
    font-weight: 300;
    color: #1d1d1d;
    margin-bottom: 20px;
}

.how-works-stat-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.how-works-stat-icon {
    width: 40px;
    margin-bottom: 20px;
}

.how-works-stat-icon img {
    width: 100%;
    display: block;
}

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

@media (max-width: 1400px) {

    .how-works-title {
        font-size: 56px;
    }

    .how-works-stat-value {
        font-size: 44px;
    }
}

@media (max-width: 1200px) {

    .how-works {
        grid-template-columns: 1fr;
    }

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

    .wave-step-3 {
        right: 3%;
    }
}

@media (max-width: 992px) {

    .how-works-left {
        padding: 60px 30px;
    }

    .how-works-stats {
        grid-template-columns: 1fr;
    }

    .wave-step {
        position: static;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .how-works-wave {
        position: relative;
        padding: 40px 20px;
        background: rgba(0,0,0,0.55);
    }

    .how-works-wave::before {
        display: none;
    }
}

@media (max-width: 768px) {

    .how-works-left {
        padding: 40px 20px;
    }

    .how-works-title {
        font-size: 40px;
    }

    .how-works-description {
        font-size: 18px;
    }

    .how-works-feature-title {
        font-size: 20px;
    }

    .how-works-feature-text,
    .how-works-stat-text {
        font-size: 16px;
    }

    .how-works-stat {
        padding: 24px 20px;
    }
}







/* =========================
   INTERIOR SOLUTIONS
========================= */

.interior-solutions {
    width: 100%;
    display: grid;
    grid-template-columns: 30% 70%;
    background: #f5f5f3;
}

/* SIDEBAR */

.interior-solutions-sidebar {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.interior-solutions-title {
    font-size: 70px;
    line-height: 1.05;
    font-weight: 400;
    color: #1d1d1d;
    margin: 28px 0 34px;
}

.interior-solutions-description {
    max-width: 400px;
    font-size: 22px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 60px;
}

/* FEATURES */

.interior-solutions-features {
    display: flex;
    flex-direction: column;
    gap: 38px;
    margin-bottom: 70px;
}

.interior-solutions-feature {
    display: flex;
    gap: 22px;
}

.interior-solutions-feature-icon {
    flex-shrink: 0;
}

.interior-solutions-feature-icon img {
    width: 100%;
    display: block;
}

.interior-solutions-feature-title {
    font-size: 24px;
    line-height: 1.5;
    color: #1d1d1d;
    margin-bottom: 10px;
}

.interior-solutions-feature-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

/* GRID */

.interior-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px 10px 10px 0;
}

/* CARD */

.interior-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 520px;
    display: block;
}

.interior-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.05)
    );
    z-index: 1;
}

.interior-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ICON */

.interior-card-icon {
    position: absolute;
    left: 18px;
    top: 18px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.interior-card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* CONTENT */

.interior-card-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 3;
}

.interior-card-title {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 10px;
}

.interior-card-subtitle {
    font-size: 26px;
    line-height: 1.4;
    color: rgba(255,255,255,0.82);
}

/* HOVER */

.interior-card:hover .interior-card-image {
    transform: scale(1.03);
}

.interior-card-image {
    transition: transform .5s ease;
}

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

@media (max-width: 1600px) {

    .interior-solutions-title {
        font-size: 56px;
    }

    .interior-card-title {
        font-size: 34px;
    }

    .interior-card-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {

    .interior-solutions {
        grid-template-columns: 1fr;
    }

    .interior-solutions-grid {
        padding: 0 10px 10px;
    }
}

@media (max-width: 992px) {

    .interior-solutions-grid {
        grid-template-columns: 1fr;
    }

    .interior-solutions-sidebar {
        padding: 60px 30px;
    }

    .interior-card {
        min-height: 460px;
    }
}

@media (max-width: 768px) {

    .interior-solutions-sidebar {
        padding: 40px 20px;
    }

    .interior-solutions-title {
        font-size: 40px;
    }

    .interior-solutions-description {
        font-size: 18px;
    }

    .interior-solutions-feature-title {
        font-size: 20px;
    }

    .interior-solutions-feature-text {
        font-size: 16px;
    }

    .interior-card-title {
        font-size: 28px;
    }

    .interior-card-subtitle {
        font-size: 18px;
    }

    .interior-card-icon {
        width: 50px;
        height: 50px;
    }

    .interior-card-icon img {
        width: 22px;
        height: 22px;
    }
}





/* =========================
   GLOBAL RADIUS
========================= */

.dark-button,
.light-button,
.texture-card,
.contact-button,
.header-button,
.header-dropdown-menu {
    border-radius: 4px;
}

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

@media (max-width: 1400px) {

    .acoustic-hero-title,
    .textures-title {
        font-size: 56px;
    }

    .textures-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {

    .textures-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .acoustic-features {
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {

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

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

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

    .acoustic-hero-content,
    .textures-section {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {

    .acoustic-hero-title,
    .textures-title {
        font-size: 40px;
    }

    .acoustic-hero-description,
    .textures-description {
        font-size: 18px;
    }

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

    .acoustic-hero-content,
    .textures-section {
        padding: 40px 20px;
    }

    .acoustic-features {
        gap: 30px;
    }
}

/* =========================
   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:560px )
{

    .container{padding: 0;}
    body .hero-title{font-size: 28px;}
    body .descrip{font-size: 16px;}
    .acoustic-hero-image{height: auto;}
    .acoustic-feature{max-width: unset;}
    .acoustic-feature {border-left: 1px solid #ccc;}
    .textures-grid{grid-template-columns: 1fr 1fr}
    .about-acoustic-right{min-height: auto;}
    .about-acoustic-zoom {width: 60px;height: 60px;}
    
}