/*
Theme Name: IMO4 Theme
Theme URI: https://luizreimann.dev
Author: Luiz Reimann
Author URI: https://luizreimann.dev
Description: Tema personalizado para IMO4 - Implantação, Manutenção e Operação
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
Text Domain: imo4-theme
Tags: custom-menu, custom-logo, featured-images, full-width-template
*/

/* ========================================
   FONT-FACE: APTOS
   ======================================== */
@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-Light.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-Light-Italic.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Light-Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-Italic.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-SemiBold.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-SemiBold-Italic.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-SemiBold-Italic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-Bold.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-Bold-Italic.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Bold-Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-ExtraBold.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-Black.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos Display';
    src: url('assets/fonts/aptos/Aptos-Display.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Display.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos Display';
    src: url('assets/fonts/aptos/Aptos-Display-Bold.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Display-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #E06F11;
    --color-primary-dark: #C45F0E;
    --color-secondary: #5B4B6E;
    --color-dark: #1A1A2E;
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;
    --color-medium-gray: #E0E0E0;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-primary: 'Aptos', sans-serif;
    --font-secondary: 'Aptos', sans-serif;
    --container-max: 1200px;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-primary);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo img {
    height: 45px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    text-transform: lowercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.main-navigation a:hover {
    opacity: 0.8;
}

.main-navigation .nav-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 11px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224, 111, 17, 0.4);
}

.btn-header {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 10px 22px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: lowercase;
}

.btn-header:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-header img {
    width: 16px;
    height: 16px;
    transition: filter 0.3s ease;
}

.btn-header:hover img {
    filter: invert(48%) sepia(89%) saturate(1200%) hue-rotate(360deg) brightness(95%) contrast(95%);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-white:hover {
    background-color: var(--color-light-gray);
}

.btn-hero {
    background-color: var(--color-secondary);
    color: var(--color-white);
    text-transform: lowercase;
}

.btn-hero:hover {
    background-color: #4A2375;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(91, 45, 142, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 111, 17, 0.6) 0%, rgba(196, 95, 14, 0.5) 100%);
    z-index: 2;
    opacity: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    color: var(--color-white);
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

/* ========================================
   SOBRE NÓS (About) CARD
   ======================================== */
.about-section {
    position: relative;
    z-index: 5;
    margin-top: -120px;
    margin-bottom: 40px;
}

.about-card {
    position: relative;
    z-index: 4;
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    max-width: 500px;
    margin-left: auto;
    margin-right: 60px;
    border: 1px solid var(--color-primary);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.about-card-header .icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-header .icon img {
    width: 28px;
    height: 28px;
}

.about-card-header h3 {
    font-size: 18px;
    color: var(--color-dark);
}

.about-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-card .btn {
    font-size: 13px;
    padding: 0;
    background: none;
    border: none;
    color: var(--color-primary);
    text-transform: lowercase;
    font-weight: 600;
    letter-spacing: 0;
}

.about-card .btn:hover {
    opacity: 0.8;
    transform: none;
    box-shadow: none;
}

/* ========================================
   OUTSOURCING SECTION
   ======================================== */
.outsourcing-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--color-dark);
}

.section-header p {
    font-size: 15px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 10px auto 0;
}

.outsourcing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.outsourcing-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: var(--color-white);
    border: 1px solid var(--color-medium-gray);
    transition: all 0.3s ease;
}

.outsourcing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.outsourcing-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outsourcing-card .card-icon img {
    width: 30px;
    height: 30px;
}

.outsourcing-card h4 {
    font-size: 15px;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.outsourcing-card p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 111, 17, 0.65) 0%, rgba(196, 95, 14, 0.55) 100%);
    z-index: 2;
    opacity: 0;
}

.cta-banner-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: var(--color-white);
    max-width: 550px;
}

.cta-banner-content .logo-white {
    height: 40px;
    margin: 0 0 20px;
}

.cta-banner-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-banner-content p {
    font-size: 16px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVIÇOS SECTION
   ======================================== */
.servicos-section {
    padding: 80px 0 40px;
    background-color: var(--color-light-gray);
}

.servicos-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--color-secondary);
    border-radius: 20px;
    padding: 45px 50px;
    color: var(--color-white);
    overflow: visible;
}

.servicos-content h2 {
    font-size: 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.servicos-content h2 .icon {
    width: 40px;
    height: 40px;
}

.servicos-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.servicos-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.servicos-list li .check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 2px;
    filter: none;
}

.servicos-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.servicos-ver-todos {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.servicos-ver-todos:hover {
    opacity: 1;
}


.servicos-image {
    position: relative;
    border-radius: 15px;
    overflow: visible;
    margin-top: -30px;
    margin-bottom: -30px;
    margin-right: -20px;
    z-index: 2;
}

.servicos-image > img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

/* ========================================
   VÍDEOS SECTION
   ======================================== */
.videos-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--color-dark);
    overflow: hidden;
}

.videos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.videos-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videos-section .container {
    position: relative;
    z-index: 2;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.video-card img {
    width: 100%;
    height: 100%;
}


/* ========================================
   SOLUÇÕES SECTION
   ======================================== */
.solucoes-section {
    padding: 80px 0;
    background-color: var(--color-light-gray);
}

.solucoes-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.solucao-card {
    text-align: center;
    padding: 30px 15px;
    border-radius: 16px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 140px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.solucao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 45, 142, 0.3);
}

.solucao-card .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solucao-card .card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.solucao-card h4 {
    font-size: 13px;
    color: var(--color-white);
    line-height: 1.4;
    font-weight: 500;
}

.solucao-arrow {
    color: var(--color-primary);
    font-size: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.solucoes-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ========================================
   CLIENTES SECTION
   ======================================== */
.clientes-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px 15px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.cliente-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cliente-logo img {
    max-height: 80px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.cliente-logo img:hover {
    opacity: 1;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-circle {
    width: 100px;
    height: 100px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-logo-circle .footer-logo {
    height: 30px;
}

.footer-group-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-group-logos img {
    height: 25px;
    opacity: 0.9;
}

.footer-col p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    opacity: 0.9;
}

.footer-contact li .icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    object-fit: contain;
}


/* ========================================
   SOBRE NÓS - HERO
   ======================================== */
.sobre-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.sobre-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sobre-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 111, 17, 0.7) 0%, rgba(196, 95, 14, 0.5) 100%);
    z-index: 2;
    opacity: 0;
}

.sobre-hero .container {
    position: relative;
    z-index: 3;
}

.sobre-hero-content {
    padding-bottom: 60px;
    max-width: 500px;
}

.sobre-hero-content h1 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.sobre-hero-content p {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.6;
    opacity: 0.95;
}

/* ========================================
   SOBRE NÓS - BEM-VINDO
   ======================================== */
.sobre-bemvindo {
    padding: 80px 0;
    background-color: var(--color-white);
}

.bemvindo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bemvindo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.bemvindo-icon {
    width: 30px;
    height: 30px;
}

.bemvindo-header h2 {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark);
}

.bemvindo-subtitle {
    display: block;
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.bemvindo-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.sobre-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.sobre-link:hover {
    opacity: 0.7;
}

.bemvindo-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bemvindo-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
}

/* ========================================
   SOBRE NÓS - EQUIPE MULTIDISCIPLINAR
   ======================================== */
.sobre-equipe {
    padding: 80px 0;
    background-color: var(--color-light-gray);
}

.equipe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.equipe-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.equipe-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
}

.equipe-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.equipe-icon {
    width: 30px;
    height: 30px;
}

.equipe-header h2 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
}

.equipe-lista {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.equipe-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.equipe-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.equipe-item-icon img {
    width: 22px;
    height: 22px;
}

.equipe-item-content h4 {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.equipe-item-content p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
}


/* ========================================
   SOBRE NÓS - POR QUE ESCOLHER
   ======================================== */
.sobre-porque {
    padding: 80px 0;
    background-color: var(--color-primary);
}

.porque-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.porque-icon {
    width: 30px;
    height: 30px;
}

.porque-header h2 {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-white);
}

.porque-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.porque-card {
    text-align: center;
    background: var(--color-secondary);
    border-radius: 16px;
    padding: 15px 15px 25px;
}

.porque-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
}

.porque-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.porque-card:hover .porque-card-img img {
    transform: scale(1.05);
}

.porque-card h4 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
}

.porque-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-top: 8px;
}

/* ========================================
   SOBRE NÓS - CONHEÇA NOSSO TIME
   ======================================== */
.sobre-time {
    padding: 80px 0;
    background-color: var(--color-light-gray);
}

.time-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.time-icon {
    width: 30px;
    height: 30px;
}

.time-header h2 {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.time-card {
    text-align: center;
    padding: 30px 25px;
}

.time-card-foto {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.time-card-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.time-card h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.time-card p {
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.time-card-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.time-card-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.time-card-social a:hover {
    opacity: 0.7;
}

.time-card-social a img {
    width: 20px;
    height: 20px;
}

/* ========================================
   SOLUÇÕES PAGE - HERO
   ======================================== */
.solucoes-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.solucoes-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.solucoes-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solucoes-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 111, 17, 0.75) 0%, rgba(196, 95, 14, 0.5) 100%);
    z-index: 2;
    opacity: 0;
}

.solucoes-hero .container {
    position: relative;
    z-index: 3;
}

.solucoes-hero-content {
    padding-bottom: 50px;
    max-width: 500px;
}

.solucoes-hero-content h1 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.solucoes-hero-content p {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
    opacity: 0.95;
}

/* ========================================
   SOLUÇÕES PAGE - MÚLTIPLAS
   ======================================== */
.solucoes-multiplas {
    padding: 60px 0 40px;
    background-color: var(--color-white);
}

.multiplas-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.multiplas-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
}

.multiplas-header h2 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.multiplas-subtitle {
    display: block;
    font-size: 14px;
    color: var(--color-text-light);
}

/* ========================================
   SOLUÇÕES PAGE - TIMELINE
   ======================================== */
.solucoes-timeline {
    padding: 40px 0 60px;
    background-color: var(--color-white);
}

.timeline-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   SOLUÇÕES PAGE - SERVIÇOS
   ======================================== */
.solucoes-servicos {
    padding: 60px 0 80px;
    background-color: var(--color-light-gray);
}

.servicos-banner {
    margin-bottom: 50px;
}

.servicos-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.servicos-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
}

.checklist-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checklist-item .check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
}

.checklist-item span {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
}

/* ========================================
   CONTATO PAGE - HERO
   ======================================== */
.contato-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.contato-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contato-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contato-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 111, 17, 0.75) 0%, rgba(196, 95, 14, 0.5) 100%);
    z-index: 2;
    opacity: 0;
}

.contato-hero .container {
    position: relative;
    z-index: 3;
}

.contato-hero-content {
    padding-bottom: 50px;
    max-width: 500px;
}

.contato-hero-content h1 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.contato-hero-content p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    opacity: 0.95;
    line-height: 1.6;
}

/* ========================================
   CONTATO PAGE - FORMULÁRIO
   ======================================== */
.contato-form-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.contato-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.contato-header-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
}

.contato-header h2 {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.contato-subtitle {
    font-size: 14px;
    color: var(--color-text-light);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contato-intro {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contato-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contato-info-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 2px;
}

.contato-info-item span {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

.contato-form-wrapper {
    background-color: var(--color-secondary);
    border-radius: 16px;
    padding: 35px 30px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 14px;
    outline: none;
    transition: background-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: rgba(255, 255, 255, 0.25);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contato-submit {
    text-transform: lowercase;
    margin-top: 5px;
}

.contato-form-status {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contato-form-status.success {
    color: #27AE60;
    background-color: rgba(39, 174, 96, 0.1);
    padding: 10px 15px;
}

.contato-form-status.error {
    color: #E74C3C;
    background-color: rgba(231, 76, 60, 0.1);
    padding: 10px 15px;
}

/* ========================================
   CONTATO PAGE - MAPA
   ======================================== */
.contato-mapa {
    width: 100%;
    line-height: 0;
}

.contato-mapa iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .outsourcing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solucoes-grid {
        flex-wrap: wrap;
    }

    .solucao-arrow {
        display: none;
    }

    .clientes-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .porque-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bemvindo-grid,
    .equipe-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 65px;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--color-white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-section {
        min-height: 450px;
    }

    .about-section {
        margin-top: -80px;
    }

    .about-card {
        margin-left: 20px;
        margin-right: 20px;
        max-width: 100%;
    }

    .servicos-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .solucoes-grid {
        flex-wrap: wrap;
    }

    .solucao-card {
        min-width: 120px;
    }

    .solucao-arrow {
        display: none;
    }

    .clientes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .sobre-hero {
        min-height: 350px;
    }

    .sobre-hero-content h1 {
        font-size: 32px;
    }

    .time-grid {
        grid-template-columns: 1fr;
    }

    .porque-grid {
        grid-template-columns: 1fr 1fr;
    }

    .solucoes-hero {
        min-height: 300px;
    }

    .solucoes-hero-content h1 {
        font-size: 32px;
    }

    .servicos-checklist {
        grid-template-columns: 1fr;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .contato-hero {
        min-height: 280px;
    }

    .contato-hero-content h1 {
        font-size: 32px;
    }

    .contato-mapa iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .outsourcing-grid {
        grid-template-columns: 1fr;
    }

    .clientes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
