/*
Theme Name: Betamag Theme
Theme URI: https://betamag.com.br
Author: Betamag
Version: 1.0
Description: Tema personalizado para Betamag Soluções Magnéticas Industriais.
*/

/* O resto do seu CSS existente continua abaixo */



/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo-text {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* NAV & HERO */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('imagens/sitebetamag.png');
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    color: white;
    padding: 0 10%;
}

.heroindex {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    color: white;
    padding: 0 10%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 45px;
}

.logo-text {
    font-weight: 700;
    font-size: 28px;
    color: white;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #c41e1e;
}

.hero-content {
    margin-top: 80px;
    max-width: 850px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-red {
    background: #c41e1e;
    color: white;
    padding: 18px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-dark {
    background: #222;
    color: white;
    padding: 18px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

/* SEÇÕES TÍTULOS */
.section-header {
    text-align: center;
    margin: 60px 0 40px;
    padding: 0 10%;
}

.section-header h3 {
    font-size: 2.2rem;
    color: #222;
}

.divider {
    width: 60px;
    height: 3px;
    background: #c41e1e;
    margin: 15px auto;
}

/* GRID PROBLEMAS */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 10% 40px;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.problem-card h4 {
    color: #c41e1e;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.problem-card p {
    font-size: 0.95rem;
    color: #666;
}


/* FLUXO PROTEÇÃO */
.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 10% 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.flow-step {
    flex: 1;
    text-align: center;
    min-width: 200px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.flow-arrow {
    color: #c41e1e;
    font-size: 2rem;
    font-weight: bold;
}

/* FOOTER */
.footer-cta {
    background: #222;
    color: white;
    text-align: center;
    padding: 80px 10%;
}

.footer-cta h2 {
    margin-bottom: 30px;
}

.img-container {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 10px;
    float: left;
}

/* SEGMENTOS QUE ATENDEMOS */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2px;
    /* Espaço mínimo entre colunas */
    margin: 0 10% 80px;
}

.segment-column {
    background: #fff;
}

.card-header {
    padding: 20px;
    color: white;
    text-align: center;
    font-size: 22px;
    letter-spacing: 1px;
}

.agro .card-header {
    background: #1a5d3b;
}

.food .card-header {
    background: #c41e1e;
}

.industrial .card-header {
    background: #2b2b2b;
}

.segment-item {
    position: relative;
    height: 120px;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    color: white;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    margin-bottom: 2px;
    transition: 0.4s;
    overflow: hidden;
}

.segment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.segment-item span {
    position: relative;
    z-index: 1;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.segment-item span::before {
    content: '▶';
    font-size: 10px;
    color: #c41e1e;
}

/* EXPERIÊNCIA */
.stats-section {
    background: #e9e9e9;
    padding: 60px 10%;
    display: flex;
    justify-content: center;
    gap: 50px;
    text-align: center;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-box strong {
    font-size: 3rem;
    color: #333;
    font-family: 'Oswald';
    line-height: 1;
}

.stat-box span {
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    width: 100px;
    color: #666;
}

/* FOOTER CTA */
.footer-cta {
    background: #2b2b2b;
    color: white;
    text-align: center;
    padding: 80px 10%;
}

.footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .stats-section {
        flex-direction: column;
        gap: 30px;
    }
}

.section-title {
    text-align: center;
    margin: 50px 0 30px;
    font-size: 1.8rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c41e1e;
    margin: 10px auto;
}

.problems-bar {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 25px;
    margin: 0 10% 60px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.problems-bar2 {
    display: flex;
    justify-content: space-around;
    padding: 25px;
    margin: 0 10% 60px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}


.problem-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #f8f8f8;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Oswald';
    text-transform: uppercase;
}

/* MENU UNIFICADO */
.header-sub {
    background: #222;
    padding: 0 10%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-weight: bold;
    font-size: 24px;
    text-transform: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a:hover {
    color: #c41e1e;
}

/* LAYOUT BANNERS LARGOS */
.container {
    padding: 60px 10%;
}

.segment-block {
    margin-bottom: 50px;
}

.main-banner {
    height: 220px;
    background-size: cover;
    background-position: center;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    position: relative;
}

.tag {
    background: #c41e1e;
    color: white;
    padding: 12px 40px;
    font-family: 'Oswald';
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.agro-tag {
    background: #1a5d3b;
}

.grid-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.item {
    height: 180px;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

.item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.item span {
    position: relative;
    z-index: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-family: 'Oswald';
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #c41e1e;
}


.hero-sub h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-sub p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 13px;
    transition: 0.3s;
}

.btn-red {
    background: #c41e1e;
    color: white;
}

.btn-dark {
    background: #333;
    color: white;
}

/* ESTRUTURA DOS SEGMENTOS */
.container {
    width: 85%;
    margin: 0 auto;
    padding: 40px 0;
}

.segment-section {
    margin-bottom: 60px;
}

.segment-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.segment-title::before,
.segment-title::after {
    content: '';
    height: 1px;
    background: #ccc;
    flex-grow: 1;
}

.segment-title h2 {
    font-size: 2rem;
    color: #444;
}

/* GRID DE IMAGENS */
.main-banner {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
}

.label-tag {
    background: rgba(26, 93, 59, 0.9);
    /* Verde para Agro */
    color: white;
    padding: 10px 40px;
    font-family: 'Oswald';
    font-size: 1.2rem;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.food-tag {
    background: rgba(196, 30, 30, 0.9);
}

/* Vermelho para Alimentos */
.ind-tag {
    background: rgba(43, 43, 43, 0.9);
}

/* Escuro para Industrial */

.items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.item-card {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: white;
    padding: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.item-card span {
    position: relative;
    z-index: 2;
    font-weight: bold;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-sub {
    background: black;
    background-size: cover;
    background-position: center;
    padding: 0 10%;
    color: white;
}

.item-card span::before {
    content: '▶';
    color: white;
    font-size: 8px;
}

.footer-cta {
    background: #222;
    color: white;
    text-align: center;
    padding: 80px 10%;
}

.footer-cta h2 {
    margin-bottom: 30px;
}

.btn-red {
    background: #c41e1e;
    color: white;
    padding: 18px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-dark {
    background: #222;
    color: white;
    padding: 18px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.item-card:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-sub h1 {
        font-size: 2rem;
    }
}



/* RESET E BASE IDENTICOS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo-text,
.product-title,
.description-tab {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* MENU UNIFICADO (IDÊNTICO ÀS OUTRAS PÁGINAS) */
.header-nav {
    background: #222;
    padding: 0 10%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-weight: bold;
    font-size: 24px;
    text-transform: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #c41e1e;
}

/* ESTRUTURA DA PÁGINA DE PRODUTO */
.container {
    width: 80%;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* SEÇÃO SUPERIOR: IMAGEM E INFORMAÇÕES */
.product-top-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.product-image-box {
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-image-box img {
    max-width: 100%;
    height: auto;
}

.seal-br {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
}

.info-card {
    background: #f9f9f9;
    padding: 30px;
    border: 1px solid #eee;
}

.info-card h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #222;
}

.category-label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.category-label span {
    color: #c41e1e;
    font-weight: bold;
}

.info-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

/* SEÇÃO INFERIOR: DESCRIÇÃO */
.description-section {
    background: white;
    border: 1px solid #eee;
    position: relative;
    margin-top: 20px;
}

.description-tab {
    background: #c41e1e;
    color: white;
    padding: 10px 25px;
    display: inline-block;
    position: absolute;
    top: -35px;
    left: 0;
    border-radius: 8px 8px 0 0;
    font-size: 0.9rem;
}

.description-content {
    padding: 40px;
}

.description-content h3 {
    color: #c41e1e;
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.description-content p {
    margin-bottom: 20px;
    color: #555;
}

.application-list {
    margin-top: 30px;
}

.application-list h4 {
    font-size: 1.5rem;
    color: #c41e1e;
    margin-bottom: 15px;
}

.application-list ul {
    list-style: none;
    padding-left: 10px;
}

.application-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #666;
}

.application-list li::before {
    content: '•';
    color: #c41e1e;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* RODAPÉ (IDÊNTICO ÀS OUTRAS PÁGINAS) */
.footer-cta {
    background: #222;
    color: white;
    text-align: center;
    padding: 60px 10%;
}

.footer-cta h2 {
    margin-bottom: 25px;
    font-size: 2rem;
}

.btn-red {
    background: #c41e1e;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
}

.btn-red:hover {
    background: #a31818;
}

/* FOOTER */


/* AJUSTE NO FOOTER PARA DUAS COLUNAS */
.footer-cta {
    background: #111;
    color: white;
    padding: 80px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    text-align: left;
    /* Alinhamento à esquerda para os textos */
}

.footer-left {
    flex: 1;
}

.footer-right {
    flex: 1;
    border-left: 1px solid #333;
    padding-left: 50px;
}

.footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* ESTILO DOS DADOS DE CONTATO */
.contact-info {
    list-style: none;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #ccc;
}

.contact-item span {
    color: #c41e1e;
    /* Ícones em vermelho */
    font-size: 1.2rem;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: white;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .footer-cta {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 40px;
    }

    .contact-item {
        justify-content: center;
    }
}

/* BASE E MENU UNIFICADO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fdfdfd;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo-text,
.btn-gold {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.header-nav {
    background: #222;
    padding: 0 10%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-weight: bold;
    font-size: 24px;
    text-transform: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* HERO ESPECÍFICO DO SEGMENTO */
.hero-segment {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('fundo-milho.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

.hero-segment h1,
.hero-segment-milho h1,
.hero-segment-acucar h1,
.hero-segment-sal h1,
.hero-segment-doces h1,
.hero-segment-sucos h1,
.hero-segment-mineracao h1,
.hero-segment-cal h1,
.hero-segment-plastico h1,
.hero-segment-usinagem h1,
.hero-segment-cimento h1,
.hero-segment-arroz h1,
.hero-segment-farinha h1,
.hero-segment-reciclagem h1,
.hero-segment-metalurgica h1,
.hero-segment-auto h1,
.hero-segment-farma h1,
.hero-segment-indmad h1,
.hero-segment-sider h1,
.hero-segment-maquina h1,
.hero-segment-transporte h1,
.hero-segment-indu h1,
.hero-segment-portu h1,
.hero-segment-segindus h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero-segment p,
.hero-segment-milho p,
.hero-segment-acucar p,
.hero-segment-sal p,
.hero-segment-doces p,
.hero-segment-sucos p,
.hero-segment-mineracao p,
.hero-segment-cal p,
.hero-segment-plastico p,
.hero-segment-usinagem p,
.hero-segment-cimento p,
.hero-segment-arroz p,
.hero-segment-farinha p,
.hero-segment-reciclagem p,
.hero-segment-metalurgica p,
.hero-segment-auto p,
.hero-segment-farma p,
.hero-segment-indmad p,
.hero-segment-sider p,
.hero-segment-maquina p,
.hero-segment-transporte p,
.hero-segment-indu p,
.hero-segment-portu p,
.hero-segment-segindus p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-gold {
    background: #ffc107;
    color: #222;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
}

/*Milho*/
.hero-segment-milho {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/milho/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

/*Açucar*/
.hero-segment-acucar {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Usina-de-acucar/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

/*Sal*/
.hero-segment-sal {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Sal/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

/*Doces*/
.hero-segment-doces {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Doces/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

/*Sucos*/
.hero-segment-sucos {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Sucos/capaR.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

/*Mineração*/
.hero-segment-mineracao {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Mineracao/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

/*Cal*/
.hero-segment-cal {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Cal/capa.png');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

/*Plastico*/
.hero-segment-plastico {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Plastico/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

/*Usinagem*/
.hero-segment-usinagem {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Usinagem/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

/*Cimento*/
.hero-segment-cimento {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Cimento/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

/*Arroz*/
.hero-segment-arroz {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Arroz/capa.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

/*Farinha*/
.hero-segment-farinha {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Farinhas/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

/*Reciclagem*/
.hero-segment-reciclagem {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Reciclagem/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

.hero-segment-metalurgica {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/metalurgica/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

.hero-segment-auto {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Automobilistica/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

.hero-segment-farma {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Farmaceutico/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

.hero-segment-indmad {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Madeira/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

.hero-segment-sider {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Siderurgia/1\ capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

.hero-segment-maquina {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Maquinas/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

.hero-segment-transporte {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Transporte/1\ capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

.hero-segment-indu {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Industrias/capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

.hero-segment-portu {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Area-portuaria/1\ capa.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}

.hero-segment-segindus {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Tecnologia/capa.jpeg');
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    color: white;
}




/* REALIDADE DO SETOR */
.content-section {
    padding: 80px 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.realidade-text h2 {
    color: #222;
    margin-bottom: 20px;
}

.realidade-text h2 span {
    color: #ffc107;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.check-list li::before {
    content: '✓';
    color: #ffc107;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.etapas-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.etapa-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.etapa-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.etapa-item h4 {
    font-size: 1.1rem;
    color: #222;
}

.etapa-item p {
    font-size: 0.85rem;
    color: #666;
}

/* SOLUÇÕES APLICADAS (GRID) */
.solutions-section {
    background: #fff;
    padding: 80px 10%;
    text-align: center;
}

.solutions-section h2 {
    margin-bottom: 50px;
    font-size: 2rem;
}

.solutions-section h2 span {
    color: #ffc107;
}

.grid-solutions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.solution-card {
    background: white;
    border: 1px solid #eee;
    text-align: left;
    transition: 0.3s;
}

.solution-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.solution-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.solution-info {
    padding: 20px;
}

.solution-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.solution-info h4 span {
    color: #ffc107;
}

.solution-info p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
}

/* RESULTADOS E LOGOS */
.results-section {
    background: #1a1a1a;
    color: white;
    padding: 60px 10%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.results-section h3 {
    color: #ffc107;
    margin-bottom: 20px;
}

.logos-grid {
    background: white;
    padding: 40px;
    border-radius: 4px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.logos-grid img {
    width: 100%;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logos-grid img:hover {
    filter: grayscale(0%);
}

/* RODAPÉ COMPLETO */
.footer-cta {
    background: #000;
    color: white;
    padding: 80px 10%;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-left h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.btn-red {
    background: #c41e1e;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
}

.footer-right {
    border-left: 1px solid #333;
    padding-left: 50px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #ccc;
}

.contact-item span {
    color: #c41e1e;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
}

@media (max-width: 1024px) {

    .content-section,
    .results-section,
    .grid-solutions {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-cta {
        flex-direction: column;
    }

    .footer-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 40px;
    }
}


/*HERO SGEMENTS SLIDE */


.hero-content-fixed {
    pointer-events: auto;
    /* Reativa o clique para os botões dentro do texto */
}

.hero-content-fixed h1 {
    font-size: 4rem;
    color: white;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
}

.hero-content-fixed p {
    font-size: 1.2rem;
    color: #eee;
    max-width: 600px;
    margin-bottom: 30px;
}

/* Botões e Setas permanecem como antes, garantindo z-index alto */
.nav-btn {
    z-index: 10;
}


/* Container do Slide adaptado para o Hero */

.slider-wrapper {
    display: flex;
    width: 200%;
    /* Ajuste conforme o número de slides (Ex: 2 slides = 200%) */
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

.hero-segment {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
    color: white;
}

.hero-content-slide h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.hero-content-slide p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Setas e Dots (Estilo Betamag) */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 20px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #ffc107;
    color: #222;
}

.next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

.prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.dots-container {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #ffc107;
    transform: scale(1.2);
}


/* Efeito de entrada para o conteúdo fixo */
.hero-content-fixed {
    pointer-events: auto;
    /* Aplica a animação: nome | duração | modo de transição | delay (opcional) | manter estado final */
    animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
    /* Começa invisível para a animação funcionar */
}

/* Definição da Animação */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        /* Começa 30px abaixo da posição original */
    }

    to {
        opacity: 1;
        transform: translateY(0);
        /* Termina na posição correta */
    }
}

/* Opcional: Efeito suave no título especificamente */
.hero-content-fixed h1 {
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    /* Começa com um pequeno atraso de 0.3s */
    opacity: 0;
}


/*VIDEO MP4 */





.container-video {
    position: relative;
    width: 140%;
    height: 100vh;
    /* Altura total da tela */
    overflow: hidden;
    top: 0%;
    left: -20%;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
    /* Coloca o vídeo atrás */
    object-fit: cover;
    /* Garante que o vídeo cubra a área sem distorcer */
}

.conteudo-texto {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 90%;
    height: 75%;
    text-align: left;
    transform: translate(-50%, -50%);
    color: white;
    /* Cor do texto */
    z-index: 1;
    /* Garante que o texto fique na frente */
    font-family: sans-serif;
}


/* FOTOS LADO A LADO */
.galeria {
    display: flex;
    /* Ativa o layout Flexbox */
    justify-content: space-between;
    /* Espaço igual entre as imagens */
    gap: 10px;
    /* Espaço entre as imagens */
    width: 100%;
}

.galeria img {
    width: 30%;
    /* Três imagens lado a lado */
    height: auto;
    /* Mantém a proporção */
}


/* SLIDE */

.slider-container {
    max-width: 800px;
    margin: auto;
    position: relative;
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    /* Força a imagem a "parar" no lugar */
    scroll-behavior: smooth;
    /* Faz o movimento de deslize ser suave */
    -webkit-overflow-scrolling: touch;
    /* Melhora o scroll no iOS */
}

.slider img {
    flex: 0 0 100%;
    /* Cada imagem ocupa 100% da largura do pai */
    width: 100%;
    object-fit: cover;
    scroll-snap-align: start;
    /* Alinha o início da imagem com o container */
}

/* Esconder a barra de rolagem para um visual limpo */
.slider::-webkit-scrollbar {
    display: none;
}

/* Estilização básica das "bolinhas" de navegação */
.nav-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.nav-dots a {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    text-decoration: none;
}

.nav-dots a:hover {
    background-color: #333;
}



/* Contêiner flexível para centralizar tudo */
.containerempresas {
    display: flex;
    flex-direction: column;
    /* Coloca os itens em coluna */
    align-items: center;
    /* Centraliza horizontalmente */
    justify-content: center;
    /* Centraliza verticalmente (opcional) */
    min-height: 100vh;
    /* Altura mínima da tela inteira */
    text-align: center;
    font-family: Arial, sans-serif;
}

.imageempresas {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    /* Espaçamento entre textos e imagem */
    border-radius: 8px;
    /* Opcional: bordas arredondadas */
}




/* Container Principal */
.results-container {
    width: 100%;
    background-color: #f4f4f4;
}

.results-content {
    display: flex;
    min-height: 350px;
}

/* Lado Esquerdo - Resultados */
.results-left {
    flex: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('fundo-textura-metal.jpg');
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Alinha o conteúdo à direita da coluna */
    padding: 40px;
}

.results-centerb {
    flex: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('fundo-textura-metal.jpg');
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* */
    padding: 40px;
}

.results-inner {
    max-width: 450px;
    width: 100%;
}

.results-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.results-inner h3 span {
    color: #ffc107;
}

.check-list-gold {
    list-style: none;
}

.check-list-gold li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
}

.check-list-gold li::before {
    content: '✓';
    color: #ffc107;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Lado Direito - Empresas */
.results-right {
    flex: 1.2;
    background-color: #fff;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logos-header h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    display: inline-block;
}

.logos-header h3 span {
    color: #ffc107;
}

.logos-grid-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.logos-grid-flex img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.logos-grid-flex img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Texto de Rodapé Inferior */
.results-footer-text {
    background-color: #eee;
    padding: 30px 10%;
    text-align: center;
}

.results-footer-text p {
    font-size: 0.9rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsividade */
@media (max-width: 1024px) {
    .results-content {
        flex-direction: column;
    }

    .results-left,
    .results-right,
    .results-centerb {
        justify-content: center;
        text-align: center;
    }

    .check-list-gold li {
        text-align: left;
    }

    .logos-grid-flex {
        justify-content: center;
    }
}


/*industriais*/



/* --- Configurações Gerais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    /* Fonte para textos gerais */
    color: #333;
    line-height: 1.6;
    background-color: #fdfdfd;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- Botões --- */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-red {
    background-color: #d32f2f;
    /* Vermelho escuro */
    color: white;
}

.btn-red:hover {
    background-color: #b71c1c;
}

.btn-dark {
    background-color: #263238;
    /* Azul escuro/preto */
    color: white;
}

.btn-dark:hover {
    background-color: #1a252b;
}

/* --- Títulos de Seção --- */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #d32f2f;
    margin: 0 auto 40px auto;
}

/* --- 1. Hero Section --- */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding-bottom: 100px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
}

.nav-links a:hover {
    color: #ef5350;
    /* Vermelho mais claro ao passar o mouse */
}

.hero-content {
    margin-top: 100px;
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* --- 2. Seção Problemas --- */
.problems-section {
    padding: 80px 0;
}

.problems-bar {
    display: flex;
    justify-content: space-around;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Sombra suave */
}

.problems-bar2 {
    display: flex;
    justify-content: space-around;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Sombra suave */
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.problem-item img {
    height: 35px;
}

.problem-item span {
    font-size: 14px;
    font-weight: 700;
    color: #444;
}

/* --- 3. Seção Segmentos --- */
.segments-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    /* Fundo cinza muito claro */
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.segment-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-header {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cores específicas dos headers */
.segment-card.agro .card-header {
    background-color: #1a5d3b;
}

/* Verde escuro */
.segment-card.food .card-header {
    background-color: #b71c1c;
}

/* Vermelho escuro */
.segment-card.industrial .card-header {
    background-color: #212121;
}

/* Preto */

.segment-list li {
    font-size: 15px;
    font-weight: 700;
    color: #555;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background-size: cover;
    background-position: center;
}

.segment-list li:last-child {
    border-bottom: none;
}

/* Adicionando placeholders de imagem de fundo para as listas (você precisará dessas imagens) */
.agro li:nth-child(1) {
    background-image: url('img/bg_etanol.jpg');
    color: white;
}

.agro li:nth-child(2) {
    background-image: url('img/bg_acucar.jpg');
    color: white;
}

.agro li:nth-child(3) {
    background-image: url('img/bg_arroz.jpg');
    color: white;
}

.food li:nth-child(1) {
    background-image: url('img/bg_doces.jpg');
    color: white;
}

.food li:nth-child(2) {
    background-image: url('img/bg_cervejarias.jpg');
    color: white;
}

.food li:nth-child(3) {
    background-image: url('img/bg_farinhas.jpg');
    color: white;
}

.industrial li:nth-child(1) {
    background-image: url('img/bg_mineracao.jpg');
    color: white;
}

.industrial li:nth-child(2) {
    background-image: url('img/bg_plasticos.jpg');
    color: white;
}

.industrial li:nth-child(3) {
    background-image: url('img/bg_reciclagem.jpg');
    color: white;
}

/* --- 4. Seção Experiência --- */
.experience-section {
    padding: 80px 0;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-item img {
    height: 60px;
}

.stat-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #222;
    line-height: 1;
}

.stat-text span {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}

/* --- 5. Rodapé CTA --- */
.final-cta {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 30px auto;
    text-transform: uppercase;
}

.btn-large {
    font-size: 16px;
    padding: 20px 40px;
}

/* --- Responsividade Básica --- */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .segments-grid {
        grid-template-columns: 1fr;
    }

    /* Empilha os cards */
    .problems-bar,
    .problems-bar2,
    .stats-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .problem-item,
    .stat-item {
        justify-content: center;
    }
}

/* Container da Seção */
.industrial-applications {
    padding: 60px 10%;
    background-image: url('caminho-da-sua-foto-de-fundo.jpg');
    /* Foto da usina ao fundo */
    background-size: cover;
    background-position: right center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Efeito de degradê branco para o texto não sumir no fundo */
.industrial-applications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, white 40%, rgba(255, 255, 255, 0.7) 60%, transparent 100%);
}

.container-applications {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Título com as linhas laterais */
.title-line {
    font-family: 'Oswald', sans-serif;
    color: #003366;
    /* Azul marinho conforme a imagem */
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.title-line::before,
.title-line::after {
    content: '';
    height: 1px;
    background: #ccc;
    flex-grow: 1;
}

/* Lista com ícones de Check */
.check-list-blue {
    list-style: none;
    margin-bottom: 40px;
}

.check-list-blue li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Ícone de check azul */
.check-list-blue li::before {
    content: '✓';
    color: #0055aa;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Botão Azul */
.btn-blue-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #004488;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    transition: 0.3s;
}

.btn-blue-outline:hover {
    background-color: #003366;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.arrow {
    margin-left: 15px;
    font-size: 1.5rem;
    line-height: 0;
}


/* Container Geral com fundo da usina */
.complete-solutions {
    padding: 60px 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('img/fundo-usina-blur.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

/* Título com linhas laterais */
.title-with-lines {
    font-family: 'Oswald', sans-serif;
    color: #003366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.title-with-lines::before,
.title-with-lines::after {
    content: '';
    height: 1px;
    background: #ccc;
    flex-grow: 1;
    max-width: 150px;
}

/* Grid de Cards */
.solutions-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 10%;
}

/* Estilo do Card Individual */
.solution-item {
    background: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    transition: transform 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
}

/* Lugar para colocar as imagens */
.image-placeholder {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.image-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Texto abaixo da imagem */
.solution-item h3 {
    font-family: 'Roboto', sans-serif;
    color: #003366;
    font-size: 1.1rem;
    font-weight: bold;
}


.applied-engineering {
    padding: 80px 0;
    background-color: #fdfdfd;
    overflow: hidden;
}

.engineering-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
    padding: 0 5%;
}

.engineering-content {
    flex: 1;
}

.title-with-lines-blue {
    font-family: 'Oswald', sans-serif;
    color: #003366;
    /* Azul escuro corporativo */
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.2rem;
    text-transform: none;
}

.title-with-lines-blue::after {
    content: '';
    height: 1px;
    background: #ccc;
    flex-grow: 1;
}

.subtitle-engineering {
    color: #666;
    font-size: 1.1rem;
    margin: 10px 0 40px 0;
}

/* Grid de Ícones Brancos */
.engineering-icons-grid {
    display: flex;
    gap: 15px;
}

.eng-icon-item {
    flex: 1;
    text-align: center;
}

.eng-icon-box {
    background: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

.eng-icon-box img {
    max-height: 100%;
    width: auto;
}

.eng-icon-item span {
    font-size: 0.85rem;
    font-weight: bold;
    color: #003366;
    display: block;
    line-height: 1.2;
}

/* Lado da Imagem com Texto Flutuante */
.engineering-image {
    flex: 1.2;
    position: relative;
}

.engineering-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.floating-text {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-left: 4px solid #003366;
    max-width: 250px;
}

.floating-text p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
}

/* Responsividade */
@media (max-width: 900px) {
    .engineering-container {
        flex-direction: column;
    }

    .engineering-icons-grid {
        flex-wrap: wrap;
    }
}




/* CONTAINER PRINCIPAL DA PÁGINA */
.contact-page-container {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;
    padding: 20px;
}

/* O CARD CENTRALIZADO */
.contact-card {
    display: flex;
    width: 100%;
    max-width: 1100px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* LADO ESQUERDO COM DEGRADÊ (Conforme imagem) */
.contact-info-side {
    flex: 1;
    background: linear-gradient(135deg, #e33e3e 0%, #4a90e2 100%);
    /* Vermelho para Azul/Roxo */
    padding: 60px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-group {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #333;
    flex-shrink: 0;
}

.info-text h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.info-text p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.social-box {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

/* LADO DIREITO: FORMULÁRIO */
.contact-form-side {
    flex: 1.5;
    padding: 60px 50px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 12px;
    font-weight: bold;
    color: #666;
}

.input-group input,
.input-group select,
.input-group textarea {
    padding: 15px;
    background: #e9ecef;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.input-group textarea {
    height: 150px;
    resize: none;
}

.btn-send {
    margin-top: 20px;
    padding: 15px 40px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
    transition: 0.3s;
}

.btn-send:hover {
    background: #e33e3e;
    color: white;
    border-color: #e33e3e;
}

/* RESPONSIVIDADE */
@media (max-width: 850px) {
    .contact-card {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}


/* SEÇÃO DO MAPA */
.map-section {
    padding: 60px 0 0 0;
    /* Espaçamento superior */
    background-color: #fff;
}

.map-container {
    width: 100%;
    text-align: center;
}

.map-title {
    font-family: 'Oswald', sans-serif;
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Reutilizando o divisor vermelho padrão da Betamag */
.divider {
    width: 60px;
    height: 3px;
    background-color: #e33e3e;
    margin: 0 auto 30px auto;
}

.google-map {
    width: 100%;
    line-height: 0;
    /* Remove espaços vazios abaixo do iframe */
    filter: grayscale(20%);
    /* Opcional: deixa o mapa levemente mais sóbrio */
    transition: 0.3s;
}

.google-map:hover {
    filter: grayscale(0%);
}

.google-map iframe {
    width: 100%;
    height: 450px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    /* Sombra leve no topo */
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .google-map iframe {
        height: 300px;
    }
}


/* Garante que os links das redes sociais no degradê fiquem brancos */
.contact-info-side a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info-side a:hover {
    opacity: 0.7;
}

/* Estilo para o ícone de rede social no degradê */
.social-box {
    cursor: pointer;
    transition: transform 0.3s;
}

.social-box:hover {
    transform: scale(1.1);
}

.heroindex2 {
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    color: white;
    padding: 0 10%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h9 {
    font-size: 28px;
    font-weight: normal;
    color: #333333;
    margin-bottom: 20px;
}

hr {
    border: 0;
    border-top: 1px solid #cccccc;
    margin-bottom: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

th,
td {
    border: 1px solid #666666;
    padding: 15px 12px;
    text-align: left;
}

th {
    font-weight: bold;
    color: #222222;
    background-color: #ffffff;
}

td {
    color: #555555;
}

/* Efeito opcional para destacar a linha ao passar o rato (hover) */
tr:hover td {
    background-color: #f9f9f9;
}


.font-heading {
    font-family: 'Montserrat', sans-serif;
}

.hero-bg {
    background: linear-gradient(90deg, rgba(15, 20, 26, 0.95) 0%, rgba(15, 20, 26, 0.85) 50%, rgba(15, 20, 26, 0.4) 100%),
        url('') center/cover no-repeat;
}

.urgency-bg {
    background: linear-gradient(90deg, rgba(15, 20, 26, 0.96) 0%, rgba(15, 20, 26, 0.88) 100%),
        url('') center/cover no-repeat;
}