/* ==========================================================================
   Base & Reset
   ========================================================================== */
:root {
    --primary-color: #0b3b60; /* Azul escuro tecnológico, base para logo */
    --secondary-color: #007bff; /* Azul vibrante */
    --accent-color: #25d366; /* Verde WhatsApp */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #121212;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

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

.section-padding {
    padding: 80px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--white); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white h2, .text-white p { color: var(--white); }

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.bg-dark .section-title .subtitle {
    color: #aaaaaa;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    background-color: #1ebd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

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

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--bg-dark);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.w-100 { width: 100%; }

.glow-effect {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo img {
    height: 50px;
}

.navbar {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 40px;
    gap: 30px;
}

.nav-btn {
    margin-left: auto;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    background-image: url('../img/16.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 59, 96, 0.7); /* Azul tecnológico da logo com opacidade */
    z-index: -1;
}

.hero-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 35px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
}

/* ==========================================================================
   Sobre
   ========================================================================== */
.sobre-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sobre-image {
    flex: 1;
}

.sobre-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.sobre-content {
    flex: 1;
}

.sobre-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.stats-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 1;
    text-align: center;
}

.stat-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* ==========================================================================
   Equipamentos
   ========================================================================== */
.equipamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.eq-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.eq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.eq-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.eq-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.eq-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.eq-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.eq-card-featured {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
    background: linear-gradient(145deg, #ffffff, #f4f9ff);
}

.eq-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
}

.eq-card-featured .eq-icon {
    background: rgba(0, 123, 255, 0.15);
    transform: scale(1.1);
}

.eq-card-featured .eq-icon i {
    color: var(--secondary-color);
    font-size: 2.2rem;
}

.special-glow {
    border: 2px solid #ff4757;
    box-shadow: 0 0 25px rgba(255, 71, 87, 0.4);
    background: linear-gradient(145deg, #ffffff, #fff0f2);
    transform: translateY(-5px);
    z-index: 2;
}

.special-glow:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 71, 87, 0.6);
}

.special-glow .eq-icon {
    background: rgba(255, 71, 87, 0.15);
}

.special-glow .eq-icon i {
    color: #ff4757;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   Multimarcas
   ========================================================================== */
.multimarcas-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.brand-logo {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

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

.security-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2e7d32; /* verde escuro */
}

/* ==========================================================================
   Produtos
   ========================================================================== */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.produto-card {
    background: #1e1e1e;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.produto-img {
    height: 300px;
    overflow: hidden;
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Swiper Customize */
.mySwiper {
    width: 100%;
    height: 100%;
}

.mySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color) !important;
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition);
    background: rgba(30, 30, 30, 0.5);
    padding: 25px 20px;
    border-radius: 5px;
}

.produto-img:hover .swiper-button-next,
.produto-img:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
    opacity: 1 !important;
}

.produto-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.produto-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.prod-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.prod-desc {
    color: #cccccc;
    margin-bottom: 20px;
}

.tech-specs {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.tech-specs h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1rem;
}

.tech-specs ul {
    columns: 2;
}

.tech-specs li {
    font-size: 0.85rem;
    color: #aaaaaa;
    margin-bottom: 5px;
}

.prod-differentials {
    margin-bottom: 20px;
    flex: 1;
}

.prod-differentials li {
    color: #cccccc;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.prod-differentials i {
    color: var(--accent-color);
    margin-right: 10px;
}

.prod-price {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 20px;
}

.prod-price span {
    display: block;
    font-size: 0.9rem;
    color: #aaaaaa;
}

.prod-price strong {
    display: block;
    font-size: 1.5rem;
    color: var(--white);
}

/* ==========================================================================
   Diferenciais
   ========================================================================== */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.diff-item {
    text-align: center;
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.diff-item:hover .diff-icon {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.diff-item h4 {
    font-size: 1.1rem;
}

/* ==========================================================================
   Prova Social
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.client-info strong {
    display: block;
    color: var(--primary-color);
}

.client-info span {
    font-size: 0.85rem;
    color: #888;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-light);
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* ==========================================================================
   CTA Final & Form
   ========================================================================== */
.cta-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: var(--white);
}

.cta-final h2 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Makes logo white if it's dark */
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-col ul li i,
.footer-col p i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.footer-col p {
    color: #aaaaaa;
    margin-bottom: 10px;
}

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

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

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

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

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: var(--transition);
    animation: pulseGlow 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   Robust Animations & Effects
   ========================================================================== */

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.premium-glass {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

/* Background Blobs for depth */
.relative-overflow {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.blob-shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    border-radius: 50%;
    animation: floatBlob 10s ease-in-out infinite alternate;
}

.blob-1 { top: -10%; left: -10%; width: 400px; height: 400px; background: #007bff; }
.blob-2 { bottom: -20%; right: -10%; width: 500px; height: 500px; background: #0b3b60; opacity: 0.6; }
.blob-3 { top: 30%; right: -20%; width: 450px; height: 450px; background: #25d366; opacity: 0.15; }

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Text & Icon Gradients */
.text-gradient {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-glow {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
}

/* Hover Effects */
.robust-hover {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.robust-hover:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
}

.robust-shadow {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.shine-hover {
    position: relative;
    overflow: hidden;
}

.shine-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.shine-hover:hover::before {
    left: 200%;
}

.bounce-hover {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover .bounce-hover {
    transform: scale(1.3) translateY(-5px);
}

.icon-bounce:hover i {
    animation: bounce 0.5s ease;
}

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

.pulse-hover:hover {
    animation: simplePulse 1s infinite;
}

@keyframes simplePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-soft {
    animation: softPulse 3s infinite;
}

@keyframes softPulse {
    0% { box-shadow: 0 0 0 0 rgba(0,123,255,0.2); }
    50% { box-shadow: 0 0 0 10px rgba(0,123,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,123,255,0); }
}

/* Animations Elements */
.float-animation {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0,123,255,0.4) 0%, rgba(0,123,255,0) 70%);
    z-index: -1;
    filter: blur(20px);
}

.img-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(30,30,30,0.8) 0%, rgba(30,30,30,0) 50%);
    pointer-events: none;
}

.animated-gradient {
    background: linear-gradient(-45deg, #0b3b60, #0056b3, #002d5c, #007bff);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.text-highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.multimarcas-content:hover .text-highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.input-modern {
    background: #fdfdfd;
    border: 2px solid #e0e0e0 !important;
}

.input-modern:focus {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1) !important;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.2rem; }
    .sobre-container { flex-direction: column; }
    .produtos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header .container { 
        position: relative; 
        justify-content: center;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
        gap: 15px;
    }
    
    .nav-links.active { display: flex; }
    
    .nav-btn { display: none; }
    
    .menu-toggle { 
        display: block; 
        position: absolute;
        left: 20px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero h1 { font-size: 1.8rem; }
    
    .section-title h2 { font-size: 2rem; }
    
    .stats-grid { flex-direction: column; }
    
    .brand-badge { margin-bottom: 10px; }
    
    .cta-final h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .section-padding { padding: 50px 0; }
    .form-container { padding: 20px; }
}
