/* ================================
   VARIÁVEIS
================================ */

:root {
    --primary: #0f2f3a;
    --secondary: #1f6d7a;
    --accent: #4db89f;
    --dark: #101b22;
    --light: #f4f7f8;
    --text: #52616a;
    --white: #ffffff;
    --border: #dbe5e8;
}


/* ================================
   RESET / BASE
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* ================================
   HEADER
================================ */

.header {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header .container {
    width: min(1500px, 96%);
}

.header-content {
    height: 120px;
    background: #fff;
    border-radius: 18px;

    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    align-items: center;
    column-gap: 34px;

    padding: 0 38px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 82px;
}

/* Menu */

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-left: 0;
}

.menu a {
    font-size: 13px;
    font-weight: 700;
    color: #3d4348;
    white-space: nowrap;
}

.menu a:hover {
    color: var(--accent);
}

/* Contato */

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 0;
}

.header-whats {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    line-height: 1;
}

.header-whats i {
    line-height: 1;
}

.header-contact div {
    min-width: 112px;
}

.header-contact span {
    display: block;
    font-size: 12px;
    color: #7b7b7b;
    line-height: 1;
}

.header-contact strong {
    display: block;
    margin-top: 4px;
    color: #2e3337;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

/* Botão */

.header-btn {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--accent);
    color: #fff;
    padding: 0 28px;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}


/* ================================
   FAIXA DE CONTRATAÇÃO
================================ */

.header-hiring{
    position:absolute;
    top:165px;
    left:50%;
    transform:translateX(-50%);
    z-index:998;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    padding:8px 18px;

    width:max-content;
    max-width:92%;

    background:rgba(255,255,255,.95);

    border-radius:6px; /* antes era 999px */

    box-shadow:0 6px 16px rgba(0,0,0,.08);

    text-decoration:none;

    font-size:11px; /* antes 12px */
    line-height:1.1;
    text-transform:uppercase;
}

.header-hiring strong{
    color:var(--primary);
    font-weight:800;
}

.header-hiring .hiring-text{
    color:#555;
    font-weight:500;
}

.header-hiring .hiring-link{
    color:var(--secondary);
    font-weight:700;
    transition:.25s;
}

@media(max-width:900px){
    .header-hiring{
        width:92%;
        flex-direction:column;
        gap:4px;
        text-align:center;
        border-radius:18px;
    }

    .header-hiring .hiring-text,
    .header-hiring span{
        white-space:normal;
    }
}


/* ================================
   HERO
================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 47, 58, .72);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
}

.tag,
.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-title{
    margin-bottom:24px;
}

.hero-number{
    display:flex;
    align-items:flex-end;
    gap:14px;

    font-family:'Montserrat',sans-serif;
    line-height:.85;
}

.hero-number .plus,
.hero-number .de{
    display:block;
}

.hero-number .plus-de{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-end;
    gap:2px;
    margin-bottom:8px;
}

.hero-number .plus{
    font-size:72px;
    font-weight:900;
    color:#fff;
    line-height:.8;
}

.hero-number .de{
    font-size:34px;
    font-weight:900;
    color:#fff;
    line-height:.8;
}

.hero-number .numero{
    font-size:132px;
    font-weight:900;
    color:#fff;
    letter-spacing:-5px;
}

.hero-toneladas{
    font-family:'Montserrat',sans-serif;
    font-size:46px;
    font-weight:200;

    color:#fff;
    text-transform:uppercase;

    line-height:1;
    letter-spacing:-1.8px;

    margin-top:-10px;
}

.hero-frase{
    font-family:'Montserrat',sans-serif;
    font-size:28px;
    font-weight:900;
    line-height:1.1;
    color:#fff;
    text-transform:uppercase;
    max-width:720px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

@media (max-width:768px){

    .hero-number .plus{
        font-size:42px;
    }

    .hero-number .de{
        font-size:26px;
        margin-bottom:6px;
    }

    .hero-number .numero{
        font-size:72px;
        letter-spacing:-2px;
    }

    .hero-toneladas{
        font-size:28px;
    }

    .hero-frase{
        font-size:18px;
    }

}


/* ================================
   BOTÕES
================================ */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 50px;
    font-weight: 800;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
}


/* ================================
   CARDS SOBREPOSTOS DO HERO
================================ */

.hero-features {
    position: relative;
    z-index: 5;
    margin-top: -90px;
    padding-bottom: 70px;
}

.hero-features-box {
    background: #009ca6;
    border-radius: 10px;
    padding: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.hero-feature {
    border: 1px solid rgba(255,255,255,.35);
    padding: 26px 22px;
    text-align: center;
    color: var(--white);
}

.hero-feature i {
    font-size: 30px;
    margin-bottom: 14px;
    color: var(--white);
}

.hero-feature h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.hero-feature p {
    color: rgba(255,255,255,.86);
    line-height: 1.6;
    font-size: 14px;
}


/* ================================
   NÚMEROS
================================ */

.numbers {
    background: #ffae00;
    padding: 38px 0;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.numbers strong {
    display: block;
    color: var(--white);
    font-size: 42px;
    margin-bottom: 6px;
}

.numbers span {
    color: var(--white);
    font-weight: 700;
}


/* ================================
   CONFIGURAÇÕES GERAIS DAS SEÇÕES
================================ */

.about,
.solutions,
.why,
.sustainability,
.factory,
.contact {
    padding: 100px 0;
}

h2 {
    color: var(--primary);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    margin-bottom: 22px;
}

.section-title {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-title.light h2 {
    color: var(--white);
}

.about-text p,
.sustainability-text p,
.section-title p,
.contact-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}


/* ================================
   SOBRE
================================ */

.about-grid,
.sustainability-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image{
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 34px;
}

.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .45s ease, transform .45s ease;
}

.about-image .img-principal{
    opacity: 1;
}

.about-image .img-hover{
    position: absolute;
    inset: 0;
    opacity: 0;
}

.about-image:hover .img-principal{
    opacity: 0;
    transform: scale(1.05);
}

.about-image:hover .img-hover{
    opacity: 1;
    transform: scale(1.05);
}

.sustainability-image img {
    height: 520px;
    width: 100%;
    object-fit: cover;
    border-radius: 34px;
}

.about-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.about-list div {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--light);
    padding: 18px;
    border-radius: 18px;
    font-weight: 800;
    color: var(--primary);
}

.about-list i {
    font-size: 28px;
    color: var(--secondary);
}


/* ================================
   PRODUTOS EM DESTAQUE
================================ */

.featured-products {
    margin-bottom: 60px;
}

.featured-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.featured-tabs button {
    border: 0;
    background: #e9eeee;
    color: var(--accent);
    padding: 11px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: .25s;
}

.featured-tabs button:hover,
.featured-tabs button.active {
    background: var(--accent);
    color: var(--white);
}

.featured-content {
    display: grid;
    grid-template-columns: 1.25fr .85fr;
    gap: 36px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}

.featured-image {
    border-radius: 10px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.featured-text {
    padding-top: 10px;
}

.featured-text h3 {
    color: var(--primary);
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: none;
}

.featured-text p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 16px;
}

.featured-text a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: .25s;
}

.featured-text a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.featured-highlight {
    margin-bottom: 16px;
    background: #f5b942;
    color: var(--primary);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* RESPONSIVO */

@media (max-width:900px){

    .featured-content{
        grid-template-columns:1fr;
        gap:30px;
    }

    .featured-image img{
        height:340px;
    }

    .featured-text{
        text-align:center;
    }

}


/* ================================
   PRODUTOS / SOLUÇÕES
================================ */

.solutions {
    background: var(--light);
    padding: 100px 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15,47,58,.08);
    transition: .3s;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15,47,58,.12);
}

.solution-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
}

.solution-card div {
    padding: 26px;
}

.solution-card h3 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 10px;
}

.solution-card p {
    line-height: 1.6;
}

.product-category {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    background: #e8f4f6;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: .5px;
}


/* ================================
   MATERIAL 100% VIRGEM
================================ */

.virgem-banner{
    padding:70px 0;
    background:#ffffff;
}

.virgem-banner-content{
    background:linear-gradient(135deg,var(--primary),#174554);
    border-radius:28px;
    padding:40px 60px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;

    text-align:center;

    box-shadow:0 20px 50px rgba(15,47,58,.12);
}

.virgem-banner-content i{
    font-size:64px;
    color:#F5B942;
    flex-shrink:0;
}

.virgem-banner-content span{
    display:block;
    color:#F5B942;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:10px;
}

.virgem-banner-content h2{
    color:#fff;
    font-size:clamp(30px,4vw,48px);
    line-height:1.2;
    font-weight:900;
}

.virgem-banner-content h2 strong{
    color:#F5B942;
}

.virgem-banner-content p{
    margin:14px auto 0;
    width:100%;
    max-width:650px;

    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.7;
    font-weight:500;

    text-align:center;
}

@media(max-width:768px){

    .virgem-banner-content{
        flex-direction:column;
        padding:35px 25px;
        gap:20px;
    }

    .virgem-banner-content i{
        font-size:52px;
    }

}


/* ================================
   SEGMENTOS
================================ */

.segments .section-tag{
    color:#f3bf19;
}

.segments .section-title h2{
    color:#fff;
}

.segments .section-title h2 span{
    color:#f3bf19;
}

.segments .section-title h2::first-letter{
    color:#f3bf19;
}

.segments {
    background:
        linear-gradient(rgba(15,47,58,.92), rgba(15,47,58,.92)),
        url("../img/segmentos.jpg") center/cover no-repeat;
    padding: 100px 0;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.segments-grid div{
    background:#2d5964;
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    padding:30px 18px;
    border-radius:22px;
    text-align:center;
    transition:.3s;
}

.segments-grid div:hover{
    background:#356875;
    transform:translateY(-5px);
}

.segments-grid i{
    display:block;
    font-size:38px;
    color:#f3bf19;
    margin-bottom:12px;
}

.segments-grid span{
    font-weight:700;
    color:#fff;
}


/* ================================
   DIFERENCIAIS
================================ */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 28px;
    transition: .3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15,47,58,.1);
}

.why-card i {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 18px;
}

.why-card h3 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 12px;
}

.why-card p {
    line-height: 1.7;
}

/* ================================
   VAGAS HOME
================================ */

.home-jobs{
    padding:100px 0;
    background:#f7fafb;
}

.home-jobs-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:50px;
}

.home-job-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:30px;
    transition:.3s;
}

.home-job-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(15,47,58,.08);
}

.job-type{
    display:inline-block;
    padding:7px 12px;
    border-radius:999px;
    background:#e8f4f6;
    color:var(--secondary);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:18px;
}

.home-job-card h3{
    color:var(--primary);
    font-size:24px;
    margin-bottom:12px;
}

.job-location{
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--text);
    font-weight:700;
    margin-bottom:18px;
}

.home-job-card ul{
    padding-left:18px;
    margin-bottom:22px;
}

.home-job-card li{
    margin-bottom:8px;
    color:var(--text);
}

.job-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--accent);
    font-weight:800;
}

.home-jobs-bottom{
    margin-top:45px;
    text-align:center;
}

@media(max-width:980px){

    .home-jobs-grid{
        grid-template-columns:1fr;
    }

}


/* ================================
   SUSTENTABILIDADE
================================ */

.sustainability {
    background: #eaf7f3;
}

.sustainability .btn-primary {
    margin-top: 20px;
}


/* ================================
   ESTRUTURA / FÁBRICA
================================ */

.factory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.factory-grid img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
}


/* ================================
   CTA
================================ */

.cta {
    background:
        linear-gradient(rgba(15,47,58,.9), rgba(15,47,58,.9)),
        url("../img/cta.jpg") center/cover no-repeat;
    padding: 90px 0;
    text-align: center;
}

.cta h2 {
    color: var(--white);
}

.cta p {
    color: #dbe8eb;
    font-size: 18px;
    margin-bottom: 30px;
}


/* ================================
   CONTATO
================================ */

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    color: var(--primary);
    font-weight: 800;
}

.contact-item i {
    color: var(--accent);
    font-size: 28px;
}

.contact-form {
    background: var(--light);
    padding: 36px;
    border-radius: 28px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--white);
    padding: 17px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-size: 15px;
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    width: 100%;
    border: 0;
    background: var(--primary);
    color: var(--white);
    padding: 17px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}


/* ================================
   FOOTER
================================ */

.footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 40px;
}

.footer img {
    height: 58px;
    margin-bottom: 18px;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer p {
    color: #b9c8cc;
    line-height: 1.7;
}

.footer h3 {
    margin-bottom: 18px;
}

.footer a {
    display: block;
    color: #b9c8cc;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 50px;
    padding: 22px 4%;
    display: flex;
    justify-content: space-between;
    color: #b9c8cc;
    font-size: 14px;
}


/* ================================
   WHATSAPP FLUTUANTE
================================ */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    background: #25d366;
    color: var(--white);
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 34px;
    z-index: 100;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}


/* ================================
   RESPONSIVO - NOTEBOOK
================================ */

@media (max-width: 1180px) {
    .header {
        top: 28px;
    }

    .header .container {
        width: min(1120px, 94%);
    }

    .header-content {
        height: 82px;
        padding: 0 14px 0 20px;
        gap: 18px;
    }

    .logo img {
        height: 52px;
    }

    .menu {
        gap: 18px;
    }

    .menu a {
        font-size: 14px;
    }

    .header-contact {
        display: none;
    }

    .header-btn {
        padding: 15px 22px;
        font-size: 13px;
        white-space: nowrap;
    }

    .hero {
        min-height: 88vh;
        padding-top: 160px;
    }

    .hero-content {
        max-width: 850px;
    }

    .hero h1 {
        font-size: clamp(36px, 5vw, 58px);
        max-width: 850px;
    }

    .hero-features {
        margin-top: -70px;
    }

    .hero-features-box {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ================================
   RESPONSIVO - TABLET
================================ */

@media (max-width: 980px) {
    .hero-content,
    .about-grid,
    .sustainability-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .products-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-showcase-list {
        text-align: center;
    }

    .why-grid,
    .factory-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .segments-grid,
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ================================
   RESPONSIVO - CELULAR
================================ */

@media (max-width: 620px) {
    .header {
        top: 18px;
    }

    .header-content {
        height: 72px;
        padding: 0 14px;
    }

    .logo img {
        height: 44px;
    }

    .menu {
        display: none;
    }

    .header-btn {
        padding: 12px 16px;
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 110px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-features {
        margin-top: -70px;
    }

    .hero-features-box {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .products-showcase {
        padding: 70px 0;
    }

    .products-title-box {
        padding: 28px 20px;
        margin-bottom: 45px;
    }

    .product-line strong {
        font-size: 18px;
    }

    .product-line span {
        font-size: 14px;
    }

    .numbers-grid,
    .segments-grid,
    .why-grid,
    .factory-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about,
    .solutions,
    .why,
    .sustainability,
    .factory,
    .contact {
        padding: 70px 0;
    }

    .about-image img,
    .sustainability-image img {
        height: 340px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}