@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,600;1,600&family=Poppins:ital,wght@0,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*RESET E CONFIGURAÇÕES GLOBAIS*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    padding-top: 80px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section, footer {
    scroll-margin-top: 80px;
}

/*SEÇÃO HERO (CARROSSEL FULL WIDTH + TEXTO ABAIXO)*/
.hero-full {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*CARROSSEL EM 100% DE LARGURA*/
.box-carousel-full {
    position: relative;
    width: 100%;
    background-color: #000;
    overflow: hidden;
}

.carousel-container-full {
    position: relative;
    width: 100%;
    height: 560px;
}

@media (max-width: 768px) {
    .carousel-container-full {
        height: 280px;
    }
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Botões do Carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(4, 48, 104, 0.7);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(225, 27, 27, 0.9);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Pontos Indicadores */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background: #e11b1b;
    transform: scale(1.2);
}

/*CONTEÚDO DE TEXTO ABAIXO DO CARROSSEL*/
.hero-content-below {
    width: 100%;
    padding: 60px 0 50px 0;
    background-color: #ffffff;
}

.box-txt-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-txt-center span {
    color: grey;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.box-txt-center h2 {
    font-size: clamp(28px, 4vw, 46px);
    color: #043068;
    font-weight: 700;
    margin: 15px 0 20px 0;
    line-height: 1.2;
}

.box-txt-center p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #e11b1b;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #d10000;
    transform: translateY(-2px);
}

/*SEÇÃO SOBRE NÓS*/
.about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.about-header h2, 
.services-section h2,
.processes-section h2 {
    font-size: 36px;
    color: #043068;
    margin-bottom: 20px;
}

.about-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.mvv-grid, 
.services-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.mvv-card, 
.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 20px;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: left;
}

.mvv-card i {
    font-size: 36px;
    color: #e11b1b;
    margin-bottom: 15px;
}

.mvv-card h3, 
.service-card h3 {
    color: #043068;
    font-size: 22px;
    margin-bottom: 12px;
}

/*Padronização de fonte para Missão, Visão e Valores*/
.mvv-card p,
.mvv-card ul li {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}

.mvv-card ul {
    list-style: none;
    padding: 0;
}

/*SEÇÃO SERVIÇOS INTERCALADOS*/
.processes-section {
    padding: 80px 0;
    text-align: center;
}

.process-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    margin-top: 40px;
}

.process-row.reverse {
    flex-direction: row-reverse;
}

.process-txt {
    flex: 1;
    text-align: left;
}

.process-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.process-list li {
    margin-bottom: 8px;
}

.step-badge {
    display: inline-block;
    background-color: #043068;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-badge.highlight {
    background-color: #e11b1b;
}

.process-txt h3 {
    font-size: 26px;
    color: #043068;
    margin-bottom: 15px;
    line-height: 1.2;
}

.process-txt p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.process-img {
    flex: 1;
}

.process-img img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.50);
    transition: transform 0.3s ease;
}

.process-img img:hover {
    transform: scale(1.1);
}

/*GALERIA DE IMAGENS LADO A LADO (DESKTOP)*/
.process-gallery {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.process-gallery img {
    flex: 1;
    width: 100%;
    max-width: 200px;
    height: 330px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.50);
    transition: transform 0.3s ease;
}

.process-gallery img:hover {
    transform: scale(1.05);
}

/*RESPONSIVIDADE - CELULAR E TABLET (MAX 768px)*/
@media (max-width: 768px) {
    .process-row,
    .process-row.reverse {
        flex-direction: column;
        gap: 25px;
    }

    .process-txt,
    .process-img {
        width: 100%;
    }

    /*FORMATO 2x1 PARA A GALERIA DE 3 IMAGENS*/
    .process-gallery {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
    }

    .process-gallery img {
        width: 100% !important;
        max-width: 100% !important;
        height: 160px !important;
        object-fit: cover;
        border-radius: 8px;
    }

    .process-gallery img:nth-child(3) {
        grid-column: span 2;
        height: 200px !important;
    }
}

/*SEÇÃO SOLUÇÕES POR SEGMENTO*/
.services-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
}

.badge {
    display: inline-block;
    background-color: #e11b1b;
    color: #ffffff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-weight: bold;
}

/*RODAPÉ / CONTATOS*/
footer {
    background: linear-gradient(135deg, #03234d 0%, #043068 100%);
    color: #ffffff;
    padding: 90px 0 40px 0;
    text-align: center;
}

.footer-header {
    margin-bottom: 50px;
}

.footer-header h2 {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
}

.footer-header p {
    font-size: 20px;
    color: #d0d7e1;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 35px 25px;
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: #e11b1b;
    background: rgba(255, 255, 255, 0.1);
}

.contact-card i {
    font-size: 42px;
    color: #e11b1b;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-card span {
    font-size: 16px;
    color: #e0e0e0;
    word-break: break-word;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 14px;
    color: #a0acba;
}