:root {
    /* Colors - Ultra Clean Premium */
    --c-bg: #ffffff;
    --c-surface: #f7f9fa;
    --c-text: #111827;
    --c-text-muted: #6b7280;
    
    --c-accent: #002B49; /* Navy */
    --c-highlight: #C5A059; /* Gold */
    --c-wa: #25D366;
    
    /* Typography */
    --f-main: 'Inter', sans-serif;
    
    /* Spacing */
    --container: 1400px;
    --px: 5%;
    
    /* Easings */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.icon-svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

html {
    background-color: var(--c-bg);
}

@media (min-width: 769px) {
    html { scroll-behavior: smooth; }
}

body {
    font-family: var(--f-main);
    color: var(--c-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* --- Typography --- */
.massive-heading {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.sub-heading {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--c-text-muted);
    font-weight: 400;
}

.highlight { color: var(--c-highlight); }
.white { color: #fff !important; }

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--c-accent);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--c-highlight);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
    z-index: 1;
}

.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { transform: scale(1.05); }

.btn-text, .btn-icon { position: relative; z-index: 2; }
.btn-icon { transition: transform 0.3s ease; }
.btn-primary:hover .btn-icon { transform: translateX(5px); }

.btn-massive {
    display: inline-block;
    background: var(--c-highlight);
    color: #fff;
    padding: 1.5rem 3rem;
    border-radius: 100px;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-massive:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 50px rgba(197, 160, 89, 0.4);
}

.btn-massive.outline {
    background: transparent;
    border: 2px solid var(--c-highlight);
    color: var(--c-highlight);
    box-shadow: none;
}

.btn-massive.outline:hover {
    background: var(--c-highlight);
    color: #fff;
}

.hero-actions-flex {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--c-accent);
    font-size: 1.125rem;
    position: relative;
}

.btn-text-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0%; height: 2px;
    background: var(--c-highlight);
    transition: width 0.3s ease;
}

.btn-text-link:hover::after { width: 100%; }
.btn-text-link:hover i { transform: translateX(5px); }
.btn-text-link i { transition: transform 0.3s ease; }

.btn-wa-showcase {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--c-accent);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-wa-showcase i {
    font-size: 1.2rem;
    color: var(--c-wa);
}

.btn-wa-showcase:hover {
    background: var(--c-highlight);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
    border-color: var(--c-highlight);
}

.btn-wa-showcase:hover i {
    color: #fff;
    transform: scale(1.2) rotate(10deg);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: padding 0.3s ease, background 0.3s ease;
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 1024px) {
    .header.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-title {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: var(--c-accent);
}

.brand-subtitle {
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--c-highlight);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--c-text);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-link:hover { opacity: 1; }
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--c-accent);
    cursor: pointer;
    background: none;
    border: none;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s ease, visibility 0.4s ease;
    overflow-y: auto; /* Permitir rolagem vertical no celular */
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem; /* Reduzido levemente para caber melhor em telas curtas */
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--c-accent);
    cursor: pointer;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Reduzido levemente para caber melhor em telas curtas */
}

.mobile-link {
    font-size: clamp(1.4rem, 4.5vh, 2rem); /* Fonte menor e fluida no celular para evitar quebras feias */
    font-weight: 800;
    color: var(--c-accent);
    letter-spacing: -1px;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 2rem;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    padding-top: 150px;
    position: relative;
    overflow: hidden;
}

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

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
}

.orb-1 {
    width: 600px; height: 600px;
    background: var(--c-surface);
    top: -10%; left: -10%;
}

.orb-2 {
    width: 500px; height: 500px;
    background: rgba(197, 160, 89, 0.1);
    bottom: 10%; right: 5%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--c-surface);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--c-accent);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.hero-title .line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    color: var(--c-text-muted);
    margin: 2rem 0 3rem;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--c-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px; height: 50px;
    background: rgba(0,0,0,0.1);
}

.hero-visual {
    position: relative;
    height: 700px;
}

.machine-showcase {
    width: 100%; height: 100%;
    background-color: var(--c-surface);
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.floating-tech-card {
    position: absolute;
    bottom: -30px; left: -30px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

.tech-icon {
    width: 50px; height: 50px;
    background: var(--c-surface);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--c-highlight);
}

.tech-info { display: flex; flex-direction: column; }
.tech-info strong { font-size: 1.125rem; color: var(--c-accent); }
.tech-info span { color: var(--c-text-muted); font-size: 0.875rem; }

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

/* --- Bento Grid Section --- */
.about-bento {
    padding: 6rem 0;
    background: var(--c-bg);
}

/* --- About Text Section --- */
.about-intro-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    margin-bottom: 2rem;
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-highlight);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-intro-layout p {
    font-size: 1.125rem;
    color: var(--c-text-muted);
    line-height: 1.8;
}

.about-services-text {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.services-list-clean {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.services-list-clean li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-text);
}

.services-list-clean li i {
    color: var(--c-wa);
    font-size: 1.2rem;
}

.section-heading { margin-bottom: 5rem; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(340px, auto));
    gap: 2rem;
}

.bento-card {
    background: var(--c-surface);
    border-radius: 32px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease;
}

@media (hover: hover) {
    .bento-card:hover {
        transform: scale(0.98);
    }
}

.card-large { grid-column: span 2; grid-row: span 2; }
.card-tall { grid-column: span 1; grid-row: span 2; justify-content: space-between; }
.card-square { grid-column: span 1; grid-row: span 1; background: var(--c-accent); color: #fff; }
.card-wide { grid-column: span 1; grid-row: span 1; }

.card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

@media (hover: hover) {
    .card-bg { transition: transform 0.8s ease; }
    .bento-card:hover .card-bg { transform: scale(1.05); }
}

.card-large::after {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
}



.icon-wrapper {
    width: 60px; height: 60px;
    background: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--c-accent);
    margin-bottom: 1.5rem;
}

.bento-card h3 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 700; color: var(--c-accent); }
.bento-card p { color: var(--c-text-muted); line-height: 1.6; }

.card-large .card-content {
    position: relative; z-index: 2; color: #fff;
}

.card-large h3 { font-size: 2.5rem !important; margin-bottom: 1rem; color: #fff !important; }
.card-large p { font-size: 1.125rem !important; opacity: 0.9; max-width: 80%; color: #fff !important; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

.card-square .card-content { 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    height: 100%; 
    text-align: center; 
}
.card-square h2 { 
    font-size: clamp(3.5rem, 8vw, 4.5rem); 
    font-weight: 900; 
    line-height: 1; 
    margin-bottom: 0.5rem; 
    letter-spacing: -2px; 
    white-space: nowrap;
}
.card-square span { 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    opacity: 0.8; 
    font-size: 0.85rem;
}

/* --- Commemorative Banner --- */
.commemorative-section {
    padding: 5rem 0;
    max-width: var(--container);
    margin: 0 auto;
}

.commemorative-banner {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.commemorative-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,21,36,0.6) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 10%;
}

.commemorative-overlay .massive-heading {
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
}

.commemorative-overlay .sub-heading {
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    max-width: 650px;
}

/* --- Partners Marquee --- */
.partners-section {
    padding: 5rem 0;
    background: var(--c-bg);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
}

/* Fades nas bordas para suavizar a entrada/saída */
.marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    top: 0; width: 15%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--c-bg) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--c-bg) 0%, transparent 100%);
}

.marquee-content {
    display: inline-flex;
    gap: 8rem;
    animation: scroll-marquee 30s linear infinite;
    padding-right: 8rem;
    will-change: transform;
}

/* Pause marquee when not visible to save CPU */
.marquee-content.paused {
    animation-play-state: paused;
}

/* Pausa ao passar o mouse */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    min-width: 250px;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.4s ease, transform 0.4s ease;
    cursor: default;
}

.partner-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transform: scale(1.8); /* Amplia a logo para remover a borda branca gerada pela IA */
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

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

/* --- Magnetic Showcase --- */
.machine-showcase-section {
    padding: 6rem 0;
    background: var(--c-surface);
}

.showcase-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.showcase-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
}

.item-info { flex: 1; max-width: 500px; }

.item-category {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--c-highlight);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block; margin-bottom: 1rem;
}

.item-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--c-accent);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.item-desc {
    font-size: 1.125rem;
    color: var(--c-text-muted);
    margin-bottom: 2rem;
}

.item-visual-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.item-visual-link {
    display: block;
    width: 100%;
    max-width: 600px;
}

.item-visual {
    width: 600px;
    height: 400px;
    background-color: #f7f9fa; /* Light grey/blue background */
    border-radius: 24px;
    background-size: contain !important; /* Force logo to be fully visible */
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.02);
}

@media (hover: hover) {
    .item-visual { transition: transform 0.5s ease; }
    .showcase-item:hover .item-visual {
        transform: scale(1.05) rotate(2deg);
    }
}

/* --- Contact Ultra --- */
.contact-ultra {
    padding: 8rem 0;
    background: var(--c-accent);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.15), transparent 40%);
}

.contact-container { position: relative; z-index: 1; }

.contact-ultra .massive-heading.white { color: #fff; }
.contact-subtitle { font-size: 1.5rem; color: rgba(255,255,255,0.7); max-width: 600px; margin-bottom: 5rem; }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    min-height: 450px;
    line-height: 0;
}

.contact-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
    .contact-card { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255,255,255,0.08); }
}

.contact-card:hover:not(.info-only) {
    background: var(--c-highlight);
    border-color: var(--c-highlight);
    transform: translateY(-10px);
}

.contact-card:hover:not(.info-only) .icon,
.contact-card:hover:not(.info-only) .label,
.contact-card:hover:not(.info-only) .value {
    color: var(--c-accent);
}

/* Enhancements */
.gradient-text {
    background: linear-gradient(135deg, #fff, var(--c-highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.action-card {
    transition: all 0.4s var(--ease-out-expo) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    background: rgba(255,255,255,0.02) !important;
}

.action-card:hover {
    transform: translateY(-5px) scale(1.02) !important;
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(37, 211, 102, 0.4) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(37, 211, 102, 0.1) !important;
}

.wa-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.loc-icon {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.action-card .card-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.action-card:hover .card-arrow {
    color: #25d366;
    transform: translateX(5px);
}

.address-card {
    background: transparent !important;
    border: 1px dashed rgba(255,255,255,0.2) !important;
}

.contact-card .icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px; /* Squircle style for premium look */
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-card:hover .icon {
    transform: scale(1.1) rotate(8deg);
}

.contact-card .label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.contact-card .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.4s ease;
}

/* --- Footer SEO --- */
.footer-seo {
    background: #001524;
    padding: 5rem 0 2rem;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h2 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    color: var(--c-highlight);
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--c-highlight);
}

.footer-col address {
    font-style: normal;
}

.footer-col address p {
    margin-bottom: 1rem;
}

.footer-col address strong {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.fade-up.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

.reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

@media (max-width: 768px) {
    .delay-1, .delay-2, .delay-3, .delay-4, .delay-5, .delay-6 { transition-delay: 0s !important; }
    .reveal { transition-duration: 0.2s !important; }
}

/* Accessibility & Performance: Reduce motion for users who prefer it */
@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;
    }
    .marquee-content { animation: none !important; }
}



/* --- Catalog Layout with Sidebar --- */
.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    padding: 3rem 0 5rem;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 120px;
    background: #fff;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-accent);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.filter-group { margin-bottom: 2rem; }

.filter-heading {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-highlight);
    margin-bottom: 1.5rem;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--c-text-muted);
    transition: color 0.3s ease;
}

.filter-label:hover { color: var(--c-accent); }

.filter-label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: border-color 0.3s ease;
}

.filter-label input[type="radio"]:checked {
    border-color: var(--c-highlight);
}

.filter-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 10px; height: 10px;
    background: var(--c-highlight);
    border-radius: 50%;
}

.filter-label input[type="radio"]:checked + span {
    font-weight: 600;
    color: var(--c-accent);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 0;
    font-size: 1.25rem;
    color: var(--c-text-muted);
}

@media (max-width: 1024px) {
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .catalog-sidebar {
        position: relative;
        top: 0;
    }
}

/* --- Floating WhatsApp --- */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s var(--ease-out-expo);
    text-decoration: none;
}
.float-wa:hover {
    transform: translateY(-5px) scale(1.1);
    background-color: #128C7E;
    color: #fff;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* --- Catalog Grid --- */
.grid-catalogo {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.catalog-hero {
    padding: 180px 0 80px;
    text-align: center;
    background: var(--c-surface);
}

.card-catalogo {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    contain: layout style paint;
}

.card-catalogo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--c-highlight);
}

.card-img {
    width: 100%;
    aspect-ratio: 4/3;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f7f9fa;
    padding: 1.5rem; /* Padding to keep logo away from edges */
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-highlight);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--c-accent);
    margin-bottom: 0.75rem;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* --- Pagination --- */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 4rem 0;
    flex-wrap: wrap;
    grid-column: 1 / -1;
}

.page-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    color: var(--c-accent);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.page-btn:hover {
    border-color: var(--c-highlight);
    color: var(--c-highlight);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.2);
}

.page-btn.active {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
    box-shadow: 0 8px 20px rgba(0,43,73,0.2);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .about-intro-layout { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 2rem auto 3rem; }
    .hero-buttons { justify-content: center; }
    .hero-visual { height: 500px; margin-top: 3rem; }
    .floating-tech-card { display: none; }
    
    .showcase-item { flex-direction: column; text-align: center; gap: 3rem; }
    .item-visual-wrapper { justify-content: center; width: 100%; }
    .item-visual { width: 100%; }
    
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .map-container { min-height: 350px; }
    
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .catalog-sidebar {
        position: relative;
        top: 0;
    }

    /* Header */
    .nav-links, .header-actions .btn-primary, .header-actions .btn-text-link { display: none !important; }
    .header-actions { display: flex !important; }
    .mobile-toggle { 
        display: flex !important; 
        align-items: center;
        justify-content: center;
        background: none; 
        border: none; 
        font-size: 1.8rem; 
        color: var(--c-accent); 
        cursor: pointer;
        z-index: 1001;
    }
}

@media (max-width: 768px) {
    /* Kill GPU-heavy effects on mobile */
    .glow-orb { display: none !important; }
    .floating-tech-card { display: none !important; }
    .card-catalogo:hover { transform: none; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
    .bento-card:hover { transform: none; }
    .contact-card:hover:not(.info-only) { transform: none; }
    .btn-massive:hover { transform: none; }
    
    /* Catalog Filters Redesign (Chips/Pills) */
    .catalog-layout { grid-template-columns: 1fr; gap: 1rem; padding: 1rem 0 3rem; }
    .catalog-main { width: 100%; overflow: hidden; }
    .catalog-sidebar { 
        padding: 0; 
        background: transparent; 
        border: none; 
        box-shadow: none;
        position: relative;
        top: 0;
        margin: 0 0 2rem 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .sidebar-title { display: none; }
    .filter-group { margin: 0; max-width: 100%; }
    .filter-heading { 
        font-size: 0.75rem; 
        text-transform: uppercase; 
        letter-spacing: 1px; 
        margin-bottom: 1rem;
        color: var(--c-text-muted);
        padding: 0;
    }
    .category-list {
        display: flex;
        overflow-x: auto;
        padding: 0 0 1.5rem;
        gap: 0.75rem;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
    }
    .category-list::-webkit-scrollbar { display: none; }
    
    .category-item {
        margin: 0;
        flex: 0 0 auto;
    }
    
    .category-item label {
        display: flex;
        padding: 0.7rem 1.5rem;
        background: #fff;
        border: 1px solid rgba(0,0,0,0.06);
        border-radius: 100px;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--c-text);
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    }
    
    .category-item input[type="radio"] { display: none; }
    
    .category-item input[type="radio"]:checked + label {
        background: var(--c-accent);
        color: #fff;
        border-color: var(--c-accent);
        box-shadow: 0 8px 20px rgba(0,21,36,0.15);
        transform: translateY(-2px);
    }
    
    /* Typography */
    .massive-heading { font-size: 2.5rem; }
    
    /* Layouts and Paddings */
    .hero { padding-top: 100px; }
    .hero-visual { height: 350px; }
    .hero-actions-flex { justify-content: center; width: 100%; gap: 1rem; }
    .btn-massive { width: 100%; text-align: center; padding: 1.2rem 1.5rem; font-size: 1.1rem; }
    .hero-stats { 
        flex-direction: column; 
        gap: 2rem; 
        align-items: center; 
        margin-top: 3rem; 
    }
    .stat-divider { width: 40px; height: 1px; background: rgba(0,0,0,0.1); }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.75rem; }
    
    .about-bento { padding: 4rem 0; }
    .bento-grid { grid-template-columns: 1fr; gap: 1rem; }
    .card-large, .card-wide, .card-tall, .card-square { grid-column: span 1; grid-row: auto; }
    .bento-card { padding: 1.5rem; min-height: 250px; }
    .card-square h2 { font-size: 3.5rem; letter-spacing: -1px; }
    .card-square span { font-size: 0.75rem; }
    
    .commemorative-banner { min-height: 400px; border-radius: 24px; }
    
    .machine-showcase-section { padding: 4rem 0; }
    .showcase-item { padding: 2rem 0; gap: 2rem; }
    .item-title { font-size: 2rem; }
    .item-visual { height: 250px; }
    .maq-spec-bullets { align-items: center; text-align: center; }
    
    /* Partners / Marquee Mobile */
    .marquee-content { gap: 3rem; padding-right: 3rem; }
    .partner-logo { height: 60px; min-width: 120px; }
    
    .contact-ultra { padding: 5rem 0; }
    .contact-layout { gap: 2rem; }
    .contact-card { padding: 1.5rem; flex-direction: column; text-align: center; gap: 1rem; }
    .contact-card .card-arrow { margin: 0 auto; transform: rotate(90deg); }
    .contact-card:hover .card-arrow { transform: translateY(5px) rotate(90deg); }
    
    /* Footer Mobile Compression */
    .footer-seo { padding: 2rem 0 1rem; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    .footer-col.brand-col, .footer-col.contact-col {
        grid-column: span 2;
    }
    
    .footer-col h2 { font-size: 1.2rem; margin-bottom: 0.5rem; }
    .footer-col h3 { font-size: 0.9rem; margin-bottom: 0.5rem; }
    .footer-col p, .footer-col ul a, .footer-col address p { font-size: 0.8rem; line-height: 1.4; }
    .footer-col ul { align-items: flex-start; gap: 0.5rem; }
    .footer-col address p { margin-bottom: 0.5rem; }
    .footer-bottom { padding-top: 1rem; }
    .copyright { font-size: 0.75rem; }
    
    /* Catalog */
    .catalog-hero { padding: 100px 0 40px; text-align: center; background: var(--c-surface); }
    .grid-catalogo { 
        grid-template-columns: 1fr !important; 
        gap: 1.5rem; 
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .catalog-layout {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    }
    
    .float-wa { width: 50px; height: 50px; font-size: 28px; bottom: 20px; right: 20px; }
}


/* === FIX: Sobreposição do header na página de produto === */
.product-hero {
    padding: 150px 0 80px;
    background: var(--c-surface);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-visual {
    position: sticky;
    top: 120px;
}

.product-img {
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.product-info {
    padding-right: 2rem;
}

.p-category {
    color: var(--c-highlight);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.p-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.p-desc {
    font-size: 1.25rem;
    color: var(--c-text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.specs-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.specs-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--c-accent);
    margin-bottom: 1.5rem;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.specs-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: var(--c-text-muted);
}

.specs-list i,
.specs-list svg {
    color: var(--c-highlight);
    margin-top: 5px;
}

.whatsapp-banner {
    background: var(--c-wa);
    padding: 2rem;
    border-radius: 16px;
    color: #fff;
    text-align: center;
    display: block;
    transition: transform 0.3s ease;
}

.whatsapp-banner:hover {
    transform: translateY(-5px);
}

.whatsapp-banner svg {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    width: 2rem;
    height: 2rem;
}

.whatsapp-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-visual {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 120px 0 40px;
    }
    
    .p-category {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .p-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .p-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .specs-box {
        padding: 1.5rem;
    }
    
    .product-info {
        padding-right: 0;
    }
}

/* === FIX ESPECÍFICO: Botão "Voltar ao Catálogo" na página de produto === */
.product-details .product-info .product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.product-details .product-info .product-actions a.btn-secondary.btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #fff;
    color: #002B49;
    border: 2px solid #002B49;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
}

.product-details .product-info .product-actions a.btn-secondary.btn-large:hover {
    background: #002B49;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 43, 73, 0.3);
}

.product-details .product-info .product-actions a.btn-secondary.btn-large svg {
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
}

.product-details .product-info .product-actions a.btn-secondary.btn-large:hover svg {
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    .product-details .product-info .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .product-details .product-info .product-actions a.btn-secondary.btn-large {
        width: 100%;
        flex: none;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* --- Engarrafe Style Layout --- */
.hero-engarrafe {
    padding-top: 130px;
    background: #fff;
    text-align: center;
}

.hero-engarrafe-title-wrapper {
    padding: 3rem 0;
}

.hero-engarrafe-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--c-accent);
    line-height: 1.2;
}

.hero-engarrafe-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero-engarrafe-banner {
        height: 250px;
    }
}

/* 3 Pilares com Ícones Circulares */
.services-circle-section {
    padding: 6rem 0 5rem;
    background: #002B49;
    color: #fff;
    position: relative;
}

/* Divisor de ângulo estilo tilt */
.services-circle-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.services-circle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-circle-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.service-circle-card:hover {
    transform: translateY(-8px);
}

.circle-icon-wrapper {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid var(--c-highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.service-circle-card:hover .circle-icon-wrapper {
    background: var(--c-highlight);
    border-color: #fff;
}

.circle-icon-wrapper svg {
    width: 50px;
    height: 50px;
    fill: #fff;
    color: #fff;
}

.service-circle-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.service-circle-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
    max-width: 250px;
}

@media (max-width: 768px) {
    .services-circle-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .circle-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    .circle-icon-wrapper svg {
        width: 40px;
        height: 40px;
    }
}

/* Banner de Chamada Intermediário */
.callout-banner-section {
    background: var(--c-surface);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.callout-banner-text {
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--c-accent);
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

/* Especificações em Destaque */
.maq-spec-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.maq-spec-bullet {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--c-text-muted);
}

.maq-spec-bullet svg {
    width: 16px;
    height: 16px;
    fill: var(--c-highlight);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Links Úteis */
.useful-links-section {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.useful-links-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-accent);
    margin-bottom: 3rem;
}

.links-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
}

.link-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.link-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.link-logo-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .links-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 480px) {
    .links-logos-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Inner Pages Hero Header & Styling --- */
.page-hero {
    background: linear-gradient(135deg, #002B49 0%, #001f35 100%);
    color: #fff;
    padding: 9rem 0 5rem; /* large top padding to account for fixed header */
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--c-highlight);
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
    color: #fff;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    opacity: 0.8;
    color: #fff;
}

.page-breadcrumbs a {
    color: var(--c-highlight);
    text-decoration: none;
    font-weight: 600;
}

.page-breadcrumbs a:hover {
    text-decoration: underline;
}

.page-content-wrapper {
    padding: 6rem 0;
    background: #fff;
}

/* Homepage Simple Footer (NAP) */
.home-footer-nap {
    padding: 5rem 0;
    background: #002B49;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-footer-nap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.home-footer-col h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--c-highlight);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.home-footer-col address {
    font-style: normal;
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.05rem;
}

.home-footer-col p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.05rem;
}

/* Separadores simples */
.simple-separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    max-width: var(--container);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 8rem 0 4rem;
    }
    .home-footer-nap-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Header style override when standing on dark blue page-hero backgrounds before scrolling */
.header.header-on-dark:not(.scrolled) .brand-title {
    color: #ffffff;
}

.header.header-on-dark:not(.scrolled) .nav-link {
    color: #ffffff;
    opacity: 0.8;
}

.header.header-on-dark:not(.scrolled) .nav-link:hover {
    color: var(--c-highlight);
    opacity: 1;
}

.header.header-on-dark:not(.scrolled) .mobile-toggle {
    color: #ffffff;
}

.header.header-on-dark:not(.scrolled) .btn-primary {
    background: var(--c-highlight);
    color: #ffffff;
}

.header.header-on-dark:not(.scrolled) .btn-primary::before {
    background: #ffffff;
}

.header.header-on-dark:not(.scrolled) .btn-primary:hover {
    color: var(--c-accent);
}

/* Modern Lucide Vector Icons Support */
svg.icon-lucide {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2px !important;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Discreet Developed by Footer styling */
.developed-by {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 0.8rem !important;
    display: inline-block;
    margin-top: 0.5rem;
}

.developed-by a {
    color: rgba(255, 255, 255, 0.3) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.developed-by a:hover {
    color: var(--c-highlight) !important;
}

/* --- Responsive Layout Utilities --- */
.assistencia-card {
    grid-column: span 2;
    background: var(--c-surface);
    justify-content: flex-start;
    padding: 3rem;
    min-height: 250px;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .assistencia-card {
        padding: 2.5rem;
    }
}

@media (max-width: 991px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .assistencia-card {
        grid-column: span 1 !important;
        padding: 1.5rem !important;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Form & Card Styles */
.contact-form-wrapper {
    background: var(--c-surface);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-page-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--c-surface);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.contact-page-card:hover {
    transform: translateY(-5px);
    border-color: var(--c-highlight);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-page-card .details {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.contact-page-card .details .label {
    display: block;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-page-card .details .value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-accent);
    word-break: break-all;
    overflow-wrap: break-word;
}

.site-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.site-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-contact-form label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--c-accent);
}

.site-contact-form input,
.site-contact-form select,
.site-contact-form textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    font-family: var(--f-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.site-contact-form input:focus,
.site-contact-form select:focus,
.site-contact-form textarea:focus {
    border-color: var(--c-highlight);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.site-contact-form button[type="submit"] {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .contact-page-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .about-services-text {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .site-contact-form button[type="submit"] {
        width: 100%;
        justify-content: center;
    }
}

/* --- Icon Sizing Overrides & Specific Styles --- */
.btn-primary .icon-svg,
.btn-icon .icon-svg {
    width: 16px;
    height: 16px;
}

.float-wa .icon-svg {
    width: 32px;
    height: 32px;
}

/* Contact page card icon container and icon colors */
.contact-page-card .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-page-card:hover .icon {
    transform: scale(1.1) rotate(8deg);
}

.contact-page-card .icon .icon-svg {
    width: 24px;
    height: 24px;
}

/* Fix light themed contact page icons */
.contact-page-card .loc-icon {
    background: rgba(0, 43, 73, 0.1);
    color: var(--c-accent);
}

