﻿/* ========================================
   DORATHAS — Industrial Website Styles
   Filosofia visual: precisão industrial premium, contraste azul-profundo/dourado e imagens técnicas com enquadramento limpo.
   Mobile-First | Scroll-Offset | Logo oficial Dorathas recortado, sem inversão de cor
   ======================================== */

/* === CSS Variables === */
:root {
    --primary: #0D2E4E;
    --primary-dark: #091f35;
    --primary-light: #1a4a73;
    --gold: #D4AC0D;
    --gold-dark: #b8960b;
    --gold-light: #e6c42e;
    --white: #FFFFFF;
    --light-bg: #F4F7FA;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --nav-height: 80px;
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: clip; /* clip em vez de hidden para não criar stacking context que corta position:fixed */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--gold);
    transition: var(--transition);
}

a:hover { color: var(--gold-dark); }

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

/* Ajuste 5: scroll-margin-top em todas as seções */
section[id] {
    scroll-margin-top: 80px;
}

/* === Watermark Background === */
.watermark-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://mgx-backend-cdn.metadl.com/generate/images/654395/2026-04-16/mxxuktqaafbq/watermark-industrial-bg.png');
    background-size: 600px;
    background-repeat: repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

/* === Navbar === */
#mainNav {
    background: var(--primary);
    backdrop-filter: blur(8px);
    padding: 6px 0;
    transition: var(--transition);
    z-index: 1050;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

#mainNav.scrolled {
    padding: 4px 0;
    background: rgba(13, 46, 78, 0.98);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 24px;
    margin-left: -8px !important;
    padding-left: 0 !important;
}

/* Logotipo oficial na navbar: arquivo otimizado a partir da base oficial, preservando o D espelhado + D dourado + orathas. */
.nav-logo-wrap {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    transition: var(--transition);
}

.nav-logo-official {
    flex-direction: column;
    gap: 2px;
    max-width: 240px;
    min-width: 180px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.44));
}

.nav-logo-image {
    display: block;
    width: clamp(180px, 17vw, 240px);
    height: auto;
    max-height: 46px;
    object-fit: contain;
    object-position: left center;
}

.brand-subtitle {
    display: block;
    margin-top: 2px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
}

.brand-subtitle-official {
    /* Alinha o subtítulo ao final da letra S de DORATHAS */
    padding-left: 0;
    text-align: right;
    line-height: 1;
}

#mainNav.scrolled .nav-logo-official {
    transform: scale(0.9);
    transform-origin: left center;}
.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #FFFFFF !important;
    padding: 10px 8px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Botão CTA Blog: padrão industrial discreto, sem preenchimento dourado */
.nav-blog-btn {
    margin-left: 8px;
}
.nav-cta-blog {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF !important;
    padding: 8px 16px !important;
    border: 1px solid rgba(212, 172, 13, 0.72);
    border-left: 3px solid var(--gold);
    border-radius: 3px;
    font-weight: 800 !important;
    letter-spacing: 0.7px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.nav-cta-blog:hover {
    background: rgba(255, 255, 255, 0.16);
    color: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
.nav-cta-blog::after { display: none !important; }

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.65) !important;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.08);
    margin-left: auto;
    flex-shrink: 0;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(212, 172, 13, 0.4);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* === Hero Carousel === */
#hero {
    position: relative;
    z-index: 1;
}

#heroCarousel {
    position: relative;
}

#heroCarousel .carousel-item {
    height: 100vh;
    min-height: 600px;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 46, 78, 0.88) 0%,
        rgba(13, 46, 78, 0.65) 50%,
        rgba(13, 46, 78, 0.80) 100%
    );
}

/* Caption (one per slide) */
.carousel-caption-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 20px;
    text-align: center;
    color: var(--white);
}

.hero-slide-title {
    font-size: 3.4rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    margin: 0 auto 16px;
    letter-spacing: -0.5px;
    max-width: 900px;
    line-height: 1.15;
}

.hero-slide-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 750px;
    margin: 0 auto 24px;
    font-weight: 400;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.4);
}

.btn-slide {
    margin-top: 4px;
}

.carousel-indicators {
    margin-bottom: 24px;
    z-index: 12;
}

.carousel-indicators [data-bs-target] {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.carousel-indicators .active {
    background-color: var(--gold);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 11;
    opacity: 0.7;
}

/* === Button Industrial === */
.btn-gold {
    background: linear-gradient(135deg, #f2c313 0%, #d4ac0d 48%, #b98d05 100%);
    color: #071b31 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.35px;
    padding: 14px 34px;
    border: 1px solid rgba(255, 232, 132, 0.72);
    border-radius: 2px;
    transition: var(--transition);
    font-size: 0.86rem;
    position: relative;
    overflow: hidden;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(7, 27, 49, 0.28), inset 0 1px 0 rgba(255,255,255,0.48);
}

/* faixa branca lateral removida */

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 42%;
    height: 100%;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.36) 48%, transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
}

.btn-gold:hover,
.btn-gold:focus {
    background: linear-gradient(135deg, #ffe072 0%, #f2c313 42%, #c99705 100%);
    border-color: rgba(255, 255, 255, 0.9);
    border-left-color: #ffffff;
    color: #06182d !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 34px rgba(7, 27, 49, 0.42), 0 0 0 3px rgba(212, 172, 13, 0.18);
}

.btn-gold:hover::after,
.btn-gold:focus::after {
    left: 125%;
}

.btn-gold.btn-sm { padding: 10px 22px; min-height: 42px; font-size: 0.8rem; }
.btn-gold.btn-lg { padding: 16px 38px; min-height: 54px; font-size: 0.95rem; }

.text-gold { color: var(--gold) !important; }

/* === Segment Shortcuts === */
.segment-shortcuts {
    position: relative;
    z-index: 4;
    margin-top: -48px;
    padding: 0 0 44px;
    background: linear-gradient(180deg, rgba(244, 247, 250, 0) 0%, var(--light-bg) 38%, var(--light-bg) 100%);
}

.segment-shortcuts-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(13, 46, 78, 0.12);
    border-top: 4px solid var(--gold);
    box-shadow: 0 24px 60px rgba(8, 28, 48, 0.16);
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.55fr);
    gap: 26px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.segment-shortcuts-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 46, 78, 0.04), transparent 45%);
    pointer-events: none;
}

.segment-shortcuts-copy,
.segment-shortcuts-grid {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.segment-shortcuts-copy h2,
.segment-shortcuts-copy p {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.segment-shortcuts-copy h2 {
    color: var(--primary);
    font-size: clamp(1.3rem, 2.2vw, 2rem);
    margin: 6px 0 10px;
    line-height: 1.18;
}

.segment-shortcuts-copy p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.segment-shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.segment-shortcut-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 13px 14px;
    background: linear-gradient(135deg, #ffffff 0%, #edf3f8 100%);
    border: 1px solid rgba(13, 46, 78, 0.14);
    border-left: 4px solid var(--gold);
    border-radius: 3px;
    color: var(--primary) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.45px;
    font-size: 0.78rem;
    box-shadow: 0 8px 18px rgba(8, 28, 48, 0.08);
}

.segment-shortcut-link i {
    color: var(--gold-dark);
    font-size: 1.08rem;
    flex: 0 0 auto;
}

.segment-shortcut-link:hover,
.segment-shortcut-link:focus {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: #FFFFFF !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 36px rgba(13, 46, 78, 0.28), 0 0 0 1px rgba(212, 172, 13, 0.2);
    border-left-color: var(--gold-light);
}

.segment-shortcut-link:hover i,
.segment-shortcut-link:focus i {
    color: var(--gold-light);
}

/* === Section Styles === */
.section-padding {
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

.bg-light-custom { background-color: var(--light-bg); }
.bg-dark-section { background-color: var(--primary); }

.section-header { margin-bottom: 20px; }

.section-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    background: rgba(212, 172, 13, 0.1);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-tag-light { background: rgba(212, 172, 13, 0.15); }

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.title-divider {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === About / Quem Somos === */
.about-content { padding-right: 30px; }

.about-highlight {
    font-size: 1.55rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.35;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.pilares-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
}

.pilares-list li {
    padding: 6px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dark);
}

.pilares-list li i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pilares-list li strong { color: var(--primary); }

.stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-7px) scale(1.02);
    box-shadow: 0 18px 45px rgba(13, 46, 78, 0.16), 0 0 0 1px rgba(212, 172, 13, 0.2);
    border-top-color: var(--gold-light);
}

.stat-icon {
    font-size: 1.9rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 8px;
}

/* === Service Content === */
.service-content .lead {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 14px;
}

/* === Materials Grid === */
.materials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.material-badge {
    background: rgba(212, 172, 13, 0.15);
    color: var(--gold-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 7px 16px;
    border-radius: 30px;
    border: 1px solid rgba(212, 172, 13, 0.3);
    display: inline-flex;
    align-items: center;
}

.material-badge i { font-size: 0.55rem; }

.bg-light-custom .material-badge {
    background: rgba(13, 46, 78, 0.08);
    color: var(--primary);
    border-color: rgba(13, 46, 78, 0.2);
}

.bg-light-custom .material-badge i { color: var(--gold); }

/* === Feature List === */
.feature-list { list-style: none; padding: 0; margin: 16px 0; }

.feature-list li {
    padding: 8px 0;
    font-size: 0.98rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-list li i {
    color: var(--gold);
    font-size: 1.05rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* === Service Image (3:2 proportion) === */
.service-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #f0f3f6;
    margin-bottom: 0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
    display: block;
}

.service-image-wrapper:hover .service-image { transform: scale(1.03); }

.image-accent {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 12px;
    z-index: -1;
}

.image-accent-left { right: auto; left: -10px; }

/* === Feature Cards (Ferramentaria) === */
.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(212, 172, 13, 0.3);
}

.feature-card-icon {
    font-size: 1.9rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.feature-card h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* === Usinagem Items === */
.usinagem-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid #e0e5ec;
    border-radius: 10px;
    padding: 12px 14px;
    transition: var(--transition);
    min-height: 52px;
}

.usinagem-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.usinagem-item i {
    font-size: 1.25rem;
    color: var(--gold);
    flex-shrink: 0;
}

.usinagem-item span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--primary);
}

.text-dark-blue { color: var(--primary); }

/* === Equipment Cards (Periféricos DORATHAS) === */
.equipment-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.equipment-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(13, 46, 78, 0.18), 0 0 0 1px rgba(212, 172, 13, 0.15);
    border-top-color: var(--gold);
}

.equipment-image-wrapper {
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #f0f3f6;
    position: relative;
}

.equipment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.equipment-card:hover .equipment-image { transform: scale(1.1); filter: brightness(1.05); }

.equipment-body {
    padding: 22px 22px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.equipment-title {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.equipment-card:hover .equipment-title {
    color: var(--gold-dark);
}

.equipment-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Equipment Brand Badge */
.brand-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--gold);
    background: rgba(212, 172, 13, 0.12);
    border: 1px solid rgba(212, 172, 13, 0.3);
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    align-self: flex-start;
}

/* Service-only card (Chiller/Água Gelada - apenas assistência) */
.equipment-card-service {
    border-top: 3px solid #dc3545;
}
.equipment-card-service:hover {
    border-top-color: #dc3545;
    box-shadow: 0 20px 50px rgba(220, 53, 69, 0.15), 0 0 0 1px rgba(220, 53, 69, 0.1);
}

.service-only-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(220, 53, 69, 0.95);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    padding: 5px 11px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: inline-flex;
    align-items: center;
}

/* Equipment Highlight Card */
.equipment-card-highlight {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-top: 3px solid var(--gold);
}

.equipment-card-highlight:hover {
    transform: translateY(-6px) scale(1.01);
    border-top-color: var(--gold-light);
    box-shadow: 0 24px 60px rgba(8, 28, 48, 0.35);
}

.equipment-card-highlight .equipment-title { color: var(--white); }
.equipment-card-highlight .equipment-body p { color: rgba(255, 255, 255, 0.75); }

.equipment-highlight-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 12px;
}

/* === Software Features === */
.software-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(13, 46, 78, 0.06);
    border: 1px solid rgba(13, 46, 78, 0.12);
    border-radius: 10px;
    padding: 14px 16px;
    transition: var(--transition);
    min-height: 58px;
}

.software-feature:hover {
    background: rgba(212, 172, 13, 0.1);
    border-color: var(--gold);
}

.software-feature i {
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
}

.software-feature span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
}

/* === Social Links === */
.contact-social h5 { color: var(--white); font-size: 0.95rem; }

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 46px;
    height: 46px;
    background: rgba(212, 172, 13, 0.15);
    border: 1px solid rgba(212, 172, 13, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold) !important;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--primary) !important;
    transform: translateY(-3px);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover { color: var(--gold) !important; }

/* === Contact Section === */
.contact-info-card {
    background: var(--primary);
    border-radius: 12px;
    padding: 32px 26px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-of-type { border-bottom: none; }

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 172, 13, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-item h5 {
    color: var(--white);
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    margin: 0;
    word-break: break-word;
}

.contact-info-item a { color: var(--gold); }
.contact-info-item a:hover { color: var(--gold-light); }

.contact-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold);
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border: 2px solid #e0e5ec;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 16px; /* Prevent iOS zoom on focus */
    transition: var(--transition);
    background-color: #f8fafc;
    min-height: 48px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 172, 13, 0.15);
    background-color: var(--white);
}

textarea.form-control { min-height: 110px; }

.form-success-message {
    text-align: center;
    padding: 28px;
    margin-top: 20px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(40, 167, 69, 0.3);
}

.form-success-message i {
    font-size: 2.8rem;
    color: #28a745;
    display: block;
    margin-bottom: 10px;
}

.form-success-message p {
    font-size: 1.05rem;
    color: #28a745;
    font-weight: 600;
    margin: 0;
}

/* === Footer === */
.site-footer {
    background: var(--primary-dark);
    padding: 28px 0;
    position: relative;
    z-index: 1;
    border-top: 2px solid var(--gold);
}

.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.footer-logo {
    height: 56px;
    width: auto;
    max-width: min(280px, 100%);
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.38));
}

.footer-logo-official {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.footer-brand-subtitle {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    line-height: 1;
}

/* === Cookie Consent Banner === */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(9, 31, 53, 0.97);
    border-top: 2px solid var(--gold);
    z-index: 9999;
    padding: 16px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-content p {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-policy-link {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.5;
}

.footer-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    margin: 0;
}

.footer-location i { color: var(--gold); }

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 1.7rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1100;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    color: var(--white) !important;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* === Animations === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Testimonials Section === */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 10px;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-card {
    --cascade-delay: 0ms;
    min-width: calc(33.333% - 14px);
    background: var(--white);
    border-radius: 14px;
    padding: 28px 24px 22px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.testimonial-quote-icon {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 2.4rem;
    color: rgba(212, 172, 13, 0.18);
    line-height: 1;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #3d6b8f;
    margin-bottom: 22px;
    flex-grow: 1;
    font-style: italic;
    padding-left: 14px;
    border-left: 3px solid var(--gold);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    font-size: 1.4rem;
    color: var(--gold);
}

.testimonial-info { display: flex; flex-direction: column; }

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.78rem;
    color: #718096;
    font-weight: 500;
}

.testimonial-company {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars i { color: #F59E0B; font-size: 0.82rem; }

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.testimonial-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.testimonial-btn:hover {
    background: var(--gold);
    color: var(--primary);
    transform: scale(1.08);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 10px;
}

/* === Quote Form — Periféricos === */
.quote-form-wrapper {
    scroll-margin-top: 100px;
}

.quote-form-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 18px;
    padding: 40px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
}

/* Formulário compacto quando ao lado do card Silete */
.col-lg-8 .quote-form-card {
    padding: 28px 24px;
}

.col-lg-8 .quote-form-title {
    font-size: 1.35rem;
}

.col-lg-8 .quote-form-subtitle {
    font-size: 0.88rem;
    margin-top: 8px;
}

.quote-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 172, 13, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.quote-form-header { margin-bottom: 18px; position: relative; z-index: 2; }

.quote-form-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin: 12px 0 10px;
    line-height: 1.3;
}

.quote-form-subtitle {
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 14px auto 0;
}

.quote-form { position: relative; z-index: 2; }

.quote-equipments-label {
    font-size: 0.95rem !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    display: block;
    margin-bottom: 4px;
}

.quote-equipments-hint {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-style: italic;
}

.quote-equipments-grid { margin-top: 6px; }

.quote-checkbox-card {
    display: block;
    position: relative;
    cursor: pointer;
    margin: 0;
    height: 100%;
}

.quote-checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.quote-checkbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    background: var(--white);
    border: 2px solid #e0e5ec;
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;
    height: 100%;
    min-height: 86px;
}

.quote-checkbox-content i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.quote-checkbox-content span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.74rem;
    color: var(--primary);
    line-height: 1.3;
    transition: var(--transition);
}

.quote-checkbox-card:hover .quote-checkbox-content {
    border-color: var(--gold);
    background: rgba(212, 172, 13, 0.06);
    box-shadow: 0 4px 16px rgba(212, 172, 13, 0.18);
    transform: translateY(-3px) scale(1.03);
}

.quote-checkbox-card:hover .quote-checkbox-content i {
    color: var(--gold);
    transform: scale(1.15);
}

.quote-checkbox-card:hover .quote-checkbox-content span {
    color: var(--gold-dark);
}

.quote-checkbox-card input[type="checkbox"]:checked + .quote-checkbox-content {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: var(--gold-dark);
    box-shadow: 0 6px 18px rgba(212, 172, 13, 0.35);
    transform: translateY(-2px);
}

.quote-checkbox-card input[type="checkbox"]:checked + .quote-checkbox-content i,
.quote-checkbox-card input[type="checkbox"]:checked + .quote-checkbox-content span {
    color: var(--primary);
}

.quote-checkbox-card input[type="checkbox"]:checked + .quote-checkbox-content::after {
    content: '\f26a';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: bold;
}

.quote-checkbox-card input[type="checkbox"]:focus-visible + .quote-checkbox-content {
    outline: 3px solid rgba(212, 172, 13, 0.4);
    outline-offset: 2px;
}

.quote-error-msg {
    color: #dc3545;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(220, 53, 69, 0.08);
    border-radius: 6px;
    border-left: 3px solid #dc3545;
}

/* ================================================================
   AJUSTE 1 — RESPONSIVE (MOBILE-FIRST) — Reconfiguração 100%
   ================================================================ */

/* === Tablet: up to 991px === */
@media (min-width: 1400px) {
    #mainNav .container {
        max-width: 1560px;
    }

    .nav-logo-official {
        min-width: 196px;
        max-width: 244px;
    }

    .nav-logo-image {
        width: clamp(196px, 24vw, 244px);
        max-height: 46px;
    }

    .brand-subtitle { font-size: 0.48rem; letter-spacing: 0.16em; }
    .brand-subtitle-official { padding-left: 0; text-align: right; }

    #mainNav.scrolled .nav-logo-official {
        transform: scale(0.86);
    }

    .navbar-nav .nav-link {
        font-size: 0.74rem;
        padding: 8px 8px !important;
        letter-spacing: 0.35px;
    }
}

@media (max-width: 1399.98px) {
    .navbar-toggler {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .segment-shortcuts { margin-top: -34px; padding-bottom: 36px; }
    .segment-shortcuts-panel {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
        overflow: visible;
    }
    .segment-shortcuts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-padding { padding: 64px 0; }
    .section-title { font-size: 1.9rem; }
    .about-content { padding-right: 0; }

    .hero-slide-title { font-size: 2.6rem; }
    .hero-slide-subtitle { font-size: 1.02rem; }

    /* Mobile Nav Collapse */
    .navbar-collapse {
        background: var(--primary-dark);
        padding: 16px 18px 20px;
        border-radius: 0 0 12px 12px;
        margin-top: 12px;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
        border-top: 1px solid rgba(212, 172, 13, 0.3);
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        font-size: 0.92rem;
        padding: 14px 6px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .nav-blog-btn {
        margin-top: 12px;
        margin-left: 0;
    }
    .nav-cta-blog {
        display: block !important;
        text-align: center;
        padding: 12px 16px !important;
        border-bottom: none !important;
    }

    .testimonial-card { min-width: calc(50% - 10px); }
}

/* === Mobile: up to 767px === */
@media (max-width: 767.98px) {
    :root { --nav-height: 72px; }

    .segment-shortcuts-panel {
        width: 100%;
        min-width: 0;
        padding: 22px 16px;
    }
    .segment-shortcuts-copy h2 {
        max-width: min(100%, 310px);
        font-size: 1.08rem;
        line-height: 1.22;
    }
    .segment-shortcuts-copy p {
        max-width: min(100%, 315px);
        font-size: 0.9rem;
    }
    .segment-shortcuts-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .segment-shortcut-link {
        width: 100%;
        min-height: 50px;
        justify-content: flex-start;
        padding: 12px 14px;
    }

    html { scroll-padding-top: 72px; }
    section[id] { scroll-margin-top: 72px; }

    body { font-size: 15px; line-height: 1.65; }

    /* Navbar Mobile */
    #mainNav { padding: 8px 0; }
    .navbar-brand {
        margin-right: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        /* padding-right removido — toggler agora no fluxo flex */
    }

    /* Botao hamburguer: flexbox confiavel, sem position:absolute */
    .navbar-toggler {
        position: static !important;
        margin-left: auto;
        flex-shrink: 0;
        align-self: center;
        transform: none;
    }

    .nav-logo-official {
        min-width: 0;
        max-width: calc(100vw - 96px);
        gap: 1px;
    }

    .nav-logo-image {
        width: clamp(166px, 52vw, 214px);
        max-height: 42px;
    }

    .brand-subtitle { font-size: 0.4rem; letter-spacing: 0.1em; margin-top: 2px; }
    .brand-subtitle-official { padding-left: 0; text-align: right; }
    #mainNav.scrolled .nav-logo-official { transform: scale(0.92); }

    /* Hero Mobile */
    #heroCarousel .carousel-item {
        height: auto;
        min-height: 560px;
        max-height: 100vh;
    }

    .hero-slide-title {
        font-size: 1.75rem;
        padding: 0 10px;
        letter-spacing: 0;
    }

    .hero-slide-subtitle {
        font-size: 0.92rem;
        padding: 0 14px;
        margin-bottom: 18px;
    }

    .btn-slide {
        padding: 12px 26px;
        font-size: 0.8rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
        opacity: 0.85;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.8rem;
        height: 1.8rem;
    }

    .carousel-indicators {
        margin-bottom: 14px;
    }
    .carousel-indicators [data-bs-target] {
        width: 22px;
        height: 3px;
    }

    /* Sections Mobile */
    .section-padding { padding: 52px 0; }
    .section-title { font-size: 1.55rem; line-height: 1.25; }
    .section-tag { font-size: 0.65rem; letter-spacing: 1.8px; padding: 5px 14px; }
    .about-highlight { font-size: 1.25rem; line-height: 1.35; }
    .section-description { font-size: 0.95rem; }

    .service-content .lead { font-size: 1rem; }

    /* Stat Cards Mobile */
    .stat-card { padding: 20px 10px; }
    .stat-icon { font-size: 1.5rem; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.68rem; letter-spacing: 0.4px; }

    /* Forms Mobile */
    .contact-form-card { padding: 22px 18px; }
    .contact-info-card { padding: 24px 20px; }
    .contact-info-item { gap: 12px; padding: 14px 0; }
    .contact-icon { width: 40px; height: 40px; font-size: 1.05rem; }
    .contact-info-item h5 { font-size: 0.88rem; }
    .contact-info-item p { font-size: 0.85rem; }

    .form-label { font-size: 0.78rem; }
    .form-control, .form-select { padding: 11px 12px; }

    /* Buttons Mobile - touch friendly */
    .btn-gold {
        padding: 13px 24px;
        font-size: 0.82rem;
        min-height: 48px;
        letter-spacing: 0.7px;
    }
    .btn-gold.btn-lg {
        padding: 15px 30px;
        font-size: 0.88rem;
        min-height: 54px;
    }

    /* Quote Form Mobile */
    .quote-form-card { padding: 26px 18px; }
    .quote-form-title { font-size: 1.35rem; }
    .quote-form-subtitle { font-size: 0.88rem; }
    .quote-checkbox-content {
        padding: 10px 6px;
        min-height: 72px;
        gap: 4px;
    }
    .quote-checkbox-content i { font-size: 1.25rem; }
    .quote-checkbox-content span { font-size: 0.68rem; }

    /* Equipment Cards Mobile */
    .equipment-body { padding: 18px 18px 20px; }
    .equipment-title { font-size: 1.05rem; }
    .equipment-body p { font-size: 0.86rem; }
    .brand-badge { font-size: 0.58rem; padding: 2px 8px; }

    /* Feature Cards Mobile */
    .feature-card { padding: 20px 18px; }
    .feature-card-icon { font-size: 1.6rem; }
    .feature-card h5 { font-size: 0.95rem; }
    .feature-card p { font-size: 0.85rem; }

    /* Software Features Mobile */
    .software-feature { padding: 12px 14px; min-height: 54px; }
    .software-feature i { font-size: 1.15rem; }
    .software-feature span { font-size: 0.82rem; }

    /* Usinagem items Mobile */
    .usinagem-item { padding: 10px 12px; min-height: 48px; }
    .usinagem-item i { font-size: 1.1rem; }
    .usinagem-item span { font-size: 0.76rem; }

    /* Materials Mobile */
    .material-badge { font-size: 0.74rem; padding: 6px 12px; }

    /* Pilares Mobile */
    .pilares-list li { font-size: 0.9rem; }

    /* WhatsApp Float Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }
    .whatsapp-tooltip { display: none; }

    /* Testimonials Mobile */
    .testimonial-card {
        min-width: 100%;
        padding: 22px 20px 18px;
    }
    .testimonial-text { font-size: 0.88rem; line-height: 1.65; }
    .testimonial-name { font-size: 0.88rem; }

    /* Footer Mobile */
    .site-footer { padding: 24px 0; }
    .footer-logo-wrap { padding: 5px 10px; }
    .footer-logo {
        height: 42px;
        max-width: min(260px, 100%);
    }
    .footer-text { font-size: 0.78rem; }
    .footer-location { font-size: 0.82rem; }

    /* Image wrappers keep 3:2 ratio */
    .service-image-wrapper,
    .equipment-image-wrapper { aspect-ratio: 3 / 2; }
    /* Usinagem gallery: taller on mobile to show full parts without cropping */
    #usinagem .row.g-2.mt-5 .service-image-wrapper {
        aspect-ratio: 4 / 3;
    }
    #usinagem .row.g-2.mt-5 .service-image {
        object-fit: cover;
        object-position: center center;
    }

    /* Correção mobile autorizada: recorta a base clara das imagens principais de Termoplásticos e Termofixos sem afetar desktop. */
    #termoplasticos .row.g-4.mt-5.align-items-stretch > .col-lg-6:first-child .service-image-wrapper,
    #termofixos .row.g-4.mt-5.align-items-stretch > .col-lg-6:first-child .service-image-wrapper {
        aspect-ratio: 16 / 9;
        background: transparent;
    }

    #termoplasticos .row.g-4.mt-5.align-items-stretch > .col-lg-6:first-child .service-image,
    #termofixos .row.g-4.mt-5.align-items-stretch > .col-lg-6:first-child .service-image {
        object-fit: cover;
        object-position: center top;
    }
}

/* === Small mobile: up to 480px === */
@media (max-width: 479.98px) {
    .container { padding-left: 14px; padding-right: 14px; }

    .hero-slide-title { font-size: 1.45rem; }
    .hero-slide-subtitle { font-size: 0.85rem; }
    #heroCarousel .carousel-item { min-height: 520px; }

    .section-title { font-size: 1.35rem; }
    .about-highlight { font-size: 1.12rem; }

    .stat-card { padding: 16px 8px; }
    .stat-number { font-size: 1.55rem; }
    .stat-label { font-size: 0.62rem; }

    .quote-checkbox-content { min-height: 66px; padding: 8px 4px; }
    .quote-checkbox-content i { font-size: 1.1rem; }
    .quote-checkbox-content span { font-size: 0.64rem; }

    .btn-gold { padding: 12px 20px; font-size: 0.78rem; }

    .equipment-title { font-size: 1rem; }
    .equipment-body { padding: 16px 16px 18px; }

    .testimonial-card { padding: 18px 16px; }
    .testimonial-quote-icon { font-size: 2rem; top: 10px; right: 14px; }
}

/* === Cases de Sucesso - Grid de Logos === */
/* === Logos Infinite Scroll Carousel === */
.logos-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logos-carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: logos-scroll 30s linear infinite;
}

.logos-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes logos-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.case-logo-item {
    flex: 0 0 180px;
    width: 180px;
    height: 110px;
    background: var(--white);
    border: 1px solid #e0e5ec;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    cursor: default;
}

.case-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: opacity(0.85);
    transition: var(--transition);
}

.case-logo-item:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(13, 46, 78, 0.14), 0 0 0 1px rgba(212, 172, 13, 0.25);
    transform: translateY(-4px) scale(1.04);
    background: rgba(212, 172, 13, 0.04);
}

.case-logo-item:hover img {
    filter: opacity(1);
}

/* Romi and Multilaser logos need less padding to appear larger */
.case-logo-item:has(img[alt*="Romi"]),
.case-logo-item:has(img[alt*="Multilaser"]) {
    padding: 8px;
}
.case-logo-item:has(img[alt*="Romi"]) img,
.case-logo-item:has(img[alt*="Multilaser"]) img {
    max-width: 95%;
    max-height: 95%;
    filter: opacity(0.9);
}

@media (max-width: 767.98px) {
    .case-logo-item {
        flex: 0 0 140px;
        width: 140px;
        height: 88px;
        padding: 12px;
    }
    .logos-carousel-track {
        gap: 14px;
        animation-duration: 22s;
    }
}

/* === Hero Carousel - Transição Fade Suave === */
#heroCarousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

#heroCarousel.carousel-fade .carousel-item.active,
#heroCarousel.carousel-fade .carousel-item-next.carousel-item-start,
#heroCarousel.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

#heroCarousel.carousel-fade .active.carousel-item-start,
#heroCarousel.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

#heroCarousel.carousel-fade .carousel-item-next:not(.carousel-item-start),
#heroCarousel.carousel-fade .active.carousel-item-start,
#heroCarousel.carousel-fade .carousel-item-prev:not(.carousel-item-end),
#heroCarousel.carousel-fade .active.carousel-item-end {
    transform: none;
}

/* === Reduce motion preference === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* === Botão "Solicitar Orçamento" no Hover dos Cards === */

/* Posiciona o wrapper da imagem como contexto para o overlay */
.equipment-card .equipment-image-wrapper {
    position: relative;
}

/* Overlay escuro que aparece sobre a imagem no hover */
.equipment-card .card-quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 46, 78, 0.0) 0%,
        rgba(13, 46, 78, 0.55) 50%,
        rgba(13, 46, 78, 0.88) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    border-radius: 0;
}

/* Botão dentro do overlay */
.equipment-card .card-quote-overlay .btn-quote-overlay {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gold);
    color: var(--primary-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 9px 18px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transform: translateY(10px);
    transition: transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

/* Aparece ao hover do card */
.equipment-card:hover .card-quote-overlay {
    opacity: 1;
}

.equipment-card:hover .card-quote-overlay .btn-quote-overlay {
    transform: translateY(0);
}

/* Hover no próprio botão */
.equipment-card .card-quote-overlay .btn-quote-overlay:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* Cards de serviço (vermelho) — overlay com cor diferente */
.equipment-card-service .card-quote-overlay {
    background: linear-gradient(
        to bottom,
        rgba(30, 20, 20, 0.0) 0%,
        rgba(120, 20, 30, 0.55) 50%,
        rgba(180, 30, 45, 0.85) 100%
    );
}

.equipment-card-service .card-quote-overlay .btn-quote-overlay {
    background: #dc3545;
    color: #ffffff;
}

.equipment-card-service .card-quote-overlay .btn-quote-overlay:hover {
    background: #e85060;
}

/* Cards highlight (azul escuro) — botão dourado mantido */
.equipment-card-highlight .card-quote-overlay {
    display: none; /* card de CTA já tem botão próprio */
}

/* Mobile: ocultar overlay (não funciona bem em touch) */
@media (hover: none) {
    .card-quote-overlay { display: none !important; }
}

/* ===== Legenda overlay nas imagens de exemplo (substitui h4 desalinhador) ===== */
.image-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 26, 58, 0.85) 0%, transparent 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: center;
    padding: 28px 16px 12px;
    border-radius: 0 0 12px 12px;
    pointer-events: none;
}

/* Garante que as colunas de imagem lado a lado fiquem sempre na mesma altura */
.row.align-items-stretch .col-lg-6 .service-image-wrapper,
.row.g-2.mt-5.align-items-stretch .col-lg-6 .service-image-wrapper,
.row.g-3.mt-5.align-items-stretch .col-lg-6 .service-image-wrapper {
    height: 100%;
    min-height: 260px;
}

/* === Blog Section === */
#blog {
    background: #f8f9fb;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #e8edf2;
}

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

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #1a2035;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 20px;
}

.blog-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-date {
    font-size: 0.72rem;
    color: #8a95a3;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.blog-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a2035;
    line-height: 1.45;
    margin-bottom: 10px;
}

.blog-card-excerpt {
    font-size: 0.83rem;
    color: #5a6475;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.blog-card-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.blog-card-link:hover {
    color: var(--gold);
    gap: 10px;
}

/* === Blog Carousel — Navegação com setas visíveis e transição suave === */
#blog .carousel {
    padding-bottom: 72px;
}

/* Transição suave entre slides */
#blogCarousel .carousel-item {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

/* Botões de navegação do blog — abaixo dos cards, bem visíveis */
.blog-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(13,46,78,0.18);
    position: static;
    opacity: 1;
    width: auto;
    height: auto;
}

.blog-nav-btn i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.blog-nav-btn:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,172,13,0.28);
}

.blog-nav-prev:hover i { transform: translateX(-3px); }
.blog-nav-next:hover i { transform: translateX(3px); }

/* Container dos botões e dots — centralizado abaixo dos cards */
.blog-nav-btn,
.blog-carousel-dots {
    /* posicionados via wrapper abaixo */
}

/* Wrapper de navegação: setas + dots em linha */
#blogCarousel {
    position: relative;
}

/* Reorganizar: setas e dots ficam abaixo dos cards */
.blog-nav-prev,
.blog-nav-next {
    position: absolute;
    bottom: 0;
    top: auto;
    transform: none;
}

.blog-nav-prev {
    left: 0;
    right: auto;
}

.blog-nav-next {
    right: 0;
    left: auto;
}

/* Dots centralizados */
.blog-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    margin: 0;
    padding: 0;
}

.blog-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(13,46,78,0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease;
}

.blog-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .blog-nav-label { display: none; }
    .blog-nav-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    .blog-nav-btn i { font-size: 1.1rem; }
}

/* === Testimonials Bootstrap Carousel === */
#depoimentos .testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,172,13,0.2);
    border-radius: 16px;
    padding: 40px 48px;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

#depoimentos .testimonial-text {
    color: rgba(180,210,255,0.92);
    font-size: 1.05rem;
    line-height: 1.8;
    border-left: 3px solid var(--gold);
}

#depoimentos .testimonial-name {
    color: var(--gold);
}

#depoimentos .testimonial-company {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

#depoimentos .testimonial-avatar i {
    font-size: 1.6rem;
    color: var(--gold);
}

#depoimentos .testimonial-quote-icon {
    color: rgba(212,172,13,0.25);
    font-size: 3rem;
}

.testimonial-control {
    width: 46px;
    height: 46px;
    background: rgba(212,172,13,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-control:hover {
    background: var(--gold);
}

.testimonial-indicators {
    bottom: -40px;
}

.testimonial-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
}

.testimonial-indicators button.active {
    background: var(--gold);
    width: 28px;
    border-radius: 10px;
}

#depoimentos .carousel {
    padding-bottom: 60px;
}

/* === Usinagem: 2 imagens lado a lado com altura uniforme === */
.usinagem-images-row {
    min-height: 420px;
}

.usinagem-img-wrapper {
    aspect-ratio: unset !important;
    height: 100% !important;
    min-height: 420px;
    border-radius: 12px;
    overflow: hidden;
}

.usinagem-img-wrapper .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* === Moldes: 1 grande esquerda + 2 empilhadas direita === */
/* === Moldes Grid Layout === */
.moldes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 520px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    z-index: 0;
}

.moldes-main-img {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.moldes-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.moldes-main-img:hover img {
    transform: scale(1.03);
}

.moldes-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.moldes-stack-img {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 0;
}

.moldes-stack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.moldes-stack-img:hover img {
    transform: scale(1.03);
}

@media (max-width: 991.98px) {
    .moldes-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .moldes-main-img {
        height: 280px;
    }
    .moldes-stack {
        flex-direction: row;
    }
    .moldes-stack-img {
        height: 200px;
    }
}

/* Legacy - kept for compatibility */
.moldes-images-row {
    min-height: 520px;
}

.moldes-img-main {
    aspect-ratio: unset !important;
    height: 100% !important;
    min-height: 520px;
    border-radius: 12px;
    overflow: hidden;
    background: #000 !important;
    padding: 0 !important;
}

.moldes-img-main .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
    margin: 0;
    padding: 0;
}

.moldes-img-stacked {
    aspect-ratio: unset !important;
    flex: 1 1 0;
    min-height: 240px;
    border-radius: 12px;
    overflow: hidden;
    background: #000 !important;
    padding: 0 !important;
    position: relative;
}

.moldes-img-stacked .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* Mobile: stack images vertically with fixed aspect ratio */
@media (max-width: 991.98px) {
    .usinagem-img-wrapper,
    .moldes-img-main {
        min-height: unset;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
    }
    .moldes-img-stacked {
        min-height: unset;
        aspect-ratio: 16 / 9 !important;
    }
    .moldes-images-row,
    .usinagem-images-row {
        min-height: unset;
    }
}

/* === Botão Voltar ao Topo === */
.back-to-top-btn {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a6b 100%);
    color: var(--white);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.30);
}

.back-to-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(212,172,13,0.35);
}

.back-to-top-btn::before {
    content: 'Voltar ao topo';
    position: absolute;
    right: 58px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,22,40,0.92);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.back-to-top-btn:hover::before {
    opacity: 1;
}

/* === Modal de Sucesso do Formulário === */
.success-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.75);
    z-index: 9999;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    animation: fadeInOverlay 0.3s ease;
}

.success-modal-overlay[style*="display:none"],
.success-modal-overlay[style*="display: none"] {
    display: none !important;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.success-modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
    border-top: 5px solid var(--gold);
    animation: slideUpModal 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUpModal {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.success-modal-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 16px;
    animation: popIn 0.5s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.success-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.success-modal-text {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* === Modal de Sucesso Aprimorado === */
.success-modal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.success-modal-details {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 16px 0 20px;
    text-align: left;
}
.success-modal-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: #166534;
    font-weight: 500;
}
.success-modal-detail-item + .success-modal-detail-item {
    border-top: 1px solid #dcfce7;
}
.success-modal-detail-item i {
    font-size: 1rem;
    color: #22c55e;
    flex-shrink: 0;
}
.success-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}
.btn-success-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 24px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-success-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.5);
    color: #fff !important;
}
.btn-success-close {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-success-close:hover {
    border-color: #94a3b8;
    color: #334155;
}
/* Confetti decorativo */
.success-modal-confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 20px;
}
.success-modal-confetti span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: confettiFall 2.5s ease-in forwards;
    opacity: 0;
}
.success-modal-confetti span:nth-child(1)  { left: 10%; background: var(--gold); animation-delay: 0.1s; transform: rotate(15deg); }
.success-modal-confetti span:nth-child(2)  { left: 25%; background: #22c55e; animation-delay: 0.2s; border-radius: 50%; }
.success-modal-confetti span:nth-child(3)  { left: 40%; background: var(--primary); animation-delay: 0.15s; transform: rotate(45deg); }
.success-modal-confetti span:nth-child(4)  { left: 55%; background: var(--gold); animation-delay: 0.3s; border-radius: 50%; }
.success-modal-confetti span:nth-child(5)  { left: 70%; background: #22c55e; animation-delay: 0.05s; transform: rotate(-20deg); }
.success-modal-confetti span:nth-child(6)  { left: 85%; background: var(--primary); animation-delay: 0.25s; }
.success-modal-confetti span:nth-child(7)  { left: 15%; background: #22c55e; animation-delay: 0.4s; transform: rotate(30deg); width: 6px; height: 6px; }
.success-modal-confetti span:nth-child(8)  { left: 50%; background: var(--gold); animation-delay: 0.35s; width: 6px; height: 6px; }
.success-modal-confetti span:nth-child(9)  { left: 75%; background: var(--primary); animation-delay: 0.45s; border-radius: 50%; width: 6px; height: 6px; }
.success-modal-confetti span:nth-child(10) { left: 90%; background: var(--gold); animation-delay: 0.1s; transform: rotate(-35deg); width: 6px; height: 6px; }
@keyframes confettiFall {
    0%   { top: -10px; opacity: 1; }
    80%  { opacity: 0.8; }
    100% { top: 110%; opacity: 0; }
}
.success-modal-box { position: relative; overflow: hidden; }

/* === Mensagens de Sucesso Inline Ricas === */
.form-success-message--rich {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #86efac;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    animation: fadeInUp 0.4s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.form-success-icon-wrap {
    font-size: 3.5rem;
    color: #22c55e;
    margin-bottom: 12px;
    animation: popIn 0.5s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.form-success-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #166534;
    margin-bottom: 8px;
}
.form-success-desc {
    font-size: 0.95rem;
    color: #15803d;
    line-height: 1.6;
    margin-bottom: 16px;
}
.btn-success-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.btn-success-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.5);
    color: #fff !important;
}

/* === Logos do Carrossel em Cores Originais (sem grayscale) === */
/* Grayscale removido — logos exibidos em cores originais */


/* ===== SEGMENTOS ATENDIDOS ===== */
.segment-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 28px 20px 24px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    height: 100%;
}
.segment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.05);
}
.segment-icon {
    width: 60px;
    height: 60px;
    background: rgba(212,175,55,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: #D4AF37;
    transition: background 0.3s;
}
.segment-card:hover .segment-icon { background: rgba(212,175,55,0.22); }
.segment-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.segment-card p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    margin: 0;
}

/* ===== INJEÇÃO VERTICAL BADGE ===== */
.injection-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 4px;
    gap: 6px;
}
.injection-badge-new {
    background: rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.5);
    color: #f2c313;
}
.badge-new-tag {
    background: #D4AF37;
    color: #071b31;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.injection-types {
    background: rgba(255,255,255,0.05);
    border-left: 3px solid #D4AF37;
    border-radius: 0 6px 6px 0;
    padding: 14px 16px;
}

/* ========== LIGHTBOX GALERIA ========== */
.lightbox-trigger {
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}
.lightbox-trigger:hover {
    opacity: 0.88;
}

#dorathas-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.94);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: lbFadeIn 0.22s ease;
}
#dorathas-lightbox.active {
    display: flex;
}
@keyframes lbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lb-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    padding: 0 64px;
    box-sizing: border-box;
}

.lb-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80vh;
    width: 100%;
}
.lb-img-wrap img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.7);
    animation: lbImgIn 0.18s ease;
    display: block;
}
@keyframes lbImgIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

/* Barra superior: contador + botão fechar */
.lb-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 0 20px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10002;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Contador no topo */
.lb-counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    background: rgba(212,175,55,0.18);
    border: 1px solid rgba(212,175,55,0.45);
    border-radius: 20px;
    padding: 4px 14px;
    min-width: 72px;
    text-align: center;
    user-select: none;
}
/* Grupo de ações no lado direito da topbar */
.lb-topbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Botão de download */
.lb-btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    flex-shrink: 0;
    cursor: pointer;
}
.lb-btn-download:hover {
    background: rgba(212,175,55,0.7);
    color: #fff;
}
.lb-btn-download svg {
    display: block;
    pointer-events: none;
}

/* Botão fechar */
.lb-close {
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;
    flex-shrink: 0;
}
.lb-close:hover { background: rgba(212,175,55,0.7); }

/* Botões anterior / próximo */
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 1.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, border-color 0.18s, transform 0.18s;
    z-index: 10001;
    flex-shrink: 0;
}
.lb-nav:hover {
    background: rgba(212,175,55,0.75);
    border-color: #D4AF37;
    transform: translateY(-50%) scale(1.08);
}
.lb-nav:disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}
.lb-prev { left: 8px; }
.lb-next { right: 8px; }

/* Rodapé: legenda */
.lb-footer {
    margin-top: 10px;
    text-align: center;
    padding: 0 16px;
    max-width: 900px;
}
.lb-caption {
    color: rgba(180,210,255,0.92);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.92rem;
    min-height: 1.2em;
}

/* Barra de miniaturas (thumbnails) */
.lb-thumbs-bar {
    width: 100%;
    max-width: 900px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 16px 12px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,0.5) rgba(255,255,255,0.08);
}
.lb-thumbs-bar::-webkit-scrollbar {
    height: 4px;
}
.lb-thumbs-bar::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
}
.lb-thumbs-bar::-webkit-scrollbar-thumb {
    background: rgba(212,175,55,0.5);
    border-radius: 2px;
}
.lb-thumbs-track {
    display: flex;
    gap: 8px;
    align-items: center;
    width: max-content;
    padding: 2px 0;
}
.lb-thumb-btn {
    flex-shrink: 0;
    width: 72px;
    height: 54px;
    border: 2px solid rgba(255,255,255,0.18);
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    cursor: pointer;
    padding: 0;
    transition: border-color 0.18s, transform 0.18s, opacity 0.18s;
    opacity: 0.55;
}
.lb-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    border-radius: 3px;
}
.lb-thumb-btn:hover {
    border-color: rgba(212,175,55,0.7);
    opacity: 0.85;
    transform: scale(1.06);
}
.lb-thumb-btn.active {
    border-color: #D4AF37;
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.35);
}

/* Responsivo mobile */
@media (max-width: 600px) {
    .lb-inner { padding: 0 48px; }
    .lb-nav { width: 40px; height: 40px; font-size: 1.2rem; }
    .lb-prev { left: 4px; }
    .lb-next { right: 4px; }
    .lb-caption { font-size: 0.82rem; }
    .lb-thumb-btn { width: 56px; height: 42px; }
}

/* ========== SWIPE APRIMORADO — indicadores mobile ========== */

/* Impede seleção de texto durante o arrasto */
#dorathas-lightbox {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Impede que a imagem seja arrastada como elemento nativo */
#lb-img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Indicador de swipe: aparece apenas em touch devices na primeira abertura */
.lb-swipe-hint {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 7px 16px;
    color: rgba(255,255,255,0.82);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    pointer-events: none;
    z-index: 10002;
    animation: lbHintIn 0.4s ease 0.6s both, lbHintOut 0.4s ease 2.8s both;
    white-space: nowrap;
}
.lb-swipe-hint svg {
    flex-shrink: 0;
    opacity: 0.85;
}
@keyframes lbHintIn {
    from { opacity: 0; transform: translateX(-50%) translateY(8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes lbHintOut {
    from { opacity: 1; }
    to   { opacity: 0; pointer-events: none; }
}

/* Ocultar indicador em desktop (hover disponível) */
@media (hover: hover) and (pointer: fine) {
    .lb-swipe-hint { display: none; }
}

/* Ocultar botões nav em touch devices pequenos (swipe substitui) */
@media (max-width: 480px) and (hover: none) {
    .lb-nav {
        opacity: 0.35;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* ===== ZOOM: indicador e botão de reset ===== */
.lb-zoom-indicator {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #f5c842;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(245,200,66,0.5);
    border-radius: 20px;
    padding: 2px 9px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.lb-btn-zoom-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    flex-shrink: 0;
}
.lb-btn-zoom-reset:hover {
    background: rgba(212,175,55,0.7);
    color: #fff;
}
.lb-btn-zoom-reset svg {
    display: block;
    pointer-events: none;
}

/* Cursor na imagem do lightbox */
#lb-img {
    cursor: zoom-in;
    user-select: none;
    -webkit-user-drag: none;
}

/* ===== SLIDESHOW: botão play/pause ===== */
.lb-btn-slideshow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.15s;
    flex-shrink: 0;
}
.lb-btn-slideshow:hover {
    background: rgba(212,175,55,0.75);
    transform: scale(1.08);
}
.lb-btn-slideshow svg {
    display: block;
    pointer-events: none;
}

/* ===== SLIDESHOW: barra de progresso ===== */
.lb-progress {
    position: absolute;
    top: 56px; /* logo abaixo da topbar */
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.12);
    z-index: 10;
    overflow: hidden;
}
.lb-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d4af37, #f5c842);
    border-radius: 0 2px 2px 0;
    transition: none;
}

/* =====================================================
   MOBILE IMAGE FIX — Termoplásticos, Termofixos, Usinagem
   ===================================================== */

/* Tablets e mobile (< 992px): proporção adequada para imagens empilhadas */
@media (max-width: 991.98px) {
    /* Termoplásticos: imagens da galeria */
    #termoplasticos .row.g-2.mt-5 .service-image-wrapper {
        aspect-ratio: 4 / 3;
        min-height: unset;
        height: auto !important;
    }
    #termoplasticos .row.g-2.mt-5 .service-image {
        object-fit: cover;
        object-position: center center;
        width: 100%;
        height: 100%;
    }
    /* Termofixos: imagens da galeria */
    #termofixos .row.g-4.mt-5 .service-image-wrapper,
    #termofixos .row.g-3.mt-5 .service-image-wrapper {
        aspect-ratio: 4 / 3;
        min-height: unset;
        height: auto !important;
    }
    #termofixos .row.g-4.mt-5 .service-image,
    #termofixos .row.g-3.mt-5 .service-image {
        object-fit: cover;
        object-position: center center;
        width: 100%;
        height: 100%;
    }
    /* Usinagem: ambas as imagens */
    .usinagem-img-wrapper {
        aspect-ratio: 4 / 3 !important;
        min-height: unset !important;
        height: auto !important;
    }
    .usinagem-img-wrapper .service-image {
        object-fit: cover;
        object-position: center center;
        width: 100%;
        height: 100%;
    }
}

/* Mobile pequeno (< 576px): proporção 16:9 e colunas full-width */
@media (max-width: 575.98px) {
    #termoplasticos .row.g-2.mt-5 .service-image-wrapper,
    #termofixos .row.g-4.mt-5 .service-image-wrapper,
    #termofixos .row.g-3.mt-5 .service-image-wrapper,
    .usinagem-img-wrapper {
        aspect-ratio: 16 / 9 !important;
    }
    /* Colunas full-width em mobile pequeno */
    #termoplasticos .row.g-2.mt-5 > [class*="col-"],
    #termofixos .row.g-4.mt-5 > [class*="col-"],
    #termofixos .row.g-3.mt-5 > [class*="col-"],
    #usinagem .row.g-3.mt-5 > [class*="col-"] {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* =====================================================
   DESTAQUE DE E-MAIL NA SEÇÃO DE CONTATO
   ===================================================== */
.contact-email-badge {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    margin-top: 8px;
    background: linear-gradient(135deg, #0D2E4E 0%, #1a4a73 100%);
    color: #ffffff !important;
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(13, 46, 78, 0.18);
    word-break: break-all;
}
.contact-email-badge:hover {
    background: linear-gradient(135deg, #1a4a73 0%, #2563a8 100%);
    color: var(--gold-light) !important;
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(13, 46, 78, 0.28);
}
.contact-email-badge i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-email-badge--comercial {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 100%);
    border-left-color: #4caf50;
}
.contact-email-badge--comercial:hover {
    background: linear-gradient(135deg, #2d5a2d 0%, #3d7a3d 100%);
    color: #a5d6a7 !important;
}
.contact-email-badge--comercial i {
    color: #81c784;
}

/* ========== BOTÃO FLUTUANTE WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: wabounce 2.5s infinite;
    padding: 0;
    border: none;
    outline: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
    color: #fff;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 72px;
    background: #25D366;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #25D366;
    border-right: none;
}

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

/* Ajuste para não sobrepor o lightbox */
.dorathas-lightbox.active ~ .whatsapp-float,
body.lightbox-open .whatsapp-float {
    z-index: 100;
}

/* Mobile: botão um pouco menor */
@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ========== BALÃO DE BOAS-VINDAS WHATSAPP ========== */
.whatsapp-float-wrapper {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Reposicionar o botão flutuante para dentro do wrapper */
.whatsapp-float-wrapper .whatsapp-float {
    position: static;
    bottom: auto;
    right: auto;
}




@keyframes pulse-online {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

/* === Footer Email Links === */
.footer-emails {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-email-link {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75) !important;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}
.footer-email-link:hover {
    color: var(--gold-light) !important;
}
.footer-email-link--comercial {
    color: rgba(100, 220, 140, 0.85) !important;
}
.footer-email-link--comercial:hover {
    color: #7fffaa !important;
}

/* === Copy Email Button === */
.email-copy-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}
.email-copy-row--footer {
    justify-content: flex-end;
}
.copy-email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(13, 46, 78, 0.08);
    border: 1px solid rgba(13, 46, 78, 0.18);
    border-radius: 6px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    font-size: 0.78rem;
    padding: 0;
}
.copy-email-btn:hover {
    background: var(--primary);
    color: var(--gold-light);
    border-color: var(--primary);
    transform: scale(1.1);
}
.copy-email-btn.copied {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}
.copy-email-btn--comercial {
    border-color: rgba(34, 197, 94, 0.35);
    color: #16a34a;
}
.copy-email-btn--comercial:hover {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
}
/* Footer variant */
.copy-email-btn--footer {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.65);
}
.copy-email-btn--footer:hover {
    background: rgba(255,255,255,0.2);
    color: var(--gold-light);
    border-color: var(--gold);
}
.copy-email-btn--footer.copied {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

/* === SOFTWARE MEASURETECH — Imagem Premium === */
.software-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10);
    background: #0d2e4e;
    line-height: 0;
}
.software-hero-image {
    width: 100%;
    height: auto;
    min-height: 320px;
    max-height: 480px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}
.software-image-wrapper:hover .software-hero-image {
    transform: scale(1.03);
}
.software-image-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    color: #0d2e4e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    z-index: 2;
}

/* === FORMULÁRIO PERIFÉRICOS — Largura Total Premium === */
#orcamento-perifericos .quote-form-card {
    padding: 48px 56px;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0D2E4E 0%, #0a2240 60%, #0f1e35 100%);
    border-top: 5px solid var(--gold);
    border-bottom: 2px solid rgba(212,172,13,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,172,13,0.15);
    color: #fff;
}
#orcamento-perifericos .quote-form-card::before {
    background: radial-gradient(circle at 90% 10%, rgba(212,172,13,0.15) 0%, transparent 60%);
    width: 350px;
    height: 350px;
}
#orcamento-perifericos .quote-form-title {
    color: var(--gold) !important;
    text-shadow: 0 2px 8px rgba(212,172,13,0.3);
}
#orcamento-perifericos .quote-form-subtitle {
    color: rgba(255,255,255,0.75);
}
#orcamento-perifericos .form-label {
    color: rgba(255,255,255,0.85);
}
#orcamento-perifericos .form-control,
#orcamento-perifericos .form-select {
    background-color: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
#orcamento-perifericos .form-control::placeholder {
    color: rgba(255,255,255,0.35);
}
#orcamento-perifericos .form-control:focus,
#orcamento-perifericos .form-select:focus {
    background-color: rgba(255,255,255,0.12);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,172,13,0.25);
    color: #fff;
}
#orcamento-perifericos .form-select option {
    background: #0D2E4E;
    color: #fff;
}
#orcamento-perifericos .quote-equipments-label {
    color: rgba(255,255,255,0.9) !important;
}
#orcamento-perifericos .quote-equipments-hint {
    color: rgba(255,255,255,0.5);
}
#orcamento-perifericos .quote-checkbox-card {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
}
#orcamento-perifericos .quote-checkbox-card:hover {
    border-color: var(--gold);
    background: rgba(212,172,13,0.1);
}
#orcamento-perifericos .quote-checkbox-content {
    color: rgba(255,255,255,0.85);
}
#orcamento-perifericos .quote-checkbox-card input:checked ~ .quote-checkbox-content {
    color: var(--gold);
}
@media (max-width: 768px) {
    #orcamento-perifericos .quote-form-card {
        padding: 28px 20px;
    }
    .software-hero-image {
        min-height: 220px;
        max-height: 320px;
    }
}

/* === AJUSTES GERAIS DE DESIGN PREMIUM === */
/* Mais respiro entre seções */
.section-padding {
    padding-top: 90px;
    padding-bottom: 90px;
}
/* Cards de equipamentos com mais respiro */
.equipment-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
/* Formulário de contato mais limpo */
.contact-form-card {
    border-radius: 20px;
    background: linear-gradient(135deg, #0D2E4E 0%, #0a2240 60%, #0f1e35 100%) !important;
    border-top: 5px solid var(--gold) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,172,13,0.15) !important;
    color: #fff;
}
.contact-form-card .form-label {
    color: rgba(255,255,255,0.85);
}
.contact-form-card .form-control,
.contact-form-card .form-select {
    background-color: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.contact-form-card .form-control::placeholder {
    color: rgba(255,255,255,0.35);
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    background-color: rgba(255,255,255,0.12);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,172,13,0.25);
    color: #fff;
}
.contact-form-card .form-select option {
    background: #0D2E4E;
    color: #fff;
}
/* Seção Contato — fundo escuro para destacar o formulário */
#contato {
    background: linear-gradient(160deg, #071a2e 0%, #0D2E4E 50%, #071a2e 100%) !important;
}
#contato .section-title {
    color: #fff;
}
#contato .section-tag {
    background: rgba(212,172,13,0.15);
    color: var(--gold);
    border: 1px solid rgba(212,172,13,0.3);
}
#contato .section-description {
    color: rgba(255,255,255,0.7);
}
#contato .title-divider {
    background: var(--gold);
}
/* === Validação Visual em Tempo Real === */
.rt-valid {
    border-color: #22c55e !important;
    background-color: rgba(34,197,94,0.06) !important;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.15) !important;
}
.rt-invalid {
    border-color: #ef4444 !important;
    background-color: rgba(239,68,68,0.05) !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.12) !important;
    animation: shakeField 0.35s ease;
}
@keyframes shakeField {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-5px); }
    60%       { transform: translateX(5px); }
}
.rt-feedback {
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 5px;
    min-height: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.2s ease;
}
.rt-feedback--valid {
    color: #16a34a;
}
.rt-feedback--invalid {
    color: #dc2626;
}
.rt-feedback i {
    font-size: 0.82rem;
    flex-shrink: 0;
}
/* Campos escuros (formulários com fundo azul) */
#orcamento-perifericos .rt-valid,
#contato .rt-valid {
    border-color: #4ade80 !important;
    background-color: rgba(74,222,128,0.1) !important;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.2) !important;
}
#orcamento-perifericos .rt-invalid,
#contato .rt-invalid {
    border-color: #f87171 !important;
    background-color: rgba(248,113,113,0.1) !important;
    box-shadow: 0 0 0 3px rgba(248,113,113,0.2) !important;
}
#orcamento-perifericos .rt-feedback--valid,
#contato .rt-feedback--valid {
    color: #86efac;
}
#orcamento-perifericos .rt-feedback--invalid,
#contato .rt-feedback--invalid {
    color: #fca5a5;
}
/* Botões de submit nos formulários escuros — maior destaque */
#contato .btn-gold,
#orcamento-perifericos .btn-gold {
    font-size: 1.05rem;
    padding: 14px 32px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 24px rgba(212,172,13,0.4);
    border: none;
}
#contato .btn-gold:hover,
#orcamento-perifericos .btn-gold:hover {
    box-shadow: 0 10px 32px rgba(212,172,13,0.6);
    transform: translateY(-2px);
}
/* Textarea nos formulários escuros */
.contact-form-card textarea.form-control {
    background-color: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.contact-form-card textarea.form-control::placeholder {
    color: rgba(255,255,255,0.35);
}
/* Faixa de destaque acima da seção de orçamento periféricos */
#orcamento-perifericos {
    position: relative;
}
#orcamento-perifericos::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin-bottom: 8px;
    border-radius: 2px;
}

/* =====================================================
   CORREÇÕES MOBILE — LAYOUT SEÇÕES DE SERVIÇO
   ===================================================== */

/* Moldes: container principal de imagens — altura fixa no desktop, aspect-ratio no mobile */
.moldes-img-main-wrap {
    height: 520px;
}

.moldes-img-stack-wrap {
    height: 520px;
}

@media (max-width: 991.98px) {
    /* Moldes: imagens responsivas no mobile/tablet */
    .moldes-img-main-wrap {
        height: auto !important;
        aspect-ratio: 4 / 3;
    }
    .moldes-img-main-wrap img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center;
    }
    .moldes-img-stack-wrap {
        height: auto !important;
    }
    .moldes-img-stack-wrap > div {
        flex: none !important;
        aspect-ratio: 4 / 3;
        min-height: 0 !important;
    }
    .moldes-img-stack-wrap > div img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center;
    }

    /* Garantir que todas as colunas de imagem ocupem 100% no mobile */
    #termoplasticos .row.g-2.mt-5 > .col-lg-6,
    #termofixos .row.g-4.mt-5 > .col-lg-6,
    #ferramentaria .row.g-3.mt-5 > .col-lg-6,
    #usinagem .row.g-2.mt-5 > .col-lg-6 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Footer: garantir largura total */
    .site-footer {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 575.98px) {
    /* Moldes mobile pequeno: 16:9 */
    .moldes-img-main-wrap {
        aspect-ratio: 16 / 9 !important;
    }
    .moldes-img-stack-wrap > div {
        aspect-ratio: 16 / 9 !important;
    }

    /* Seções de serviço: colunas full-width */
    #termoplasticos .row.g-2.mt-5 > [class*="col-"],
    #termofixos .row.g-4.mt-5 > [class*="col-"],
    #termofixos .row.g-3.mt-5 > [class*="col-"],
    #ferramentaria .row.g-3.mt-5 > [class*="col-"],
    #usinagem .row.g-2.mt-5 > [class*="col-"],
    #usinagem .row.g-3.mt-5 > [class*="col-"] {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Footer: centralizar conteúdo no mobile */
    .site-footer .col-md-4 {
        text-align: center !important;
    }
    .footer-logo-official {
        align-items: center !important;
    }
    .email-copy-row--footer {
        justify-content: center;
    }
}

/* =============================================
   BLOG CAROUSEL — Animação de deslize suave
   ============================================= */
#blogCarousel .carousel-inner {
    overflow: hidden;
    position: relative;
    min-height: 420px;
}

#blogCarousel .carousel-item {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(0);
    display: block !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}

#blogCarousel .carousel-item.active {
    position: relative !important;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
}

/* Slide entrante vindo da direita (avançar) */
#blogCarousel .carousel-item.blog-slide-in-right {
    transform: translateX(100%) !important;
    opacity: 0;
    z-index: 3;
}

/* Slide entrante vindo da esquerda (voltar) */
#blogCarousel .carousel-item.blog-slide-in-left {
    transform: translateX(-100%) !important;
    opacity: 0;
    z-index: 3;
}

/* Slide entrante chegando ao centro */
#blogCarousel .carousel-item.blog-slide-in-active {
    transform: translateX(0) !important;
    opacity: 1;
    z-index: 3;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}

/* Slide saindo para a esquerda (avançar) */
#blogCarousel .carousel-item.blog-slide-out-left {
    transform: translateX(-100%) !important;
    opacity: 0;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}

/* Slide saindo para a direita (voltar) */
#blogCarousel .carousel-item.blog-slide-out-right {
    transform: translateX(100%) !important;
    opacity: 0;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}
.cta-final-section{background:linear-gradient(135deg,#071020 0%,#0a1628 55%,#12233d 100%);padding:90px 0 80px;border-top:3px solid var(--gold);position:relative;overflow:hidden}.cta-final-section::before{content:"";position:absolute;inset:0;background:radial-gradient(ellipse at 70% 50%,rgba(212,172,13,.08) 0%,transparent 65%);pointer-events:none}.cta-final-eyebrow{display:inline-block;background:rgba(212,172,13,.15);color:var(--gold);font-family:Montserrat,sans-serif;font-size:.72rem;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;padding:6px 18px;border-radius:30px;border:1px solid rgba(212,172,13,.3);margin-bottom:24px}.cta-final-title{font-family:Montserrat,sans-serif;font-size:2.3rem;font-weight:800;color:var(--white);line-height:1.25;max-width:680px;margin:0 auto 20px}.cta-final-title span{color:var(--gold)}.cta-final-sub{color:rgba(255,255,255,.70);font-size:1.05rem;max-width:540px;margin:0 auto 40px;line-height:1.65}.cta-final-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-bottom:44px}.btn-cta-whatsapp{display:inline-flex;align-items:center;gap:10px;background:#25D366;color:#fff;border:none;border-radius:6px;padding:16px 36px;font-family:Montserrat,sans-serif;font-size:1rem;font-weight:700;text-decoration:none;box-shadow:0 6px 28px rgba(37,211,102,.35);transition:all .3s ease}.btn-cta-whatsapp:hover{background:#1ebe57;color:#fff;transform:translateY(-3px);box-shadow:0 12px 40px rgba(37,211,102,.45)}.btn-cta-email{display:inline-flex;align-items:center;gap:10px;background:transparent;color:rgba(255,255,255,.88);border:2px solid rgba(255,255,255,.35);border-radius:6px;padding:16px 36px;font-family:Montserrat,sans-serif;font-size:1rem;font-weight:600;text-decoration:none;transition:all .3s ease}.btn-cta-email:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-3px)}.cta-final-divider{width:50px;height:1px;background:rgba(212,172,13,.35);margin:0 auto 28px}.cta-trust-badges{display:flex;gap:32px;justify-content:center;flex-wrap:wrap}.cta-trust-badge{display:flex;align-items:center;gap:8px;color:rgba(255,255,255,.65);font-size:.82rem;font-weight:500}.cta-trust-badge i{color:var(--gold);font-size:.9rem}@media(max-width:768px){.cta-final-title{font-size:1.6rem}.cta-final-actions{flex-direction:column;align-items:center}.btn-cta-whatsapp,.btn-cta-email{width:100%;max-width:320px;justify-content:center}.cta-trust-badges{gap:18px}}@media(max-width:480px){.cta-final-section{padding:60px 0 50px}.cta-final-title{font-size:1.4rem}.cta-trust-badges{flex-direction:column;align-items:center;gap:14px}}


/* ========== CTA PRIMARY — Padrão de conversão ========== */
.cta-primary {
  background: linear-gradient(135deg, #E8B923 0%, #C8990A 100%);
  color: #0D2E4E !important;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 18px 42px;
  border-radius: 6px;
  text-decoration: none !important;
  display: inline-block;
  border: none;
  box-shadow: 0 4px 24px rgba(232,185,35,0.5), 0 2px 8px rgba(0,0,0,0.18);
  transition: all 0.28s ease;
}
.cta-primary:hover,
.cta-primary:focus {
  background: linear-gradient(135deg, #F5C832 0%, #E8B923 100%);
  color: #0D2E4E !important;
  box-shadow: 0 8px 36px rgba(232,185,35,0.65), 0 4px 14px rgba(0,0,0,0.22);
  transform: translateY(-3px);
  text-decoration: none !important;
}
.cta-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(232,185,35,0.45);
}
.cta-primary strong {
  color: inherit;
  font-weight: 800;
}


/* ========== SEÇÃO INTRO / PROPOSTA DE VALOR ========== */
.intro-proposta-section {
    background-color: #F8F9FA;
    padding: 64px 0 56px;
    border-top: 1px solid rgba(13,46,78,0.08);
}
.intro-proposta-inner {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
}
.intro-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #E8B923;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.intro-h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #0D2E4E;
    line-height: 1.2;
    margin-bottom: 20px;
}
.intro-h2 span {
    color: #E8B923;
}
.intro-p {
    font-size: 1.05rem;
    color: #4a5568;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.intro-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.cta-ghost {
    display: inline-block;
    padding: 16px 38px;
    border: 2px solid #0D2E4E;
    border-radius: 6px;
    color: #0D2E4E !important;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.28s ease;
    background: transparent;
}
.cta-ghost:hover,
.cta-ghost:focus {
    background-color: #0D2E4E;
    color: #E8B923 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(13,46,78,0.25);
    text-decoration: none !important;
}
@media (max-width: 576px) {
    .intro-proposta-section { padding: 48px 0 40px; }
    .intro-cta-group { flex-direction: column; align-items: stretch; text-align: center; }
    .intro-cta-group .cta-primary,
    .intro-cta-group .cta-ghost { width: 100%; text-align: center; }
}


/* ========== UPGRADE VISUAL — TIPOGRAFIA E CORES ========== */

/* Corpo de texto: navy-tinted em vez de cinza generico */
body {
    color: #2d3748;
}
p {
    color: #2d3748;
    line-height: 1.75;
}

/* Strong/bold em paragrafos: navy da marca */
p strong, p b, li strong, li b {
    color: #0D2E4E;
    font-weight: 700;
}

/* Section tags maiores e mais visiveis */
.section-tag {
    font-size: 13px !important;
    letter-spacing: 2px !important;
    padding: 6px 14px !important;
    background: rgba(232, 185, 35, 0.12) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(232, 185, 35, 0.4) !important;
}

/* Titulos de secao com mais peso */
.section-title {
    font-size: clamp(28px, 4vw, 42px) !important;
    letter-spacing: -0.5px;
}

/* Divisor dourado mais visivel */
.title-divider {
    background: #E8B923 !important;
    height: 4px !important;
    width: 60px !important;
    border-radius: 2px !important;
    margin: 16px auto 0 !important;
}

/* Highlight H3 com borda dourada */
.about-highlight {
    border-left: 4px solid #E8B923;
    padding-left: 16px;
    color: #0D2E4E !important;
    line-height: 1.3;
}

/* Pilares — nomes dos servicos em dourado */
.pilares-list li strong {
    color: #E8B923 !important;
}

/* Numeros das estatisticas em dourado */
.stat-number {
    color: #E8B923 !important;
}

/* Titulos dos cards de servico */
.service-card h3,
.service-card .card-title,
.about-content h4,
h3.service-title {
    color: #0D2E4E;
    font-weight: 800;
}

/* Texto das secoes escuras (fundo navy) */
.bg-dark-section p,
.bg-dark-section li {
    color: rgba(255,255,255,0.88);
}

/* Quem Somos — titulos e highlight no fundo escuro */
#quem-somos .about-highlight {
    color: rgba(255,255,255,0.95) !important;
}
#quem-somos .about-content h4 {
    color: rgba(255,255,255,0.95) !important;
}

/* Navbar brand - texto da marca */
.navbar-brand,
.navbar-brand * {
    color: #E8B923 !important;
}

/* Texto dos cards de blog e artigos */
.blog-card p, .article-excerpt {
    color: #3a5068;
}

/* Destaques inline — palavras-chave com cor */
.text-gold { color: #E8B923 !important; }
.text-navy { color: #0D2E4E !important; }

/* Quote/depoimentos — texto mais rico */
.testimonial-card p,
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Subtitulos de secao (h3 dentro de secoes) */
.section-padding h3 {
    color: #0D2E4E;
    font-weight: 700;
}


/* ============================================================
   AUDITORIA CONVERSAO JULHO 2026
   ============================================================ */

/* --- 6A. SERVICOS RAPIDOS HERO BAR --- */
.services-quick-section {
    background: #0D2E4E;
    padding: 0;
    border-bottom: 2px solid rgba(232,185,35,.25);
    position: relative;
    z-index: 10;
}
.services-quick-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.service-quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 10px;
    border-right: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.82);
    text-decoration: none !important;
    transition: all .22s ease;
    gap: 8px;
}
.service-quick-card:last-child { border-right: none; }
.service-quick-card:hover { background: rgba(232,185,35,.12); color: #E8B923 !important; }
.service-quick-icon { font-size: 1.8rem; color: #E8B923; line-height: 1; }
.service-quick-label { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; line-height: 1.35; }
@media (max-width:991px) {
    .services-quick-grid { grid-template-columns: repeat(3,1fr); }
    .service-quick-card:nth-child(3n) { border-right: none; }
}
@media (max-width:575px) {
    .services-quick-grid { grid-template-columns: repeat(2,1fr); }
    .service-quick-card:nth-child(2n) { border-right: none; }
    .service-quick-card:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.08); }
    .service-quick-label { font-size: .62rem; }
}

/* --- 6B. TESTIMONIAL WHITE CARD --- */
#depoimentos .testimonial-card {
    background: #ffffff !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 36px 48px !important;
    max-width: 820px !important;
    margin: 0 auto !important;
    color: #2d3748 !important;
    box-shadow: 0 12px 48px rgba(0,0,0,.28), 0 4px 16px rgba(0,0,0,.14) !important;
}
#depoimentos .testimonial-text {
    color: #4a5568 !important;
    font-size: 1.05rem !important;
    line-height: 1.85 !important;
    border-left: 4px solid #E8B923 !important;
    padding-left: 18px !important;
}
#depoimentos .testimonial-name { color: #0D2E4E !important; font-size: 1rem !important; font-weight: 700 !important; }
#depoimentos .testimonial-company { color: #718096 !important; font-size: .82rem !important; font-weight: 500 !important; text-transform: none !important; letter-spacing: 0 !important; }
#depoimentos .testimonial-quote-icon { color: rgba(232,185,35,.18) !important; font-size: 3.5rem !important; }
#depoimentos .testimonial-avatar { background: linear-gradient(135deg,#0D2E4E,#1a4a7a) !important; width: 52px !important; height: 52px !important; }
#depoimentos .testimonial-avatar i { color: #E8B923 !important; font-size: 1.6rem !important; }

/* Stars row */
.testimonial-stars-row { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars-row i { color: #F59E0B; font-size: 1rem; }

/* Arrows */
.testimonial-control {
    width: 48px !important; height: 48px !important;
    background: #E8B923 !important;
    border-radius: 50% !important; opacity: 1 !important;
    box-shadow: 0 3px 12px rgba(0,0,0,.3);
    transition: transform .2s ease;
}
.testimonial-control:hover { background: #F5C832 !important; transform: scale(1.1); }
.testimonial-control .carousel-control-prev-icon,
.testimonial-control .carousel-control-next-icon { filter: brightness(0) !important; width: 20px !important; height: 20px !important; }

/* Dots */
.testimonial-indicators { bottom: -44px !important; }
.testimonial-indicators button { background: rgba(232,185,35,.35) !important; width: 10px !important; height: 10px !important; border: none !important; }
.testimonial-indicators button.active { background: #E8B923 !important; width: 30px !important; border-radius: 8px !important; }

/* --- 6C. CTA WHATSAPP + PROJECT BUTTONS --- */
.cta-whatsapp-btn {
    display: inline-flex !important;
    align-items: center; gap: 10px;
    background: #25D366; color: #fff !important;
    font-weight: 700; font-size: 1rem; letter-spacing: .5px;
    padding: 18px 36px; border-radius: 6px;
    text-decoration: none !important; border: none;
    box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.12);
    transition: all .28s ease;
}
.cta-whatsapp-btn:hover, .cta-whatsapp-btn:focus {
    background: #1ebe57; color: #fff !important;
    box-shadow: 0 8px 32px rgba(37,211,102,.6), 0 4px 12px rgba(0,0,0,.2);
    transform: translateY(-3px); text-decoration: none !important;
}
.cta-whatsapp-btn i { font-size: 1.25rem; }
.cta-project-btn { display: inline-flex !important; align-items: center; gap: 10px; }
.cta-project-btn i { font-size: 1.15rem; }
.intro-cta-tagline { margin-top: 16px; font-size: .85rem; color: #718096; font-style: italic; text-align: center; }

/* --- 6D. MOBILE --- */
@media (max-width: 576px) {
    .cta-whatsapp-btn, .intro-cta-group .cta-primary {
        width: 100% !important; justify-content: center; text-align: center; padding: 16px 20px !important;
    }
    .intro-cta-group { flex-direction: column !important; }
    #depoimentos .testimonial-card { padding: 24px 20px !important; border-radius: 14px !important; }
    #depoimentos .testimonial-text { font-size: .95rem !important; }
    .testimonial-control { width: 38px !important; height: 38px !important; }
}

.service-quick-sub {
    font-size: .58rem;
    color: rgba(255,255,255,.52);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.3;
    margin-top: -2px;
    text-align: center;
}

/* FIX gap CTA -> Sobre Nos */
#intro-proposta {
    padding-bottom: 48px !important;
}
#quem-somos {
    padding-top: 35px !important;
}


/* ========== HERO URGENCY BAR ========== */
.hero-urgency-bar {
    background: linear-gradient(90deg, #b8930f 0%, #d4a820 50%, #b8930f 100%);
    padding: 14px 0;
    border-bottom: 2px solid #8a6d0b;
    position: relative;
    z-index: 10;
}
.urgency-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.urgency-text {
    color: #1a1a1a;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
}
.urgency-text i {
    color: #5a3a00;
    margin-right: 6px;
    font-size: 1rem;
}
.urgency-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a2e;
    color: #f5c842;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    border: 2px solid #1a1a2e;
    letter-spacing: 0.02em;
}
.urgency-cta-btn:hover {
    background: #f5c842;
    color: #1a1a2e;
    transform: translateY(-1px);
    text-decoration: none;
}
@media (max-width: 767.98px) {
    .urgency-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .urgency-text {
        font-size: 0.85rem;
    }
    .urgency-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}
/* ========== FIM HERO URGENCY BAR ========== */


/* ========== CTA STRIP SECTIONS (pos-cases e pos-depoimentos) ========== */
.cta-strip-section {
    padding: 48px 0;
}
.cta-strip-dark {
    background: #0a1628;
    border-top: 3px solid #b8930f;
    border-bottom: 3px solid #b8930f;
}
.cta-strip-gold {
    background: linear-gradient(90deg, #b8930f 0%, #d4a820 50%, #b8930f 100%);
    border-top: 3px solid #8a6d0b;
    border-bottom: 3px solid #8a6d0b;
}
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-strip-copy {
    flex: 1;
    min-width: 200px;
}
.cta-strip-kicker {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.8;
}
.cta-strip-dark .cta-strip-kicker { color: #b8930f; }
.cta-strip-gold .cta-strip-kicker { color: #3a2800; }
.cta-strip-h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.cta-strip-dark .cta-strip-h3 { color: #ffffff; }
.cta-strip-gold .cta-strip-h3 { color: #1a1a1a; }
.cta-strip-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
/* Botao primario dark-strip */
.cta-strip-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #b8930f;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid #b8930f;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}
.cta-strip-btn-primary:hover {
    background: #d4a820;
    border-color: #d4a820;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}
/* Botao primario gold-strip */
.cta-strip-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a2e;
    color: #f5c842;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid #1a1a2e;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}
.cta-strip-btn-dark:hover {
    background: #ffffff;
    color: #1a1a2e;
    text-decoration: none;
    transform: translateY(-2px);
}
/* Botao WhatsApp */
.cta-strip-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 24px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid #25D366;
    transition: background 0.2s, transform 0.15s;
}
.cta-strip-btn-wa:hover {
    background: #1aad50;
    border-color: #1aad50;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}
/* Mobile */
@media (max-width: 767.98px) {
    .cta-strip-section { padding: 36px 0; }
    .cta-strip-inner { flex-direction: column; text-align: center; gap: 20px; }
    .cta-strip-h3 { font-size: 1.15rem; }
    .cta-strip-actions { width: 100%; flex-direction: column; }
    .cta-strip-btn-primary,
    .cta-strip-btn-dark,
    .cta-strip-btn-wa {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }
}
/* ========== FIM CTA STRIP SECTIONS ========== */


/* ========== TRUSTED BY STRIP ========== */
.trusted-by-strip {
    background: #f0f0f0;
    padding: 16px 0;
    border-bottom: 1px solid #d8d8d8;
}
.trusted-by-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.trusted-by-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
    white-space: nowrap;
    flex-shrink: 0;
}
.trusted-by-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}
.trusted-by-logos img {
    height: 28px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    filter: grayscale(100%) opacity(55%);
    transition: filter 0.2s;
}
.trusted-by-logos img:hover {
    filter: grayscale(0%) opacity(100%);
}
.trusted-by-more {
    font-size: 0.78rem;
    font-weight: 700;
    color: #b8930f;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.trusted-by-more:hover {
    color: #d4a820;
    text-decoration: underline;
}
@media (max-width: 767.98px) {
    .trusted-by-label { display: none; }
    .trusted-by-logos { gap: 14px; }
    .trusted-by-logos img { height: 22px; max-width: 70px; }
    .trusted-by-more { font-size: 0.72rem; }
}
/* ========== FIM TRUSTED BY STRIP ========== */


/* ========== ITEM 4 CRO: MOBILE SCANNABILITY ========== */
.intro-p-secondary {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    margin-top: 0.5rem;
}
@media (max-width: 767.98px) {
    /* Service sections — paragrafos mais compactos */
    .service-content p.lead {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 0.75rem;
    }
    .service-content p {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    /* Intro-proposta */
    .intro-p { font-size: 0.95rem; line-height: 1.55; }
    .intro-p-secondary { font-size: 0.85rem; line-height: 1.5; }
    /* Quem Somos lista de pilares */
    .pilares-list li {
        font-size: 0.85rem;
        line-height: 1.45;
        margin-bottom: 6px;
    }
    /* Section descriptions */
    .section-description {
        font-size: 0.9rem;
        line-height: 1.55;
    }
}
/* ========== FIM MOBILE SCANNABILITY ========== */


/* ========== ITEM 5 CRO: FORM IMPROVEMENTS ========== */
.form-trust-note {
    text-align: center;
    font-size: 0.78rem;
    color: #666;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.5;
}
.form-trust-note i {
    color: #b8930f;
    margin-right: 3px;
}
/* ========== FIM FORM IMPROVEMENTS ========== */



/* ========================================
   MOBILE FIXES — hamburger, flutuantes, scroll
   ======================================== */

/* Scroll-margin para header fixo (TODAS as seções) */
section[id],
div[id].section-padding {
    scroll-margin-top: 90px;
}

/* Hambúrguer: dimensões explícitas para evitar corte */
.navbar-toggler {
    min-width: 44px !important;
    min-height: 44px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
}
.navbar-toggler-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    display: block !important;
    background-size: 100% 100% !important;
    flex-shrink: 0 !important;
}

@media (max-width: 991.98px) {
    /* Seta Voltar ao Topo: acima do WhatsApp com folga */
    .back-to-top-btn {
        bottom: 88px !important;
        right: 16px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1.05rem !important;
    }
    /* Esconder tooltip no mobile (não cabe) */
    .back-to-top-btn::before {
        display: none !important;
    }

    /* WhatsApp float: posição consistente no mobile */
    .whatsapp-float {
        bottom: 20px !important;
        right: 16px !important;
        width: 54px !important;
        height: 54px !important;
        font-size: 1.55rem !important;
    }
    .whatsapp-float-wrapper {
        bottom: 20px !important;
        right: 16px !important;
    }
    .whatsapp-float-tooltip,
    .whatsapp-tooltip {
        display: none !important;
    }

    /* Scroll-margin mobile: compensar header menor */
    section[id],
    div[id].section-padding {
        scroll-margin-top: 75px;
    }
}

@media (max-width: 575.98px) {
    /* Mobile pequeno: garantir que hambúrguer não saia do viewport */
    .navbar .container {
        padding-right: 12px !important;
    }
    .navbar-toggler {
        margin-right: 0 !important;
    }
}



/* ===== CONSOLIDATED FIXES 2026-07-12 (Claude) - arquivo correto desta vez ===== */
.whatsapp-float {
    background: #25D366 !important;
    background-color: #25D366 !important;
    opacity: 1 !important;
}
.whatsapp-float i { color: #ffffff !important; }

.navbar-toggler { display: none !important; }
@media (max-width: 991.98px) {
    .navbar-toggler { display: flex !important; }
}

.section-tag {
    color: #0D2E4E !important;
}


/* ===== CONSOLIDATED FIXES 2026-07-13 (Claude) - setas do carrossel + demais ===== */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 4%;
    opacity: 0.85;
}
#heroCarousel .carousel-control-prev { left: 3%; }
#heroCarousel .carousel-control-next { right: 3%; }
@media (min-width: 1600px) {
    #heroCarousel .carousel-control-prev { left: calc(50% - 750px); }
    #heroCarousel .carousel-control-next { right: calc(50% - 750px); }
}


/* ===== FIX 2026-07-13 (Claude) - section-tag invisivel (navy sobre navy) em secoes escuras ===== */
.bg-dark-section .section-tag {
    color: #F0C419 !important;
    background: rgba(232, 185, 35, 0.18) !important;
    border-color: rgba(232, 185, 35, 0.55) !important;
}


/* ===== FIX 2026-07-13b (Claude) - mais textos invisiveis (navy-on-navy e white-on-white) ===== */
/* strong/b dentro de p ou li em secoes escuras: eram navy sobre navy, agora dourado */
.bg-dark-section p strong,
.bg-dark-section p b,
.bg-dark-section li strong,
.bg-dark-section li b {
    color: #E8B923 !important;
}

/* paragrafos/listas dentro de cards brancos (equipment-card) que ficam dentro de secoes escuras:
   herdavam branco do .bg-dark-section p e ficavam brancos sobre fundo branco do card */
.bg-dark-section .equipment-card p,
.bg-dark-section .equipment-card li,
.bg-dark-section .brand-card p,
.bg-dark-section .brand-card li {
    color: #2D3748 !important;
}

/* ===== FIX 2026-07-13c (Claude) - selo (.section-tag) em secoes claras mais solido, no padrao visual do selo em secoes escuras ===== */
.section-tag {
    background: rgba(232, 185, 35, 0.22) !important;
    border: 1.5px solid rgba(232, 185, 35, 0.7) !important;
}

/* ===== FIX 2026-07-13d (Claude) - strong dentro de cards brancos (equipment-card/brand-card) nao deve ficar dourado, deve ficar navy como nos outros cards claros do site ===== */
.bg-dark-section .equipment-card p strong,
.bg-dark-section .equipment-card p b,
.bg-dark-section .equipment-card li strong,
.bg-dark-section .equipment-card li b,
.bg-dark-section .brand-card p strong,
.bg-dark-section .brand-card p b,
.bg-dark-section .brand-card li strong,
.bg-dark-section .brand-card li b {
    color: #0D2E4E !important;
}

/* ===== FIX 2026-07-13e (Claude) - selo em secoes claras ainda muito claro/lavado, trocado para preenchimento solido ===== */
.section-tag {
    background: #F5E6B3 !important;
    border: 1.5px solid #D4AC0D !important;
}

/* ===== FIX 2026-07-13f (Claude) - selo em secoes claras no mesmo padrao visual do botao CTA dourado solido ===== */
.section-tag {
    background: linear-gradient(135deg, #E8B923 0%, #C8990A 100%) !important;
    border: none !important;
    box-shadow: 0 2px 10px rgba(232, 185, 35, 0.4) !important;
}
