/* ============================================
   MRJ PACK - CSS Customizado
   Complemento ao Tailwind CSS
   ============================================ */

/* ============================================
   CSS Variables (Custom Properties)
   ============================================ */
:root {
    --color-primary: #bc2c33;
    --color-secondary: #e3585b;
    --color-dark: #812a2a;
    --color-gray: #646464;
    --color-accent: #831518;
    --color-white: #ffffff;
    --color-light-gray: #f5f5f5;
    --color-border: #e5e5e5;

    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ============================================
   Reset e Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-gray);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ============================================
   Componentes - Header Moderno
   ============================================ */
.header {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
}

/* Navigation Links */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Dropdown Menu - Estilo Moderno */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.nav-dropdown > a i {
    font-size: 0.625rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Submenu Container */
.nav-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.nav-dropdown:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Submenu Panel */
.nav-submenu-panel {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
    min-width: 220px;
    overflow: hidden;
}

/* Submenu Arrow */
.nav-submenu-panel::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Submenu Items */
.nav-submenu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    color: var(--color-gray);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.nav-submenu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--color-primary);
    transform: scaleY(0);
    transition: transform 0.2s ease;
    border-radius: 0 2px 2px 0;
}

.nav-submenu-item:hover {
    background: rgba(188, 44, 51, 0.05);
    color: var(--color-primary);
    padding-left: 1.25rem;
}

.nav-submenu-item:hover::before {
    transform: scaleY(1);
}

.nav-submenu-item i {
    width: 20px;
    font-size: 0.875rem;
    color: var(--color-primary);
    opacity: 0.7;
    transition: all 0.2s ease;
}

.nav-submenu-item:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* CTA Button no Header */
.header .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.header .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.header .btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Mobile Menu Button Animation */
#mobile-menu-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    border-radius: 8px;
    transition: background 0.2s ease;
}

@media (max-width: 1023px) {
    #mobile-menu-btn {
        display: flex;
    }
}

#mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

#mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

#mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

#mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Menu Mobile Moderno - Full Redesign
   ============================================ */

/* Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Menu Container */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--color-gray);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: #f0f0f0;
    color: var(--color-primary);
}

/* Menu Navigation */
.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

/* Menu Link */
.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link i {
    width: 20px;
    text-align: center;
    color: var(--color-gray);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(188, 44, 51, 0.05);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
}

.mobile-menu-link:hover i,
.mobile-menu-link.active i {
    color: var(--color-primary);
}

/* Menu Item com Submenu */
.mobile-menu-item {
    border-bottom: 1px solid #f5f5f5;
}

/* Submenu Toggle Button */
.mobile-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-link-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.9375rem;
}

.mobile-menu-link-content i {
    width: 20px;
    text-align: center;
    color: var(--color-gray);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.mobile-submenu-arrow {
    font-size: 0.75rem;
    color: var(--color-gray);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-submenu-toggle:hover,
.mobile-submenu-toggle.active {
    background: rgba(188, 44, 51, 0.05);
    border-left-color: var(--color-primary);
}

.mobile-submenu-toggle:hover .mobile-menu-link-content,
.mobile-submenu-toggle.active .mobile-menu-link-content {
    color: var(--color-primary);
}

.mobile-submenu-toggle:hover .mobile-menu-link-content i,
.mobile-submenu-toggle.active .mobile-menu-link-content i {
    color: var(--color-primary);
}

.mobile-submenu-toggle.active .mobile-submenu-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

/* Submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-submenu.open {
    max-height: 400px;
}

.mobile-submenu a {
    display: block;
    padding: 0.875rem 1.5rem 0.875rem 3.5rem;
    color: var(--color-gray);
    font-size: 0.875rem;
    font-weight: 400;
    position: relative;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.25s ease;
}

.mobile-submenu.open a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-submenu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-submenu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-submenu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-submenu.open a:nth-child(4) { transition-delay: 0.2s; }

.mobile-submenu a::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.2s ease;
}

.mobile-submenu a:hover {
    color: var(--color-primary);
    background: rgba(188, 44, 51, 0.05);
}

.mobile-submenu a:hover::before {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.2);
}

/* Menu Footer */
.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-menu-cta:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.mobile-menu-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: var(--color-gray);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.mobile-menu-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* Hide on Desktop */
@media (min-width: 1024px) {
    .mobile-menu,
    .mobile-overlay {
        display: none !important;
    }
}

/* ============================================
   Componentes - Hero Banner (Swiper) - ESTILO PREMIUM
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        max-height: 700px;
    }
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

/* Background Image com Zoom Animation */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1.1);
}

/* Overlay com Gradiente Moderno */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(188, 44, 51, 0.3) 100%
    );
}

/* Linhas Decorativas Animadas */
.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-lines::before,
.hero-lines::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(188, 44, 51, 0.5), transparent);
    height: 1px;
    width: 100%;
    animation: heroLineScan 4s ease-in-out infinite;
}

.hero-lines::before {
    top: 30%;
    animation-delay: 0s;
}

.hero-lines::after {
    top: 70%;
    animation-delay: 2s;
}

@keyframes heroLineScan {
    0%, 100% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; }
    100% { transform: translateX(100%); }
}

/* Partículas Decorativas */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite linear;
}

.hero-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.hero-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.hero-particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 14s; }
.hero-particle:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 16s; }
.hero-particle:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 13s; }
.hero-particle:nth-child(6) { left: 80%; animation-delay: 5s; animation-duration: 17s; }
.hero-particle:nth-child(7) { left: 90%; animation-delay: 2.5s; animation-duration: 15s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Conteúdo do Hero */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
    margin-left: 5%;
}

@media (min-width: 1024px) {
    .hero-content {
        margin-left: 10%;
        padding: 3rem;
    }
}

/* Tag/Badge Superior */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(188, 44, 51, 0.2);
    border: 1px solid var(--color-primary);
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-tag i {
    font-size: 0.625rem;
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Título Principal */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-title span {
    color: var(--color-primary);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 1s ease forwards;
    animation-delay: 1.2s;
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

/* Subtítulo */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* Botões */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    background: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(188, 44, 51, 0.4);
}

.hero-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.hero-btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(188, 44, 51, 0.1);
    transform: translateY(-3px);
}

/* Animação de entrada */
@keyframes heroFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Laterais */
.hero-stats {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 2rem;
    z-index: 10;
}

@media (min-width: 1280px) {
    .hero-stats {
        display: flex;
    }
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    transform: translateX(30px);
    animation: heroStatIn 0.6s ease forwards;
}

.hero-stat:nth-child(1) { animation-delay: 1s; }
.hero-stat:nth-child(2) { animation-delay: 1.2s; }
.hero-stat:nth-child(3) { animation-delay: 1.4s; }

@keyframes heroStatIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollDot {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

/* Swiper Navigation e Pagination - Estilo Premium */
.hero-swiper .swiper-pagination {
    bottom: 2rem !important;
    left: 5% !important;
    width: auto !important;
    text-align: left;
}

@media (min-width: 1024px) {
    .hero-swiper .swiper-pagination {
        left: 10% !important;
    }
}

.hero-swiper .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    width: 60px;
    background: var(--color-primary);
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    display: none;
}

@media (min-width: 1024px) {
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        display: flex;
        color: var(--color-white);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        width: 60px;
        height: 60px;
        border-radius: 0;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .hero-swiper .swiper-button-prev:hover,
    .hero-swiper .swiper-button-next:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
    }

    .hero-swiper .swiper-button-prev::after,
    .hero-swiper .swiper-button-next::after {
        font-size: 1rem;
        font-weight: bold;
    }
}

/* Progress Bar do Slide */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.hero-progress-bar {
    height: 100%;
    background: var(--color-primary);
    width: 0;
    transition: width 0.1s linear;
}

/* Paginação Premium (barras) */
.hero-pagination {
    position: absolute;
    bottom: 2rem;
    left: 5%;
    z-index: 20;
    display: flex;
    gap: 8px;
}

@media (min-width: 1024px) {
    .hero-pagination {
        left: 10%;
    }
}

.hero-pagination-bar {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-pagination-bar.swiper-pagination-bullet-active {
    width: 60px;
    background: var(--color-primary);
}

/* Partículas como spans */
.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite linear;
}

.hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.hero-particles span:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.hero-particles span:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 14s; }
.hero-particles span:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 16s; }
.hero-particles span:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 13s; }
.hero-particles span:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 17s; }

/* Hero Slide Content */
.hero-slide-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
    padding-top: 120px;
    margin-left: 5%;
}

@media (min-width: 1024px) {
    .hero-slide-content {
        margin-left: 10%;
        padding: 3rem;
        padding-top: 100px;
    }
}

/* Animações via JavaScript (.animate class) */
.hero-tag,
.hero-title,
.hero-subtitle,
.hero-buttons,
.hero-stat {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stat {
    transform: translateX(30px);
}

.hero-tag.animate,
.hero-title.animate,
.hero-subtitle.animate,
.hero-buttons.animate,
.hero-stat.animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Hero Scroll Button Cursor */
.hero-scroll {
    cursor: pointer;
}

.hero-scroll:hover {
    color: var(--color-primary);
}

.hero-scroll-text {
    display: block;
}

/* Hero secondary button style */
.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    border-color: var(--color-primary);
    background: rgba(188, 44, 51, 0.2);
    transform: translateY(-3px);
}

/* ============================================
   Componentes - Botões
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

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

.btn-primary:hover {
    background-color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* ============================================
   Componentes - Cards
   ============================================ */
.card {
    background: var(--color-white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.card-text {
    color: var(--color-gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ============================================
   Componentes - Seções
   ============================================ */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    color: var(--color-gray);
    font-size: 1.125rem;
}

.section-title-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-title-line::before,
.section-title-line::after {
    content: '';
    height: 3px;
    background: var(--color-primary);
    flex: 1;
    max-width: 50px;
}

/* ============================================
   Componentes - Swiper de Produtos
   ============================================ */
.produtos-swiper {
    padding: 1rem 0 3rem;
}

.produtos-swiper .swiper-pagination-bullet {
    background: var(--color-gray);
}

.produtos-swiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

/* ============================================
   Componentes - Serviços
   ============================================ */
.servico-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    height: 350px;
}

.servico-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.servico-card:hover .servico-card-bg {
    transform: scale(1.1);
}

.servico-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    transition: background var(--transition-normal);
}

.servico-card:hover .servico-card-overlay {
    background: linear-gradient(
        to top,
        rgba(188, 44, 51, 0.9) 0%,
        rgba(188, 44, 51, 0.6) 50%,
        rgba(188, 44, 51, 0.3) 100%
    );
}

.servico-card-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--color-white);
}

.servico-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

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

.servico-card-text {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* ============================================
   Componentes - Mapa de Estados
   ============================================ */
.estado-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-light-gray);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.estado-item:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.estado-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 0.25rem;
    font-weight: 700;
    font-size: 0.75rem;
}

.estado-item:hover .estado-badge {
    background: var(--color-white);
    color: var(--color-primary);
}

/* ============================================
   Componentes - CTA
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* ============================================
   Componentes - Footer
   ============================================ */
.footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
}

.footer-link {
    display: block;
    padding: 0.375rem 0;
    transition: color var(--transition-fast);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   Componentes - Formulários
   ============================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--color-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(188, 44, 51, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #dc2626;
}

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ============================================
   Componentes - Tabs/Filtros
   ============================================ */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    background: var(--color-light-gray);
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-tab:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.filter-tab.active {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   Componentes - Breadcrumb
   ============================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    color: var(--color-gray);
}

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

.breadcrumb-separator {
    color: var(--color-gray);
    opacity: 0.5;
}

/* ============================================
   Componentes - Galeria de Produto
   ============================================ */
.product-gallery {
    display: grid;
    gap: 1rem;
}

.product-gallery-main {
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.product-gallery-thumb {
    flex: 0 0 80px;
    height: 60px;
    border-radius: 0.25rem;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
    border: 2px solid transparent;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    opacity: 1;
    border-color: var(--color-primary);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Componentes - Especificações Técnicas
   ============================================ */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--color-border);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 1rem;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--color-dark);
    width: 40%;
}

/* ============================================
   Animações
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.5s ease forwards;
}

/* ============================================
   Utilitários
   ============================================ */
.text-primary {
    color: var(--color-primary) !important;
}

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

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

.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-dark {
    background-color: var(--color-dark) !important;
}

.bg-light {
    background-color: var(--color-light-gray) !important;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 7rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--color-dark);
    transform: translateY(-3px);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-fast);
    z-index: 1000;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* ============================================
   Responsivo - Ajustes Finais
   ============================================ */
@media (max-width: 640px) {
    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
    }

    .hero-content {
        text-align: center;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .footer,
    .scroll-to-top,
    .whatsapp-float {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* Logo branco para footer */
.logo-white { filter: brightness(0) invert(1); }
