/* --- VARIABLES --- */
:root {
    --color-white: #ffffff;
    --color-light-gray: #f8f9fa;
    --color-medium-gray: #e9ecef;
    --color-graphite: #343a40;
    --color-black: #121212;
    --color-hosken-red: #D32F2F; 
    --color-hosken-red-dark: #a00000;
    
    --font-main: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* --- RESET & GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--color-graphite);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Customizada */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-light-gray); }
::-webkit-scrollbar-thumb { background: var(--color-graphite); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-hosken-red); }

/* Loading Bar */
#loading-bar {
    position: fixed; top: 0; left: 0; height: 3px; background-color: var(--color-hosken-red);
    width: 0%; z-index: 9999; transition: width 0.2s ease;
}

/* Floating Whatsapp */
.whatsapp-floating {
    position: fixed; bottom: 30px; right: 30px; z-index: 1000; display: flex; align-items: center;
}
.whatsapp-floating a {
    width: 60px; height: 60px; background-color: #25d366; color: white; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; font-size: 32px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); text-decoration: none; transition: transform 0.3s;
}
.whatsapp-floating a:hover { transform: scale(1.1); }
.wa-tooltip {
    background-color: white; color: #333; padding: 12px 18px; border-radius: 8px; margin-right: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); font-size: 14px; font-weight: 500; opacity: 0; 
    transform: translateX(20px); transition: 0.3s; pointer-events: none; white-space: nowrap;
}
.whatsapp-floating:hover .wa-tooltip, .wa-tooltip.show { opacity: 1; transform: translateX(0); }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--color-black); margin-bottom: 1rem; }
h1 { font-size: 3.5rem; letter-spacing: -1px; }
h2 { font-size: 2.5rem; letter-spacing: -0.5px; }
p { margin-bottom: 1rem; color: #555; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }

/* Utilities */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 6rem 0; }
.center-text { text-align: center; }
.bg-light { background-color: var(--color-white); }
.bg-very-light { background-color: var(--color-light-gray); }

/* Buttons */
.btn {
    display: inline-block; padding: 1rem 2rem; border-radius: 4px; font-weight: 600; cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    border: 2px solid transparent; text-decoration: none; text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-hosken-red-dark) 0%, var(--color-hosken-red) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    border: none;
}
.btn-primary i { margin-right: 8px; }
.btn-primary::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.4), rgba(255,255,255,0));
    transform: skewX(-25deg); transition: left 0.6s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(211, 47, 47, 0.4); color: white; }
.btn-primary:hover::after { left: 150%; }

.btn-secondary { background-color: var(--color-graphite); color: var(--color-white); }
.btn-secondary:hover { background-color: var(--color-black); color: var(--color-white); transform: translateY(-2px); }
.btn-outline { background-color: transparent; border-color: var(--color-white); color: var(--color-white); }
.btn-outline:hover { background-color: var(--color-white); color: var(--color-black); }

/* --- HEADER --- */
header {
    position: fixed; top: 0; width: 100%; z-index: 900;
    transition: background-color var(--transition-medium), padding var(--transition-medium), box-shadow var(--transition-medium);
    padding: 1.5rem 0; background-color: transparent;
}
header.scrolled { background-color: var(--color-white); padding: 1rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; width: auto; transition: filter var(--transition-medium); filter: brightness(0) invert(1); }
header.scrolled .logo img { filter: none; }

.desktop-nav ul { list-style: none; display: flex; gap: 2rem; }
.desktop-nav a { font-weight: 500; color: var(--color-white); position: relative; }
header.scrolled .desktop-nav a { color: var(--color-graphite); }
.desktop-nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background-color: var(--color-hosken-red); transition: width var(--transition-fast);
}
.desktop-nav a:hover::after { width: 100%; }

.mobile-btn, .close-menu-btn { display: none; }
/* --- HERO --- */
.hero {
    height: 100vh; min-height: 700px; background-size: cover; background-position: center; background-attachment: fixed;
    position: relative; display: flex; align-items: center; justify-content: flex-start; text-align: left;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    /* Gradiente escuro à esquerda */
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0) 70%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; width: 100%; text-align: left; }
.hero-content h1 { color: var(--color-white); text-shadow: 0 2px 10px rgba(0,0,0,0.5); margin-bottom: 1.5rem; text-align: left !important; max-width: 900px; }
.hero-content p { color: #f0f0f0; font-size: 1.25rem; margin-bottom: 2.5rem; text-shadow: 0 1px 5px rgba(0,0,0,0.5); text-align: left !important; max-width: 900px; }
.hero-buttons { display: flex; gap: 1rem; justify-content: flex-start; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.mouse { width: 30px; height: 50px; border: 2px solid var(--color-white); border-radius: 15px; position: relative; }
.wheel {
    width: 4px; height: 8px; background: var(--color-white); border-radius: 2px;
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel { 0% { top: 8px; opacity: 1; } 100% { top: 24px; opacity: 0; } }

/* --- SOBRE --- */
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sobre-imagem { position: relative; }
/* Quadrado arredondado com efeito 3D atras da imagem */
.sobre-imagem::before {
    content: ''; position: absolute; top: 20px; left: -25px; width: 100%; height: 100%;
    background-color: var(--color-hosken-red); border-radius: 12px; z-index: -1;
}
.sobre-imagem img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transition: transform var(--transition-slow); }
.sobre-imagem:hover img { transform: scale(1.02); }


/* --- PARCEIROS --- */
.carousel-infinite { overflow: hidden; padding: 3rem 0; white-space: nowrap; position: relative; width: 100%; }
.carousel-infinite::before, .carousel-infinite::after { content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; }
.carousel-infinite::before { left: 0; background: linear-gradient(to right, var(--color-white) 0%, transparent 100%); }
.carousel-infinite::after { right: 0; background: linear-gradient(to left, var(--color-white) 0%, transparent 100%); }
.carousel-track { display: inline-block; animation: scrollInfinite 20s linear infinite; }
.carousel-track img { height: 60px; margin: 0 3rem; filter: grayscale(100%) opacity(0.6); transition: filter var(--transition-fast), opacity var(--transition-fast); vertical-align: middle; }
.carousel-track img:hover { filter: grayscale(0%) opacity(1); }
@keyframes scrollInfinite { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- SOLUÇÕES --- */
.grid-solucoes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.card-solucao { background: var(--color-white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: transform var(--transition-medium), box-shadow var(--transition-medium); }
.card-solucao:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.card-img { height: 220px; overflow: hidden; display: flex; align-items: center; justify-content: center; background-color: var(--color-white); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.card-solucao:hover .card-img img { transform: scale(1.08); }
.card-solucao h3 { padding: 1.5rem 1.5rem 0.5rem; margin: 0; font-size: 1.25rem; text-align: left; }
.card-solucao p { padding: 0 1.5rem 1.5rem; margin: 0; font-size: 0.95rem; color: #666; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* --- EQUIPAMENTOS PREMIUM (SERVIÇOS ESPECIALIZADOS) --- */
.equipamentos-premium {
    background-color: var(--color-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    /* Faint industrial texture and technical lines */
    background-image: 
        linear-gradient(rgba(232, 232, 232, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 232, 232, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 10% 20%, rgba(211, 47, 47, 0.02) 0%, transparent 30%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
}
.equipamentos-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}
.equip-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-hosken-red);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.equip-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: #1C1C1C;
    font-weight: 700;
}
.equip-desc {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.6;
}

.carousel-horizontal { 
    position: relative; 
    width: 100%;
}
.carousel-wrapper { 
    overflow: hidden; 
    padding: 20px 0; /* Espaço para o box-shadow e hover dos cards */
}
.carousel-track-equip { 
    display: flex; 
    gap: 30px; 
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide { 
    flex: 0 0 350px; 
    position: relative; 
    background: var(--color-white);
    border: 1px solid #E8E8E8; 
    border-radius: 20px; 
    padding: 2rem; 
    display: flex; 
    flex-direction: column; 
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 4px solid transparent;
}
.slide:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-bottom: 4px solid var(--color-hosken-red);
}

.slide-img-box {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: transparent;
    border-radius: 12px;
}
.slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    transition: transform 0.3s ease; 
}
.slide:hover img { 
    transform: scale(1.05); 
}

.slide h4 { 
    margin: 0 0 1.5rem 0; 
    font-size: 1.4rem; 
    color: #1C1C1C; 
    font-weight: 700;
}

.btn-premium-card { 
    width: 100%; 
    padding: 0.9rem; 
    font-size: 0.95rem; 
    background: var(--color-hosken-red);
    color: var(--color-white);
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: auto;
}
.btn-premium-card:hover { 
    background: var(--color-hosken-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(211, 47, 47, 0.3);
}

.carousel-btn {
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: var(--color-white); 
    border: none;
    width: 56px; 
    height: 56px; 
    border-radius: 50%; 
    font-size: 1.2rem; 
    color: var(--color-graphite);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    cursor: pointer; 
    z-index: 10; 
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn:hover { 
    background: var(--color-hosken-red); 
    color: var(--color-white); 
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.25);
}
.prev-btn { left: 1rem; }
.next-btn { right: 1rem; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
.dot {
    width: 12px;
    height: 12px;
    background-color: var(--color-medium-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}
.dot:hover {
    transform: scale(1.2);
}
.dot.active {
    background-color: var(--color-hosken-red);
}

/* MODAL EQUIPAMENTOS DETALHES */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2000;
    display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content {
    background: white; border-radius: 8px; position: relative; transform: scale(0.9); transition: 0.3s; box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.modal-overlay.active .modal-content { transform: scale(1); }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 28px; cursor: pointer; color: #999; transition: color 0.2s; z-index: 10;}
.close-modal:hover { color: var(--color-hosken-red); }

.equip-modal-content {
    max-width: 900px;
    width: 95%;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.equip-modal-body {
    display: flex;
    flex-direction: row;
    max-height: 85vh;
    overflow-y: auto;
}
.equip-modal-img-container {
    width: 40%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.equip-modal-img-container img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
}
.equip-modal-info {
    width: 60%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}
.equip-modal-cat {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-hosken-red);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
}
.equip-modal-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1C1C1C;
}
.equip-modal-info p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}
.equip-modal-table-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-black);
    border-bottom: 2px solid var(--color-hosken-red);
    display: inline-block;
    padding-bottom: 0.3rem;
    text-align: left;
}
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}
.equip-modal-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9rem;
    text-align: left;
}
.equip-modal-block {
    background-color: #fdfdfd;
    border: 1px solid #e5e5e5;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}
.equip-modal-table td {
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
}
.equip-modal-table td:first-child {
    font-weight: 600;
    color: #333;
    width: 40%;
    background-color: #f4f4f4;
}
.equip-modal-table tr:last-child td {
    border-bottom: none;
}
.equip-modal-obs {
    background-color: rgba(211, 47, 47, 0.05);
    border-left: 3px solid var(--color-hosken-red);
    padding: 1rem;
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 1.5rem;
    border-radius: 0 4px 4px 0;
    text-align: left;
}
.btn-modal-wa {
    margin-top: auto;
    align-self: flex-start;
}

/* --- COMO TRABALHAMOS (PREMIUM) --- */
.bg-graphite { 
    background-color: #0B0F14; 
    color: #FFFFFF; 
    position: relative;
    background-image: radial-gradient(circle at 80% 20%, rgba(226, 29, 37, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
}
.como-trabalhamos-wrapper { position: relative; }
.como-trabalhamos-sticky { 
    position: relative;
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 0;
}
.process-container { max-width: 1240px; margin: 0 auto; }
.process-header { margin-bottom: 4rem; }
.process-label { 
    display: inline-block; font-size: 0.85rem; font-weight: 700; letter-spacing: 2px;
    color: #E21D25; text-transform: uppercase; margin-bottom: 1rem;
}
.process-title { color: #FFFFFF; font-size: 3rem; margin-bottom: 1.5rem; letter-spacing: -0.5px; }
.process-desc { color: #AEB6BF; max-width: 700px; margin: 0 auto; font-size: 1.15rem; line-height: 1.6; }

.trabalho-container { display: flex; gap: 5rem; align-items: center; }
.trabalho-tabs { flex: 1; display: flex; flex-direction: column; gap: 1.2rem; }
.tab-item { 
    padding: 1.2rem 1.8rem; cursor: pointer; border-left: 4px solid transparent; 
    font-weight: 600; font-size: 1.15rem; color: #7A8590; transition: all 0.4s ease; 
    background: transparent; border-radius: 8px;
    display: flex; align-items: center; gap: 1rem;
}
.tab-num { font-size: 0.9rem; font-weight: 700; opacity: 0.5; transition: 0.3s; }
.tab-item:hover { color: #FFFFFF; background: rgba(255,255,255,0.02); }
.tab-item.active { 
    border-left-color: #E21D25; color: #FFFFFF; 
    background: #1A222B; 
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.tab-item.active .tab-num { color: #E21D25; opacity: 1; }

.trabalho-content { 
    flex: 1.2; position: relative; min-height: 550px; display: flex; align-items: center; 
}
.trabalho-content::before {
    content: ''; position: absolute; top: 10%; left: 10%; width: 80%; height: 80%;
    background: rgba(226, 29, 37, 0.15); filter: blur(60px); z-index: 0; opacity: 0.8;
}

.trabalho-pane { 
    opacity: 0; position: absolute; top: 0; left: 0; width: 100%; 
    transition: opacity 0.6s ease, transform 0.6s ease; transform: translateX(50px); pointer-events: none; z-index: 1;
}
.trabalho-pane.active { opacity: 1; transform: translateX(0); pointer-events: auto; position: relative; }
.trabalho-pane img { 
    width: 100%; height: 420px; object-fit: cover; border-radius: 20px; 
    margin-bottom: 2rem; border: 1px solid rgba(255,255,255,0.08); 
}
.trabalho-pane h3 { color: #E21D25; margin-bottom: 1rem; font-size: 1.8rem; letter-spacing: -0.5px; }
.trabalho-pane p { color: #AEB6BF; font-size: 1.1rem; line-height: 1.7; padding-right: 2rem; }

/* --- DIFERENCIAIS --- */
.diferenciais-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: stretch; }
.diferenciais-content { display: flex; flex-direction: column; justify-content: center; }
.diferenciais-content h2 { text-align: left; margin-bottom: 2rem; }
.diferenciais-map { display: flex; align-items: center; justify-content: center; position: relative; }
.diferenciais-map img { width: 100%; max-width: none; height: auto; object-fit: contain; display: block; margin: 0 auto; filter: drop-shadow(0 20px 25px rgba(0,0,0,0.15)); border-radius: 8px; transform: scale(1.25); transform-origin: center; }

.floating-img {
    animation: floatAnim 4s ease-in-out infinite;
}
@keyframes floatAnim {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.grid-diferenciais { display: flex; flex-direction: column; gap: 0.8rem; }
.diferencial-item { display: flex; align-items: center; gap: 1rem; background: var(--color-light-gray); padding: 1.2rem; border-radius: 8px; transition: transform var(--transition-fast), box-shadow 0.2s; border-left: 3px solid var(--color-hosken-red); }
.diferencial-item:hover { transform: translateX(5px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.check-icon { color: var(--color-hosken-red); font-size: 1.5rem; font-weight: bold; }
.diferencial-item p { margin: 0; font-weight: 500; color: var(--color-black); }

/* Destaque Brasil */
.diferencial-item.destaque-brasil {
    background: var(--color-hosken-red);
    color: var(--color-white);
    border-left: none;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
    transform: scale(1.02);
}
.diferencial-item.destaque-brasil p { color: var(--color-white); font-weight: 700; }
.diferencial-item.destaque-brasil .check-icon { color: var(--color-white); }
.diferencial-item.destaque-brasil:hover { transform: scale(1.04) translateX(5px); }

/* --- CTA FINAL (Parallax) --- */
.cta-final {
    background-image: url('./carpenter-male-dressed-safety-yellow-cap-works-with-chain-saw-garage.jpg');
    background-size: cover; background-position: center; background-attachment: fixed;
    position: relative; color: var(--color-white); padding: 12rem 0;
}
.cta-final::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.75); }
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 { color: var(--color-white); }
.cta-final p { color: #f0f0f0; font-size: 1.2rem; max-width: 700px; margin: 0 auto 2rem; }

/* --- ONDE ESTAMOS --- */
.onde-estamos { background: var(--color-white); }
.localizacao-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; align-items: center; }
.map-container { border: 1px solid var(--color-hosken-red); border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }
.endereco-img img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); height: 300px; object-fit: cover; }

/* --- FOOTER --- */
.main-footer { background-color: var(--color-black); color: var(--color-white); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { height: 50px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); }
.main-footer h4 { color: var(--color-white); margin-bottom: 1.5rem; }
.main-footer p { color: var(--color-white); }
.main-footer ul { list-style: none; }
.main-footer ul li { margin-bottom: 0.5rem; }
.main-footer a { color: var(--color-white); }
.main-footer a:hover { color: var(--color-white); text-decoration: underline; }
.main-footer p i { color: var(--color-hosken-red); margin-right: 8px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }
.social-links { display: flex; gap: 1rem; }

/* --- MICROANIMAÇÕES --- */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 992px) {
    .como-trabalhamos-wrapper { height: auto; }
    .como-trabalhamos-sticky { position: relative; height: auto; min-height: auto; padding: 60px 0 0; top: auto; display: block; }
    .process-container { position: relative; height: 100%; }
    
    .process-header { margin-bottom: 2rem; }
    .process-title { font-size: 1.8rem; margin-bottom: 0.5rem; }
    .process-desc { padding: 0 1rem; font-size: 1rem; margin-bottom: 0; }
    
    .trabalho-container { 
        position: sticky; 
        top: 80px; 
        flex-direction: column; 
        gap: 1rem; 
        margin-top: 0; 
        height: calc(100vh - 100px);
        display: flex;
    }
    .trabalho-tabs { 
        flex-direction: row; flex-wrap: wrap; 
        padding-bottom: 0.5rem; gap: 0.5rem; justify-content: center;
        -ms-overflow-style: none; scrollbar-width: none;
        flex-shrink: 0;
    }
    .trabalho-tabs::-webkit-scrollbar { display: none; }
    .tab-item { border-left: none; border-bottom: 3px solid transparent; border-radius: 8px; padding: 0.3rem 0.6rem; margin: 0; white-space: nowrap; font-size: 0.85rem; gap: 0.4rem; }
    .tab-num { font-size: 0.8rem; }
    .tab-item.active { border-left-color: transparent; border-bottom-color: #E21D25; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06); }
    
    .trabalho-content { 
        flex: 1; 
        min-height: 0; 
        display: flex; 
        flex-direction: column;
    }
    .trabalho-pane { height: 100%; }
    .trabalho-pane.active { 
        display: flex; 
        flex-direction: column; 
    }
    .trabalho-pane img { 
        flex: 1; 
        min-height: 0; 
        height: auto; 
        object-fit: cover; 
        margin-bottom: 1rem; 
        border-radius: 12px;
    }
    .trabalho-pane h3 { font-size: 1.4rem; margin-bottom: 0.5rem; flex-shrink: 0; }
    .trabalho-pane p { font-size: 0.95rem; line-height: 1.4; padding-right: 0; flex-shrink: 0; margin-bottom: 1rem; }

    .sobre-grid, .diferenciais-layout { grid-template-columns: 1fr; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    h1 { font-size: 2.5rem; }
}
@media (max-width: 768px) {
    body {
        text-align: center;
    }
    
    h1, h2, h3, h4, h5, h6, p, span, li, a {
        text-align: center !important;
    }
    
    .diferencial-item p {
        text-align: left !important;
    }

    .container {
        padding: 0 10px !important;
    }

    .section-padding, .equipamentos-premium, .cta-final {
        padding: 50px 0 !important;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 0.95rem;
    }

    .btn {
        white-space: nowrap;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .como-trabalhamos-sticky { padding: 70px 0; }
    .trabalho-pane p { padding-right: 0; }
    .process-title { font-size: 1.8rem; }

    .header-content { flex-direction: row; justify-content: space-between; align-items: center; }
    
    .mobile-btn { 
        display: block; background: none; border: none; 
        color: var(--color-white); font-size: 1.8rem; cursor: pointer; 
    }
    header.scrolled .mobile-btn { color: var(--color-graphite); }
    .d-none-mobile { display: none !important; }

    .desktop-nav {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--color-white); box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: flex; flex-direction: column; justify-content: center; align-items: center;
        transition: right var(--transition-medium); z-index: 1000;
    }
    .desktop-nav.open { right: 0; }
    
    .close-menu-btn {
        display: block; position: absolute; top: 20px; right: 20px;
        background: none; border: none; font-size: 2.5rem; color: var(--color-graphite); cursor: pointer;
    }
    
    .desktop-nav ul { flex-direction: column; gap: 2rem; align-items: center; }
    .desktop-nav a { color: var(--color-graphite) !important; font-size: 1.2rem; }
    .desktop-nav a::after { display: none; }
    
    .hero-content h1 { font-size: 2.2rem; margin-top: 3rem; text-align: center !important; }
    .hero-content p { font-size: 1.05rem; margin-bottom: 2rem; text-align: center !important; }
    
    .sobre-grid { gap: 2rem; }
    .sobre-imagem::before { display: none; }
    
    .grid-solucoes { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .slide { flex: 0 0 300px; }
    
    .diferenciais-layout { gap: 2rem; }
    .grid-diferenciais { gap: 1rem; }
    
    .cta-final { padding: 6rem 0; }
    .cta-final p { font-size: 1.05rem; padding: 0 1rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-col { display: flex; flex-direction: column; align-items: center; }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 1rem;
        text-align: center;
    }
    
    .localizacao-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .equip-modal-body {
        flex-direction: column;
    }
    .equip-modal-img-container {
        width: 100%;
        padding: 1.5rem;
    }
    .equip-modal-info {
        width: 100%;
        padding: 1.5rem;
    }
    .btn-modal-wa {
        align-self: stretch;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .carousel-track-equip { gap: 15px; }
    .slide { flex: 0 0 42vw; padding: 1rem; border-radius: 12px; }
    .slide-img-box { height: 100px; padding: 0.5rem; margin-bottom: 0.5rem; }
    .slide h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
    .btn-premium-card { padding: 0.5rem; font-size: 0.75rem; }
    .carousel-horizontal { padding: 0 0; }
    .carousel-btn { width: 40px; height: 40px; font-size: 1rem; }
    .prev-btn { left: -10px; }
    .next-btn { right: -10px; }
    
    .whatsapp-floating a { width: 50px; height: 50px; font-size: 24px; }
    .wa-tooltip { display: none; }
}

