@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-top: 85px;
    background-color: #ffffff;
    color: #334155;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section, footer {
    scroll-margin-top: 85px;
}

/*ESTILO DO CABEÇALHO*/
header {
    background-color: #0148ab;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img, .logo-img-footer {
    max-height: 65px;
    width: auto;
    display: block;
}

#nav_list {
    display: flex;
    list-style: none;
    gap: 24px;
}

#nav_list .nav-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

#nav_list .nav-item a:hover,
#nav_list .nav-item-active a {
    color: #38bdf8;
}

#mobile_btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

#mobile_menu {
    display: none;
    background-color: #0148ab;
    padding: 20px 24px 30px;
    max-height: calc(100vh - 85px);
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#mobile_menu.active {
    display: block;
}

#mobile_nav_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#mobile_nav_list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: block;
    padding: 4px 0;
}

/* HERO */
.hero-madra {
    position: relative;
    width: 100%;
    min-height: 520px;
    margin-top: 0 !important;
    background: linear-gradient(90deg, rgba(1, 72, 171, 0.95) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(2, 132, 199, 0.4) 100%), 
                url('img/123.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-content-madra {
    width: 100%;
    z-index: 2;
}

.hero-text-madra {
    max-width: 600px;
    color: #ffffff;
}

.hero-text-madra h1 {
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.highlight-blue {
    color: #38bdf8;
}

.hero-text-madra p {
    font-size: 16px;
    line-height: 1.6;
    color: #f1f5f9;
    margin-bottom: 32px;
}

.btn-blue-cta {
    display: inline-block;
    background-color: #0148ab;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 15px rgba(1, 72, 171, 0.3);
}

.btn-blue-cta:hover {
    background-color: #013680;
    transform: translateY(-2px);
}

/*SOBRE NÓS / MISSÃO, VISÃO E VALORES*/
.about-clean {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.subtitle {
    color: #0148ab;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.about-clean h2, .section-title h2 {
    font-size: 36px;
    color: #0148ab;
    margin: 10px 0;
    font-weight: 800;
}

.about-clean .desc {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
}

.mvv-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.clean-card, .solution-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    flex: 1;
    min-width: 270px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clean-card:hover, .solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    background: #e0f2fe;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-wrapper i {
    font-size: 24px;
    color: #0148ab;
}

.clean-card h3, .solution-card h3 {
    font-size: 22px;
    color: #0148ab;
    margin-bottom: 16px;
    font-weight: 700;
}

.clean-card p, .solution-card p {
    color: #64748b;
    font-size: 14.5px;
    line-height: 1.65;
}

/*ESTILIZAÇÃO DA LISTA DE VALORES*/
.valores-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.valores-list li {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    position: relative;
    padding-left: 18px;
}

.valores-list li::before {
    content: "•";
    color: #0148ab;
    font-weight: bold;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
}

.valores-list li strong {
    color: #1e293b;
}

/*ESPECIALIDADES / TIPOS DE TRABALHO*/
.specialties-clean {
    padding: 80px 0;
    background: #ffffff;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.specialty-item {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.specialty-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(1, 72, 171, 0.08);
}

.specialty-item i {
    font-size: 32px;
    color: #0148ab;
    margin-bottom: 20px;
    background: #e0f2fe;
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 16px;
    display: inline-block;
}

.specialty-item h4 {
    font-size: 20px;
    color: #0148ab;
    margin-bottom: 12px;
    font-weight: 700;
}

.specialty-item p {
    color: #64748b;
    font-size: 14.5px;
    line-height: 1.6;
}

/* OUTROS SERVIÇOS */
.processes-clean {
    padding: 90px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.process-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.process-row.reverse {
    flex-direction: row-reverse;
}

.process-txt { flex: 1; }
.process-img { 
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.step-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0148ab;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.step-badge.highlight {
    background: #0148ab;
    color: #ffffff;
}

.process-txt h3 {
    font-size: 28px;
    color: #0148ab;
    margin-bottom: 12px;
}

.process-txt p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.process-list {
    margin-top: 15px;
    padding-left: 20px;
    list-style-type: disc;
    color: #64748b;
    line-height: 1.6;
}

.process-list li {
    margin-bottom: 6px;
}

/*SEGMENTOS DE ATENDIMENTO*/
.solutions-clean {
    padding: 80px 0;
    background: #f8fafc;
}

.services-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.services-image {
    flex: 1;
    max-width: 480px;
    width: 100%;
}

.services-image img {
    width: 100%;
    height: 100%;
    max-height: 585px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.solutions-grid {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pill {
    display: inline-block;
    background: #e0f2fe;
    color: #0148ab;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 14px;
}

/* QUADRO DE DESTAQUE: CHILLERS */
.chiller-card {
    background: #0148ab !important;
    border-color: #0148ab !important;
}

.chiller-card h3 {
    color: #ffffff !important;
}

.chiller-card p {
    color: #e2e8f0 !important;
}

.pill-dark {
    background: #38bdf8 !important;
    color: #0f172a !important;
}

/*RODAPÉ E BARRA DE CONTATOS*/
footer {
    background-color: #0148ab;
    color: #ffffff;
    padding-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 80px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.logo-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.logo-col p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #38bdf8;
}

.info-block p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
}

.whatsapp-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-link i {
    color: #25d366;
    font-size: 24px;
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    word-break: break-all;
}

.email-link:hover, .whatsapp-link:hover {
    text-decoration: underline;
}

/*BARRA INFERIOR DE DIREITOS E REDES SOCIAIS*/
.footer-bottom-bar {
    background-color: #002e70;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-right: 80px;
}

.copyright-text p {
    font-size: 15px;
    color: #94a3b8;
}

.social-links {
    display: flex;
    gap: 16px;
    margin: 0 auto;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.linkedin {
    background-color: #0a66c2;
}

.social-btn:hover {
    transform: scale(1.1);
}

/*BOTÃO FLUTUANTE WHATSAPP*/
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/*RESPONSIVIDADE*/
@media (max-width: 992px) {
    .services-wrapper {
        flex-direction: column;
    }

    .services-image {
        max-width: 100%;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

@media (max-width: 768px) {
    #navbar {
        display: none;
    }

    #mobile_btn {
        display: block;
    }

    .process-row, .process-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        padding-right: 24px;
    }

    .social-links {
        margin: 10px auto;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
    }
}