/* ============================================================
   ACÁCIO METALÚRGICA — CSS BUNDLE v2
   Todos os estilos consolidados em 1 arquivo (era 9 requisições)
   ============================================================ */

/* === 1. VARIÁVEIS E ESTILOS GERAIS === */
:root {
    --primary-color: #004b00;
    --secondary-color: #2b7534;
    --accent-color: #84dc3d;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #f7f7f7;
    --white: #ffffff;
    --text-color: #212121;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; font-weight: 800; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 60px 0;
    scroll-margin-top: 20px;
}

.section-title, .section-title-white {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.section-title-white { color: var(--white); }

.divider, .divider-white {
    width: 100px;
    height: 5px;
    background: var(--primary-color);
    margin: 0 auto 2.5rem;
    border-radius: 3px;
}

.divider-white { background: var(--white); }

.section-intro, .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.section-subtitle { margin-bottom: 2rem; }

/* === 2. ÍCONES SVG === */
.icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: middle;
    display: inline-block;
    flex-shrink: 0;
}

.icon-lg { width: 1.5em; height: 1.5em; }
.icon-xl { width: 2em; height: 2em; }

/* Ícones dos cards de serviço */
.card-icon .icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
}

/* === 3. HEADER === */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    transition: transform var(--transition-speed) ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1.8rem;
}

.nav-list a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--heading-font);
    padding: 0.5rem 0;
    transition: color var(--transition-speed) ease;
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
    border-radius: 2px;
}

.nav-list a:hover { color: var(--primary-color); }
.nav-list a:hover::after { width: 100%; }

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 1002;
    transition: transform var(--transition-speed) ease;
    background: none;
    border: none;
    padding: 0.25rem;
    line-height: 0;
}

.menu-toggle:hover { transform: scale(1.1); }
.menu-toggle .icon { width: 1.8rem; height: 1.8rem; }

.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
}

.overlay-menu.active {
    opacity: 1;
    visibility: visible;
}

.nav-list-mobile {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.nav-list-mobile li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.overlay-menu.active .nav-list-mobile li { opacity: 1; transform: translateY(0); }
.overlay-menu.active .nav-list-mobile li:nth-child(1) { transition-delay: 0.1s; }
.overlay-menu.active .nav-list-mobile li:nth-child(2) { transition-delay: 0.15s; }
.overlay-menu.active .nav-list-mobile li:nth-child(3) { transition-delay: 0.2s; }
.overlay-menu.active .nav-list-mobile li:nth-child(4) { transition-delay: 0.25s; }
.overlay-menu.active .nav-list-mobile li:nth-child(5) { transition-delay: 0.3s; }

.nav-list-mobile a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--heading-font);
    padding: 0.5rem 1rem;
    transition: color var(--transition-speed) ease;
    display: inline-block;
}

.nav-list-mobile a:hover { color: var(--primary-color); }

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
    background: none;
    border: none;
    line-height: 1;
}

.close-menu:hover {
    color: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

/* === 4. BOTÕES === */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: all var(--transition-speed) ease;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 75, 0, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 75, 0, 0.2);
}

/* === 5. WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    animation: bounceIntenso 1.8s infinite;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.15);
    box-shadow: 0 0 15px #25D366, 0 0 30px rgba(37, 211, 102, 0.6);
    animation-play-state: paused;
}

.whatsapp-float .icon { width: 2rem; height: 2rem; }

@keyframes bounceIntenso {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* === 6. ANIMAÇÕES === */
@keyframes fadeInUpEnhanced {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDownEnhanced {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeftEnhanced {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRightEnhanced {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleUp {
    from { transform: scale(0.95); opacity: 0.8; }
    to { transform: scale(1); opacity: 1; }
}

/* Animações on scroll — só opacity:0 quando JS estiver ativo */
.js-ready .hero,
.js-ready .quem-somos,
.js-ready .servicos-section,
.js-ready .coifa-uv-banner,
.js-ready .portfolio-section,
.js-ready .depoimentos-section,
.js-ready .contato-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: none !important;
}

.scroll-fade-up { transform: translateY(50px); }
.scroll-fade-left { transform: translateX(-50px); }
.scroll-fade-right { transform: translateX(50px); }
.scroll-scale-up { transform: scale(0.9); }

.hover-lift {
    transition: transform var(--transition-speed, 0.3s) ease, box-shadow var(--transition-speed, 0.3s) ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stagger-parent > .stagger-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-parent.is-visible > .stagger-child:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-parent.is-visible > .stagger-child:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-parent.is-visible > .stagger-child:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-parent.is-visible > .stagger-child:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-parent.is-visible > .stagger-child:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-parent.is-visible > .stagger-child:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* === 7. HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 80px 20px 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #002200 0%, #004b00 50%, #1a4a1a 100%);
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.background-video.loaded {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    text-align: left;
    margin: 0 auto;
    border-radius: 8px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 0.7rem;
    line-height: 1.3;
    max-width: 600px;
}

.hero .btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === 8. QUEM SOMOS === */
.quem-somos {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.text-content {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeInLeftEnhanced 0.8s ease 0.2s forwards;
}

.text-content .lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.text-content p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.diferenciais-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    border-left: 5px solid var(--primary-color);
}

.diferenciais-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.diferencial-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.diferencial-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.diferencial-text {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.image-content {
    text-align: center;
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRightEnhanced 0.8s ease 0.2s forwards;
}

.featured-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-image:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* === 9. SERVIÇOS === */
.servicos-section {
    background: linear-gradient(rgba(0, 75, 0, 0.85), rgba(43, 117, 52, 0.75));
    padding: 80px 0;
    color: var(--white);
}

.servicos-section .section-intro {
    color: var(--light-gray);
    margin-bottom: 4rem;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.servico-card {
    background-color: var(--white);
    color: var(--text-color);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1;
    display: flex;
    justify-content: center;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-description {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-destaque {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-destaque span {
    font-weight: 700;
    color: var(--primary-color);
}

.card-produtos {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    align-self: flex-start;
    width: 100%;
}

.card-produtos li {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.card-produtos li::before {
    content: '\2713';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.9rem;
}

/* === 10. BANNER COIFA UV === */
.coifa-uv-banner {
    background: var(--light-gray);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.coifa-uv-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-color);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.banner-icon-area {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 75, 0, 0.2);
    color: #fff;
}

.banner-icon-area .icon { width: 2.8rem; height: 2.8rem; }

.banner-text { flex: 1; }

.banner-tag {
    display: inline-block;
    background: rgba(0, 75, 0, 0.08);
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.banner-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.banner-text p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 0;
}

.banner-cta { flex-shrink: 0; }

.banner-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 75, 0, 0.2);
    white-space: nowrap;
}

.banner-cta a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 75, 0, 0.3);
}

.banner-cta .icon {
    width: 0.85rem;
    height: 0.85rem;
    transition: transform 0.3s ease;
}

.banner-cta a:hover .icon { transform: translateX(4px); }

/* === 11. PORTFÓLIO === */
.portfolio-section {
    background-color: var(--white);
    padding: 80px 0;
}

.portfolio-section .section-subtitle { margin-bottom: 4rem; }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow var(--transition-speed) ease;
}

.portfolio-item:hover { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }

.portfolio-img-container {
    position: relative;
    overflow: hidden;
}

.portfolio-img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-img { transform: scale(1.1); }

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: linear-gradient(to top, rgba(0, 75, 0, 0.85), rgba(43, 117, 52, 0.1));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.overlay-content {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.portfolio-item:hover .overlay-content { transform: translateY(0); }

.overlay-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 700;
}

.overlay-content p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 0;
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    border-top: 4px solid var(--primary-color);
}

.portfolio-cta p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.portfolio-cta .cta-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    border-radius: var(--border-radius);
    display: inline-block;
}

.portfolio-cta .cta-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 75, 0, 0.2);
}

.portfolio-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.portfolio-modal.active { display: flex; }

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 80%;
    max-height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: scaleUp 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--medium-gray);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.close-modal:hover { color: var(--dark-gray); }

.portfolio-slideshow {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.portfolio-slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 250px;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.4s ease;
    z-index: 1;
}

.portfolio-slide.active {
    opacity: 1;
    z-index: 2;
}

.portfolio-item:hover .portfolio-slide.active { transform: scale(1.1); }

/* === 12. DEPOIMENTOS === */
.depoimentos-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 75, 0, 0.85), rgba(43, 117, 52, 0.75));
    color: #fff;
    position: relative;
}

.depoimentos-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.depoimentos-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.depoimentos-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.depoimento-card {
    box-sizing: border-box;
    padding: 2rem;
    margin: 0 1rem;
    flex: 0 0 calc(100% - 2rem);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: #333;
}

.depoimento-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.2;
    margin-bottom: -1.5rem;
}

.depoimento-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.parceiros-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.parceiros-title {
    text-align: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
}

.parceiros-carrossel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.parceiros-carrossel {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
    padding: 0 2rem;
}

.parceiro-item {
    flex: 0 0 calc(16.666% - 1.67rem);
    min-width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.parceiro-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.parceiro-logo {
    max-width: 130%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.parceiro-item:hover .parceiro-logo { filter: grayscale(0%); opacity: 1; }

/* === 13. CONTATO === */
.contato-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
}

.contato-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contato-formulario {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contato-formulario h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
}

.form-group textarea { resize: vertical; }

.btn-enviar {
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-enviar:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contato-info-mapa {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contato-dados {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contato-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 75, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contato-icon .icon { width: 1.2rem; height: 1.2rem; }

.contato-text h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contato-text a, .contato-text address {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    font-style: normal;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contato-text a:hover { color: var(--primary-color); }

.contato-redes h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.redes-sociais {
    display: flex;
    gap: 1rem;
}

.rede-social {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 75, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.rede-social .icon { width: 1rem; height: 1rem; }

.rede-social:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contato-telefones { display: flex; flex-direction: column; }

.contato-mapa {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    height: 400px;
}

.contato-mapa iframe { width: 100%; height: 100%; }

.contato-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.cta-button .icon { width: 1.2rem; height: 1.2rem; }

/* === 14. FOOTER === */
footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    order: 1;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a .icon { width: 1.2rem; height: 1.2rem; }

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-logo { order: 2; }

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo img:hover { opacity: 0.8; }

.footer-bottom {
    text-align: center;
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaaaaa;
}

.footer-bottom p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-bottom a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover { color: var(--primary-color); }

/* === 15. RESPONSIVIDADE === */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section-title, .section-title-white { font-size: 2.2rem; }
    .content-grid { gap: 2.5rem; }
    .servicos-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
    .portfolio-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
    .portfolio-img { height: 220px; }
    .contato-grid { grid-template-columns: 1fr; }
    .contato-mapa { height: 350px; order: -1; }
    .depoimento-card { flex: 0 0 calc(100% - 2rem); }
    .parceiro-item { flex: 0 0 calc(25% - 1.5rem); }
    .banner-content { gap: 30px; }
}

@media (max-width: 768px) {
    section { padding: 50px 0; }
    .nav-list { display: none; }
    .menu-toggle { display: flex; }
    body.menu-open { overflow: hidden; }
    .content-grid { grid-template-columns: 1fr; gap: 3rem; }
    .image-content {
        order: -1;
        margin-bottom: 2rem;
        opacity: 1;
        transform: none;
        animation: none;
    }
    .text-content {
        opacity: 1;
        transform: none;
        animation: none;
    }
    .servicos-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .hero { min-height: 80vh; text-align: center; }
    .hero-content { text-align: center; padding: 1.5rem; }
    .hero p { max-width: 100%; }
    .banner-content { flex-direction: column; text-align: center; gap: 28px; }
    .banner-icon-area { width: 90px; height: 90px; }
    .banner-text h3 { font-size: 1.4rem; }
    .banner-text p { max-width: 100%; }
    .parceiro-item { flex: 0 0 calc(33.333% - 1rem); }
    .contato-section { padding: 4rem 0; }
    .contato-item { flex-direction: column; gap: 1rem; align-items: center; justify-content: center; }
    .contato-dados { align-items: center; justify-content: center; }
    .contato-text { display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .contato-formulario { padding: 1.5rem 0; align-items: center; }
    footer { padding: 2rem 1.5rem 1rem; }
    .footer-main { flex-direction: column; align-items: center; gap: 1.5rem; }
    .social-links { order: 2; }
    .footer-logo { order: 1; }
    .footer-bottom p { flex-direction: column; gap: 0.5rem; }
}

@media (min-width: 992px) {
    .depoimento-card { flex: 0 0 calc(50% - 2rem); }
}

@media (max-width: 576px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    section { scroll-margin-top: 80px; }
    .section-title, .section-title-white { font-size: 2rem; }
    .btn { padding: 10px 25px; font-size: 0.9rem; }
    .nav-list-mobile a { font-size: 1.5rem; }
    .close-menu { top: 1.5rem; right: 1.5rem; font-size: 2rem; }
    .servicos-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .servico-card { padding: 2rem 1.5rem; }
    .card-title { font-size: 1.3rem; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-img { height: 200px; }
    .portfolio-cta { text-align: center; padding: 1rem 0; }
    .portfolio-cta p { text-align: center; padding: 1rem; }
    .portfolio-cta .cta-btn { font-weight: 500; letter-spacing: 0; white-space: nowrap; }
    .parceiro-item { flex: 0 0 calc(50% - 1rem); }
    .parceiros-carrossel { gap: 1rem; padding: 0 1rem; }
    .diferenciais-box { padding: 1.5rem; }
    .hero { min-height: 70vh; padding: 60px 15px 30px; }
    .cta-button { padding: 0.8rem 1.5rem; font-size: 1rem; }
}
