/* =========================================================
   PÁGINA EMPRESA — OMG TÊXTIL
========================================================= */


/* =========================================================
   HERO
========================================================= */

.empresa-hero {
    position: relative;

    padding: 155px 0 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(21, 88, 190, 0.09),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f7fb 100%
        );
}

.empresa-hero .container {
    position: relative;
    z-index: 2;
}

.empresa-hero .container > span {
    display: inline-flex;

    align-items: center;

    padding: 9px 15px;
    margin-bottom: 22px;

    border-radius: 999px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 11px;
    font-weight: 900;
    line-height: 1;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.empresa-hero h1 {
    max-width: 820px;

    margin: 0 0 24px;

    color: var(--black);

    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.98;

    letter-spacing: -2px;
}

.empresa-hero p {
    max-width: 720px;

    margin: 0;

    color: var(--text);

    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   INTRODUÇÃO
========================================================= */

.empresa-intro {
    padding: 110px 0;

    background: #ffffff;
}

.empresa-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, 0.85fr);

    align-items: center;

    gap: 80px;
}

.empresa-text {
    max-width: 760px;
}

.empresa-text .section-tag {
    display: inline-flex;

    align-items: center;

    padding: 8px 13px;
    margin-bottom: 22px;

    border-radius: 999px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 10px;
    font-weight: 900;
    line-height: 1;

    letter-spacing: 1.5px;
}

.empresa-text h2 {
    margin: 0 0 27px;

    color: var(--black);

    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 1.04;

    letter-spacing: -1.2px;
}

.empresa-text p {
    max-width: 720px;

    margin: 0 0 19px;

    color: var(--text);

    font-size: 16px;
    line-height: 1.8;
}

.empresa-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CARD +10 ANOS
========================================================= */

.empresa-card {
    position: relative;

    display: flex;

    min-height: 420px;

    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

    padding: 48px;

    border-radius: 34px;

    background:
        radial-gradient(
            circle at 75% 15%,
            rgba(255, 255, 255, 0.16),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-dark)
        );

    box-shadow:
        0 30px 65px
        rgba(21, 88, 190, 0.23);

    color: #ffffff;
}

.empresa-card::before {
    position: absolute;

    top: -75px;
    right: -65px;

    width: 230px;
    height: 230px;

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    border-radius: 50%;

    content: "";
}

.empresa-card::after {
    position: absolute;

    top: -18px;
    right: -10px;

    width: 115px;
    height: 115px;

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius: 50%;

    content: "";
}

.empresa-card strong,
.empresa-card span {
    position: relative;
    z-index: 2;
}

.empresa-card strong {
    display: block;

    margin-bottom: 14px;

    color: #ffffff;

    font-size:
        clamp(76px, 8vw, 112px);

    font-weight: 900;
    line-height: 0.82;

    letter-spacing: -5px;
}

.empresa-card span {
    max-width: 270px;

    color:
        rgba(255, 255, 255, 0.84);

    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   NÚMEROS COMERCIAIS
========================================================= */

.empresa-numeros {
    padding: 0 0 110px;

    background: #ffffff;
}

.numeros-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 26px;

    background: #f6f8fb;

    box-shadow: var(--shadow-sm);
}

.numeros-grid > div {
    position: relative;

    display: flex;

    min-height: 155px;

    flex-direction: column;
    justify-content: center;

    padding: 30px 28px;

    text-align: center;
}

.numeros-grid > div + div {
    border-left:
        1px solid
        var(--border);
}

.numeros-grid strong {
    display: block;

    margin-bottom: 8px;

    color: var(--primary);

    font-size:
        clamp(23px, 2.2vw, 31px);

    font-weight: 900;
    line-height: 1.1;
}

.numeros-grid span {
    color: var(--text);

    font-size: 14px;
    line-height: 1.45;
}


/* =========================================================
   GRANDES NÚMEROS
========================================================= */

.empresa-dados {
    padding: 105px 0;

    background: #f6f8fb;
}

.empresa-dados-box {
    overflow: hidden;

    padding: 64px 70px;

    border-radius: 32px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(38, 111, 226, 0.25),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #061e45 0%,
            #082c63 58%,
            #0d4fb3 100%
        );

    box-shadow:
        0 30px 70px
        rgba(6, 30, 69, 0.18);
}


/* =========================================================
   CABEÇALHO DOS GRANDES NÚMEROS
========================================================= */

.empresa-dados-header {
    max-width: 760px;

    margin:
        0
        auto
        54px;

    text-align: center;
}

.empresa-dados-header > span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 8px 14px;
    margin-bottom: 18px;

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.1);

    color: #ffffff;

    font-size: 10px;
    font-weight: 900;
    line-height: 1;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.empresa-dados-header h2 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size:
        clamp(38px, 4.4vw, 56px);

    font-weight: 900;
    line-height: 1.04;

    letter-spacing: -1.2px;
}

.empresa-dados-header p {
    max-width: 620px;

    margin: 0 auto;

    color:
        rgba(255, 255, 255, 0.74);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   GRID DOS GRANDES NÚMEROS
========================================================= */

.empresa-dados-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 70px;
    row-gap: 0;

    max-width: 980px;

    margin: 0 auto;
}

.empresa-dado-item {
    display: grid;

    grid-template-columns:
        minmax(120px, 0.55fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 25px;

    min-height: 112px;

    padding: 22px 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.12);
}

.empresa-dado-item strong {
    display: block;

    color: #ffffff;

    font-size:
        clamp(34px, 3.6vw, 48px);

    font-weight: 900;
    line-height: 1;

    letter-spacing: -1.5px;

    text-align: right;
}

.empresa-dado-item span {
    display: block;

    max-width: 260px;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.empresa-dado-item:nth-last-child(-n + 2) {
    border-bottom: 0;
}


/* =========================================================
   FOTOS E VÍDEOS
========================================================= */

.empresa-midia {
    padding: 105px 0;

    background: #ffffff;
}

.empresa-midia-header {
    max-width: 780px;

    margin:
        0
        auto
        46px;

    text-align: center;
}

.empresa-midia-header h2 {
    margin: 18px 0;

    color: var(--black);

    font-size:
        clamp(38px, 4.5vw, 56px);

    line-height: 1.04;

    letter-spacing: -1.2px;
}

.empresa-midia-header p {
    max-width: 670px;

    margin: 0 auto;

    color: var(--text);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   GRID DE MÍDIA
========================================================= */

.empresa-midia-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.empresa-midia-item {
    position: relative;

    min-width: 0;
    min-height: 320px;

    overflow: hidden;

    margin: 0;

    border-radius: 22px;

    background: #eef1f5;

    box-shadow: var(--shadow-sm);
}

.empresa-midia-item img,
.empresa-midia-item video {
    display: block;

    width: 100%;
    height: 320px;

    object-fit: cover;
    object-position: center;
}

.empresa-midia-video {
    background: #061e45;
}

.empresa-midia-video video {
    background: #000000;
}


/* =========================================================
   PRIMEIRO ITEM MAIOR
========================================================= */

.empresa-midia-destaque {
    grid-column: span 2;
}

.empresa-midia-destaque,
.empresa-midia-destaque img {
    height: 360px;
}

.empresa-midia-grid
    > .empresa-midia-video:first-of-type,
.empresa-midia-grid
    > .empresa-midia-video:first-of-type video {
    min-height: 360px;
    height: 360px;
}


/* =========================================================
   LEGENDAS
========================================================= */

.empresa-midia-item figcaption,
.empresa-midia-label {
    position: absolute;

    z-index: 2;

    right: 16px;
    bottom: 16px;
    left: 16px;

    padding: 11px 14px;

    border-radius: 12px;

    background:
        rgba(6, 30, 69, 0.82);

    backdrop-filter: blur(8px);

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
}


/* =========================================================
   VALORES
========================================================= */

.empresa-valores {
    padding: 110px 0;

    background: #f6f8fb;
}

.empresa-valores .section-title {
    max-width: 780px;

    margin:
        0
        auto
        50px;

    text-align: center;
}

.empresa-valores .section-title > span {
    display: inline-flex;

    align-items: center;

    padding: 8px 13px;
    margin-bottom: 20px;

    border-radius: 999px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 10px;
    font-weight: 900;
    line-height: 1;

    letter-spacing: 1.5px;
}

.empresa-valores .section-title h2 {
    margin: 0 0 22px;

    color: var(--black);

    font-size:
        clamp(40px, 4.5vw, 58px);

    line-height: 1.04;

    letter-spacing: -1.2px;
}

.empresa-valores .section-title p {
    max-width: 700px;

    margin: 0 auto;

    color: var(--text);

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   CARDS DE VALORES
========================================================= */

.valores-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.valor-card {
    position: relative;

    min-height: 235px;

    overflow: hidden;

    padding: 36px 32px;

    border: 1px solid var(--border);
    border-radius: 26px;

    background: #ffffff;

    box-shadow: var(--shadow-sm);

    text-align: center;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.valor-card::before {
    display: flex;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    margin:
        0
        auto
        30px;

    border-radius: 13px;

    background: var(--primary-light);

    color: var(--primary);

    content: "✓";

    font-size: 18px;
    font-weight: 900;
}

.valor-card:hover {
    border-color:
        rgba(21, 88, 190, 0.22);

    box-shadow: var(--shadow-md);

    transform: translateY(-6px);
}

.valor-card h3 {
    margin: 0 0 14px;

    color: var(--black);

    font-size: 25px;
    line-height: 1.15;
}

.valor-card p {
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .empresa-hero {
        padding: 130px 0 75px;
    }

    .empresa-hero h1 {
        font-size: 56px;
    }

    .empresa-intro {
        padding: 88px 0;
    }

    .empresa-grid {
        grid-template-columns: 1fr;

        gap: 48px;
    }

    .empresa-text {
        max-width: 760px;

        margin: 0 auto;

        text-align: center;
    }

    .empresa-card {
        min-height: 330px;
    }


    /* NÚMEROS COMERCIAIS */

    .empresa-numeros {
        padding-bottom: 88px;
    }

    .numeros-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .numeros-grid > div + div {
        border-left: 0;
    }

    .numeros-grid > div:nth-child(even) {
        border-left:
            1px solid
            var(--border);
    }

    .numeros-grid > div:nth-child(n + 3) {
        border-top:
            1px solid
            var(--border);
    }


    /* GRANDES NÚMEROS */

    .empresa-dados {
        padding: 85px 0;
    }

    .empresa-dados-box {
        padding: 52px 46px;
    }

    .empresa-dados-grid {
        column-gap: 40px;
    }

    .empresa-dado-item {
        grid-template-columns:
            minmax(100px, 0.5fr)
            minmax(0, 1fr);

        gap: 20px;
    }


    /* MÍDIA */

    .empresa-midia {
        padding: 85px 0;
    }

    .empresa-midia-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .empresa-midia-destaque {
        grid-column: span 1;
    }

    .empresa-midia-destaque,
    .empresa-midia-destaque img,
    .empresa-midia-grid
        > .empresa-midia-video:first-of-type,
    .empresa-midia-grid
        > .empresa-midia-video:first-of-type video {
        min-height: 320px;
        height: 320px;
    }


    /* VALORES */

    .empresa-valores {
        padding: 88px 0;
    }

    .valores-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .valor-card:last-child {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .empresa-hero {
        padding: 108px 0 58px;
    }

    .empresa-hero .container > span {
        margin-bottom: 18px;

        font-size: 9px;
    }

    .empresa-hero h1 {
        margin-bottom: 19px;

        font-size: 42px;
        line-height: 1;

        letter-spacing: -1.3px;
    }

    .empresa-hero p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* INTRO */

    .empresa-intro {
        padding: 66px 0;
    }

    .empresa-grid {
        gap: 38px;
    }

    .empresa-text h2 {
        margin-bottom: 22px;

        font-size: 34px;
        line-height: 1.08;
    }

    .empresa-text p {
        font-size: 15px;
        line-height: 1.75;
    }

    .empresa-card {
        min-height: 285px;

        padding: 34px 28px;

        border-radius: 26px;
    }

    .empresa-card strong {
        font-size: 76px;

        letter-spacing: -4px;
    }

    .empresa-card span {
        max-width: 230px;

        font-size: 15px;
    }


    /* NÚMEROS COMERCIAIS */

    .empresa-numeros {
        padding-bottom: 66px;
    }

    .numeros-grid {
        grid-template-columns: 1fr;

        border-radius: 22px;
    }

    .numeros-grid > div {
        min-height: auto;

        padding: 25px 24px;
    }

    .numeros-grid > div:nth-child(even) {
        border-left: 0;
    }

    .numeros-grid > div + div,
    .numeros-grid > div:nth-child(n + 3) {
        border-top:
            1px solid
            var(--border);
    }

    .numeros-grid strong {
        font-size: 24px;
    }


    /* GRANDES NÚMEROS */

    .empresa-dados {
        padding: 65px 0;
    }

    .empresa-dados-box {
        padding: 38px 24px;

        border-radius: 24px;
    }

    .empresa-dados-header {
        margin-bottom: 36px;
    }

    .empresa-dados-header h2 {
        font-size: 34px;
    }

    .empresa-dados-header p {
        font-size: 14px;
    }

    .empresa-dados-grid {
        grid-template-columns: 1fr;

        max-width: 100%;
    }

    .empresa-dado-item {
        grid-template-columns:
            105px
            minmax(0, 1fr);

        gap: 18px;

        min-height: auto;

        padding: 20px 0;
    }

    .empresa-dado-item strong {
        font-size: 32px;

        text-align: right;
    }

    .empresa-dado-item span {
        max-width: none;

        font-size: 14px;
    }

    .empresa-dado-item:nth-last-child(-n + 2) {
        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.12);
    }

    .empresa-dado-item:last-child {
        border-bottom: 0;
    }


    /* MÍDIA */

    .empresa-midia {
        padding: 65px 0;
    }

    .empresa-midia-header {
        margin-bottom: 32px;
    }

    .empresa-midia-header h2 {
        font-size: 34px;
    }

    .empresa-midia-header p {
        font-size: 15px;
    }

    .empresa-midia-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .empresa-midia-destaque {
        grid-column: auto;
    }

    .empresa-midia-item,
    .empresa-midia-item img,
    .empresa-midia-item video,
    .empresa-midia-destaque,
    .empresa-midia-destaque img,
    .empresa-midia-grid
        > .empresa-midia-video:first-of-type,
    .empresa-midia-grid
        > .empresa-midia-video:first-of-type video {
        min-height: 0;
        height: 280px;
    }

    .empresa-midia-item figcaption,
    .empresa-midia-label {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }


    /* VALORES */

    .empresa-valores {
        padding: 66px 0;
    }

    .empresa-valores .section-title {
        margin-bottom: 34px;
    }

    .empresa-valores .section-title h2 {
        font-size: 34px;
        line-height: 1.08;
    }

    .empresa-valores .section-title p {
        font-size: 15px;
        line-height: 1.7;
    }

    .valores-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .valor-card,
    .valor-card:last-child {
        min-height: auto;

        grid-column: auto;

        padding: 28px 25px;

        border-radius: 21px;
    }

    .valor-card::before {
        margin-bottom: 22px;
    }

    .valor-card h3 {
        font-size: 22px;
    }

}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .valor-card {
        transition: none;
    }

}