/* CSS para o novo layout refatorado */
body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
}

a {
    color: #2E86C1;
}

a:hover {
    color: #1B4F72;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2E86C1 0%, #1B4F72 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(46, 134, 193, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3498DB 0%, #2E86C1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 134, 193, 0.6);
    color: #fff;
    text-decoration: none;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: linear-gradient(135deg, #1B4F72 0%, #34495E 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(27, 79, 114, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary::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;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #34495E 0%, #5D6D7E 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 79, 114, 0.6);
    color: #fff;
    text-decoration: none;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-light {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 2px solid #2E86C1;
    color: #2E86C1;
    font-weight: 600;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 134, 193, 0.1), transparent);
    transition: left 0.5s;
}

.btn-light:hover {
    background: linear-gradient(135deg, #2E86C1 0%, #1B4F72 100%);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 134, 193, 0.4);
    text-decoration: none;
}

.btn-light:hover::before {
    left: 100%;
}

/* Botões grandes com destaque especial */
.btn-lg {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 0.8px;
}

.btn-lg.btn-primary {
    box-shadow: 0 6px 20px rgba(46, 134, 193, 0.5);
    animation: pulse-primary 4s ease-in-out infinite;
}

.btn-lg.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(46, 134, 193, 0.7);
    animation: none;
}

.btn-lg.btn-secondary {
    box-shadow: 0 6px 20px rgba(27, 79, 114, 0.5);
    animation: pulse-secondary 4s ease-in-out infinite;
}

.btn-lg.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(27, 79, 114, 0.7);
    animation: none;
}

.btn-lg.btn-light {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-lg.btn-light:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(46, 134, 193, 0.6);
}

/*--------------------
      Navbar
--------------------*/
.navbar {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(46, 134, 193, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #2E86C1 0%, 
        #1B4F72 25%, 
        #3498DB 50%, 
        #1B4F72 75%, 
        #2E86C1 100%);
    background-size: 200% 100%;
    animation: gradientShift 4s ease-in-out infinite;
}

.navbar::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(46, 134, 193, 0.02) 0%, 
        rgba(255, 255, 255, 0) 100%);
}

.navbar-scrolled {
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(46, 134, 193, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    font-weight: 700;
    color: #1B4F72;
    font-size: 1.5rem;
    position: relative;
    padding: 0.2rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
    height: 60px;
    width: auto;
    max-width: 350px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-logo:hover {
    transform: scale(1.05) translateY(-1px);
    filter: drop-shadow(0 4px 8px rgba(46, 134, 193, 0.3));
}

.nav-link {
    color: #2C3E50;
    font-weight: 600;
    padding: 0.8rem 1.4rem;
    margin: 0 0.3rem;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(46, 134, 193, 0.1) 0%, 
        rgba(27, 79, 114, 0.15) 50%, 
        rgba(46, 134, 193, 0.1) 100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 25px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2E86C1, #1B4F72);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
    color: #1B4F72;
    background: linear-gradient(135deg, 
        rgba(46, 134, 193, 0.08) 0%, 
        rgba(27, 79, 114, 0.12) 50%, 
        rgba(46, 134, 193, 0.08) 100%);
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(46, 134, 193, 0.15);
}

.nav-link:hover::before, .nav-link.active::before {
    left: 0;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}

/* Botão toggle melhorado */
.navbar-toggler {
    border: 2px solid rgba(46, 134, 193, 0.3);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(46, 134, 193, 0.05);
}

.navbar-toggler:hover {
    background: linear-gradient(135deg, 
        rgba(46, 134, 193, 0.1) 0%, 
        rgba(27, 79, 114, 0.15) 100%);
    border-color: rgba(46, 134, 193, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(46, 134, 193, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2846, 134, 193, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
    transform: scale(1.05);
}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/*--------------------
      Header/Hero
--------------------*/
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1B4F72 0%, #2E86C1 50%, #3498DB 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    min-height: 75vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Circuitos eletrônicos */
        linear-gradient(90deg, transparent 98%, rgba(255,255,255,0.1) 100%),
        linear-gradient(0deg, transparent 98%, rgba(255,255,255,0.1) 100%),
        /* Pontos de conexão */
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 
        50px 50px,
        50px 50px,
        200px 200px,
        200px 200px,
        200px 200px,
        200px 200px,
        100px 100px;
    animation: float 30s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Hexágonos tecnológicos */
        conic-gradient(from 0deg at 25% 25%, transparent 60deg, rgba(255,255,255,0.05) 120deg, transparent 180deg),
        conic-gradient(from 0deg at 75% 75%, transparent 60deg, rgba(255,255,255,0.05) 120deg, transparent 180deg);
    background-size: 300px 300px;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.7), 0 0 30px rgba(255, 215, 0, 0.3);
    }
}

@keyframes pulse-primary {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(46, 134, 193, 0.4);
    }
    50% { 
        box-shadow: 0 4px 15px rgba(46, 134, 193, 0.6), 0 0 20px rgba(46, 134, 193, 0.2);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse-secondary {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(27, 79, 114, 0.4);
    }
    50% { 
        box-shadow: 0 4px 15px rgba(27, 79, 114, 0.6), 0 0 20px rgba(27, 79, 114, 0.2);
    }
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(27, 79, 114, 0.1);
    backdrop-filter: blur(1px);
}

.hero-section .container {
    position: relative;
    z-index: 20;
}

.hero-logo-container {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 25;
}

.hero-logo {
    max-width: 600px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
    transition: all 0.3s ease;
    display: block;
}

.hero-logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}

.hero-tagline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-tagline .lead {
    font-size: 1.75rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Botão CTA especial da Hero Section */
.btn-hero-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD700 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s ease-in-out infinite;
}

.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-hero-cta:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6347 50%, #FFD700 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
    color: #fff;
    text-decoration: none;
}

.btn-hero-cta:hover::before {
    left: 100%;
}

.btn-hero-cta:active {
    transform: translateY(-1px) scale(1.02);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p.lead {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-hero-secondary {
    background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-secondary::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;
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    text-decoration: none;
}

.btn-hero-secondary:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero-secondary, .hero-buttons .btn-primary {
        width: 100%;
        max-width: 280px;
    }
}

/*--------------------
    Tech Showcase
--------------------*/
.tech-showcase {
    margin-top: 3rem;
    opacity: 0.95;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 120px;
}

.tech-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tech-badge i {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.4rem;
    display: block;
}

.tech-badge span {
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

/* Responsividade melhorada para acomodar 14 badges */
@media (max-width: 991px) {
    .tech-showcase .col-lg-2 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 767px) {
    .hero-logo {
        max-width: 500px;
    }
    
    .hero-logo-container {
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        margin-bottom: 1.5rem;
    }
    
    .hero-tagline .lead {
        font-size: 1.4rem;
    }
    
    .btn-hero-cta {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.9rem 1.8rem;
    }
    
    .btn-primary, .btn-secondary, .btn-light {
        font-size: 0.9rem;
        padding: 0.7rem 1.3rem;
    }
    
    .navbar-logo {
        height: 50px;
        max-width: 280px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        margin: 0.1rem 0;
    }
    
    .navbar {
        padding: 0.8rem 1.2rem;
    }
    
    .navbar-scrolled {
        padding: 0.4rem 1.2rem;
    }
    
    .tech-showcase .col-lg-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .tech-badge {
        height: 80px;
        max-width: 100px;
    }
    .tech-badge i {
        font-size: 1.5rem;
    }
    .tech-badge span {
        font-size: 0.65rem;
    }
}

@media (max-width: 575px) {
    .hero-logo {
        max-width: 350px;
    }
    
    .hero-logo-container {
        margin-bottom: 0.8rem;
    }
    
    .hero-tagline {
        margin-bottom: 1.2rem;
    }
    
    .hero-tagline .lead {
        font-size: 1.2rem;
    }
    
    .btn-hero-cta {
        font-size: 1rem;
        padding: 0.8rem 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .btn-lg {
        font-size: 0.95rem;
        padding: 0.8rem 1.6rem;
    }
    
    .btn-primary, .btn-secondary, .btn-light {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .navbar-logo {
        height: 40px;
        max-width: 220px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
        margin: 0.1rem 0;
        text-align: center;
    }
    
    .navbar {
        padding: 0.6rem 1rem;
    }
    
    .navbar-scrolled {
        padding: 0.3rem 1rem;
    }
    
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,.1);
    }
    
    .tech-badge span {
        font-size: 0.6rem;
    }
}


/*--------------------
    Seções Genéricas
--------------------*/
.section {
    padding: 6rem 0;
}

.section-heading {
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B4F72;
    margin-bottom: 1rem;
}

.section-heading .lead {
    font-size: 1.15rem;
    color: #6c757d;
    font-weight: 400;
}

/*--------------------
    Seção de Serviços
--------------------*/
#services .service-item {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

#services .service-item:hover {
    transform: translateY(-5px);
}

#services .service-icon {
    font-size: 3rem;
    color: #2E86C1;
    margin-bottom: 1.5rem;
    display: inline-block;
}

#services .service-item h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1B4F72;
}

#services .service-item p {
    color: #6c757d;
    line-height: 1.6;
}

/*--------------------
    Seção de Produtos Modernizada
--------------------*/
.product-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(46, 134, 193, 0.1), rgba(27, 79, 114, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.product-hero-content {
    position: relative;
    z-index: 2;
}

.badge-featured {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.product-hero h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B4F72;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.feature-list i {
    color: #28a745;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.product-actions {
    margin-top: 2rem;
}

.product-actions .btn {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.btn-outline-primary {
    border: 2px solid #2E86C1;
    color: #2E86C1;
    background: transparent;
    font-weight: 600;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #2E86C1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 134, 193, 0.4);
}

.product-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.dashboard-mockup {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2E86C1 0%, #1B4F72 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(46, 134, 193, 0.3);
    animation: float-dashboard 6s ease-in-out infinite;
}

.dashboard-mockup i {
    font-size: 4rem;
    color: white;
}

@keyframes float-dashboard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Cards de Produtos */
.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2E86C1 0%, #1B4F72 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.1) 0%, rgba(27, 79, 114, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, #2E86C1 0%, #1B4F72 100%);
    transform: scale(1.1);
}

.product-icon i {
    font-size: 2rem;
    color: #2E86C1;
    transition: color 0.3s ease;
}

.product-card:hover .product-icon i {
    color: white;
}

.product-content h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1B4F72;
    margin-bottom: 1rem;
    text-align: center;
}

.product-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-features span {
    font-size: 0.9rem;
    color: #495057;
    padding: 0.3rem 0;
}

.btn-product {
    background: linear-gradient(135deg, #2E86C1 0%, #1B4F72 100%);
    border: none;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-product:hover {
    background: linear-gradient(135deg, #1B4F72 0%, #2E86C1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 134, 193, 0.4);
    color: white;
    text-decoration: none;
}

/* CTA Final da Seção */
.products-cta {
    background: linear-gradient(135deg, #1B4F72 0%, #2E86C1 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.products-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.products-cta .lead {
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .product-hero {
        padding: 2rem 1rem;
    }
    
    .product-hero h3 {
        font-size: 2rem;
    }
    
    .dashboard-mockup {
        width: 200px;
        height: 200px;
    }
    
    .dashboard-mockup i {
        font-size: 3rem;
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
    
    .products-cta {
        padding: 2rem 1rem;
    }
    
    .products-cta h3 {
        font-size: 1.5rem;
    }
}

/*--------------------
    Seção de Contato
--------------------*/
#contact {
    background-color: #f8f9fa;
}

.contact-item {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-item .icon {
    font-size: 2.5rem;
    color: #2E86C1;
    margin-bottom: 1rem;
}

.contact-item h4 {
    font-weight: 600;
}

.contact-item p {
    margin-bottom: 1.5rem;
}

/*--------------------
    Seção QR Code
--------------------*/
.qr-code-section {
    padding: 4rem 0;
    background-color: #1B4F72;
    color: white;
}

/*--------------------
      Footer
--------------------*/
.footer {
    padding: 2rem 0;
    background-color: #343a40;
    color: white;
}

.footer .social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 0.5rem;
}

.footer .social-link:hover {
    background-color: #2E86C1;
    color: white;
}

/*--------------------
    Scroll to Top Button
--------------------*/
.scroll-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: none;
    width: 50px;
    height: 50px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #2E86C1, #1B4F72);
    border-radius: 50%;
    line-height: 50px;
    font-size: 18px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 134, 193, 0.4);
}

.scroll-to-top:hover {
    color: white;
    background: linear-gradient(135deg, #1B4F72, #2E86C1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 134, 193, 0.6);
    text-decoration: none;
}

.scroll-to-top.show {
    display: block;
}

/* Product Filters */
.product-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-btn {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 2px solid rgba(102, 126, 234, 0.2);
  color: #667eea;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.product-card.hidden {
  display: none;
}

/* Enhanced responsive for filters */
@media (max-width: 768px) {
  .product-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 200px;
  }
}

/* Impact Section */
.impact-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.impact-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.impact-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.impact-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  height: 100%;
}

.impact-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.impact-number {
  font-size: 4rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.impact-number::after {
  content: '+';
  font-size: 2rem;
  margin-left: 5px;
}

.impact-item:last-child .impact-number::after {
  content: '%';
}

.impact-label {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.impact-description {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.4;
}

/* Final CTA */
.final-cta {
  background: rgba(255, 255, 255, 0.1);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.final-cta h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.btn-cta-primary {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
  color: white;
  text-decoration: none;
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: white;
  text-decoration: none;
}

/* Counter Animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.impact-number {
  animation: countUp 1s ease-out;
}

/* Responsive Impact Section */
@media (max-width: 768px) {
  .impact-title {
    font-size: 2.2rem;
  }
  
  .impact-number {
    font-size: 3rem;
  }
  
  .final-cta h3 {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 250px;
  }
}


/*--------------------
    Lyon Tracker Page Styles
--------------------*/

/* Hero Badge */
.product-hero-badge {
    animation: pulse 2s infinite;
}

.badge-featured {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    color: #1B4F72;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Hero Description */
.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Video Container Styles */
.video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    height: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(46, 134, 193, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(46, 134, 193, 0.08);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #2E86C1, #3498DB, #2E86C1);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(46, 134, 193, 0.18);
}

.video-wrapper:hover::before {
    opacity: 1;
}

.video-wrapper iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    /* Ajuste para YouTube Shorts (formato vertical) */
    aspect-ratio: 9/16;
    max-height: 500px;
    background: #000;
}

.video-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
    border-radius: 15px;
    border: 2px dashed rgba(46, 134, 193, 0.2);
}

.video-placeholder-text {
    margin-top: 1rem;
}

/* Responsive Video */
@media (max-width: 768px) {
    .video-container {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .video-wrapper {
        padding: 1rem;
        max-width: 300px;
    }
    
    .video-wrapper iframe {
        height: 350px;
        max-height: 400px;
    }
    
    .video-placeholder {
        height: 350px;
    }
}

/* Benefit Items */
.benefit-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* Feature List */
.feature-list .feature-item {
    display: flex;
    align-items: flex-start;
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.03) 0%, rgba(52, 152, 219, 0.06) 100%);
    border-left: 4px solid #2E86C1;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(46, 134, 193, 0.05);
}

.feature-list .feature-item:hover {
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.08) 0%, rgba(52, 152, 219, 0.12) 100%);
    transform: translateX(15px);
    box-shadow: 0 8px 25px rgba(46, 134, 193, 0.12);
    border-left-width: 6px;
}

.feature-list .feature-item i {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.feature-list .feature-item h5 {
    color: #1B4F72;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.feature-list .feature-item p {
    color: #2C3E50;
    line-height: 1.6;
    font-size: 1rem;
}

/* System Diagram */
.system-diagram {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.truck-illustration {
    position: relative;
    display: inline-block;
}

.component-labels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.component-labels .badge {
    position: absolute;
    font-size: 0.8rem;
    white-space: nowrap;
}

.label-1 { top: 20%; left: 10%; }
.label-2 { top: 40%; right: 10%; }
.label-3 { bottom: 20%; left: 50%; transform: translateX(-50%); }

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 134, 193, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 134, 193, 0.15);
}

.feature-card .feature-icon {
    background: linear-gradient(135deg, #2E86C1 0%, #3498DB 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

/* Specification Cards */
.spec-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.spec-header {
    background: linear-gradient(135deg, #2E86C1 0%, #3498DB 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.spec-header h4 {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.spec-content {
    padding: 2rem;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(46, 134, 193, 0.1);
    font-size: 0.95rem;
}

.spec-list li:last-child {
    border-bottom: none;
}

/* Benefit Cards */
.benefit-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
    height: 100%;
}

.benefit-card:hover {
    transform: translateX(10px);
    border-left-color: #2E86C1;
    box-shadow: 0 10px 30px rgba(46, 134, 193, 0.15);
}

.benefit-icon {
    margin-right: 1.5rem;
    font-size: 3rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #1B4F72;
    margin-bottom: 0.5rem;
}

/* Application Cards */
.application-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.application-card:hover {
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    transform: translateY(-5px);
}

.application-card i {
    font-size: 3rem;
    color: #2E86C1;
    margin-bottom: 1rem;
}

.application-card h5 {
    color: #1B4F72;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* App Android Section */
.bg-gradient-primary {
    background: linear-gradient(135deg, #1B4F72 0%, #2E86C1 50%, #3498DB 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.app-content {
    position: relative;
    z-index: 2;
}

.app-badge .badge-light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.app-features-list {
    margin: 2rem 0;
}

.app-feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.app-feature-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.app-download-buttons .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Phone Mockup */
.app-mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    border-radius: 35px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #7F8C8D;
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ECF0F1 0%, #BDC3C7 100%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(46, 134, 193, 0.2);
}

.app-header h6 {
    color: #1B4F72;
    font-weight: bold;
    margin: 0;
    font-size: 1.2rem;
}

.status-online {
    color: #27AE60;
    font-weight: bold;
    font-size: 0.9rem;
}

.app-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item i {
    display: block;
    font-size: 1.5rem;
    color: #2E86C1;
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 0.8rem;
    color: #2C3E50;
    font-weight: 600;
}

.app-map {
    flex: 1;
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    border: 2px dashed rgba(46, 134, 193, 0.3);
}

.app-map i {
    font-size: 3rem;
    color: #2E86C1;
    margin-bottom: 0.5rem;
}

.app-map span {
    color: #2C3E50;
    font-weight: 600;
}

.app-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-app {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-app.primary {
    background: linear-gradient(135deg, #2E86C1 0%, #3498DB 100%);
    color: white;
}

.btn-app.secondary {
    background: rgba(46, 134, 193, 0.1);
    color: #2E86C1;
    border: 1px solid rgba(46, 134, 193, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-description {
        font-size: 1.1rem;
    }
    
    .truck-illustration i {
        font-size: 6rem !important;
    }
    
    .feature-list .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-list .feature-item i {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* Video responsivo mobile */
    .video-container {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .video-wrapper {
        padding: 1.5rem;
        max-width: 320px;
    }
    
    .video-wrapper iframe {
        height: 380px;
        max-height: 420px;
    }
    
    /* App Android responsivo */
    .app-mockup-container {
        margin-top: 3rem;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
        padding: 15px;
    }
    
    .app-interface {
        padding: 1rem;
    }
    
    .app-header h6 {
        font-size: 1rem;
    }
    
    .stat-item i {
        font-size: 1.2rem;
    }
    
    .stat-item span {
        font-size: 0.7rem;
    }
    
    .app-download-buttons {
        text-align: center;
    }
    
    .app-download-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* ===========================
   VIDEO ENHANCEMENTS
   =========================== */

/* Video Overlay para controle manual e ocultar branding */
.video-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.9), rgba(0, 86, 179, 0.8));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-overlay:hover {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.95), rgba(0, 86, 179, 0.9));
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.play-button i {
    margin-left: 5px; /* Alinha o ícone play */
}

.video-caption {
    margin-top: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 123, 255, 0.1);
    text-align: center;
}

.video-caption h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-caption p {
    margin: 0;
}

/* Ajustes para iframe do YouTube */
.video-wrapper iframe {
    position: relative;
    z-index: 2;
}

/* Mobile adjustments for video overlay */
@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .video-overlay {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* ===========================
   ENHANCED TEXT STYLES
   =========================== */

.text-gradient {
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-cta-bottom {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.cta-section {
    border: 2px solid #007bff;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 86, 179, 0.02));
}

.feature-item h5 {
    color: #2c3e50;
    font-weight: 600;
}

.feature-item p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* ===========================
   PRODUCT IMAGE STYLES
   =========================== */

.product-image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.product-showcase {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 123, 255, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
}

.product-showcase:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 123, 255, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.product-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.product-main-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 86, 179, 0.6));
    border-radius: 15px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
}

.product-badge .badge {
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-features-visual {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.feature-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-icon-circle:hover {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 86, 179, 0.05));
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.pulse-animation {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: translateY(-3px) scale(1); }
    50% { transform: translateY(-3px) scale(1.1); }
    100% { transform: translateY(-3px) scale(1); }
}

.product-caption {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.product-caption h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-caption p {
    margin: 0;
}

/* Responsividade da imagem do produto */
@media (max-width: 768px) {
    .product-showcase {
        transform: none;
        padding: 15px;
    }
    
    .product-showcase:hover {
        transform: scale(1.01);
    }
    
    .product-main-image img {
        height: 280px;
    }
    
    .feature-icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===========================
   ENHANCED SERVICES STYLES
   =========================== */

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Services Section - Simplified */
#services .service-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: 1px solid #e9ecef;
}

#services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #007bff;
}

#services .service-icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 1rem;
  display: block;
  transition: all 0.3s ease;
}

#services .service-item:hover .service-icon {
  transform: scale(1.1);
  color: #0056b3;
}

#services .service-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

#services .service-item p {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

/* Featured Product Carousel Styles */
#featuredProductCarousel {
  position: relative;
  overflow: hidden;
}

.featured-product {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.featured-product.active {
  display: block;
  opacity: 1;
}

.featured-product:first-child {
  display: block;
  opacity: 1;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

.carousel-indicators button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.7);
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  width: calc(100% + 100px);
  left: -50px;
  display: flex;
  justify-content: space-between;
  padding: 0;
  z-index: 10;
  pointer-events: none;
  transform: translateY(-50%);
}

.carousel-control {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(46, 134, 193, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.carousel-control:hover {
  background: #fff;
  border-color: #2E86C1;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(46, 134, 193, 0.3);
}

.carousel-control i {
  color: #2E86C1;
  font-size: 1.2rem;
}

/* Mobile Responsiveness for Carousel */
@media (max-width: 768px) {
  .carousel-controls {
    width: calc(100% + 60px);
    left: -30px;
  }
  
  .carousel-control {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control i {
    font-size: 1rem;
  }
  
  .carousel-indicators {
    bottom: 10px;
  }
  
  .carousel-indicators button {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 576px) {
  .carousel-controls {
    width: calc(100% + 40px);
    left: -20px;
  }
  
  .carousel-control {
    width: 35px;
    height: 35px;
  }
  
  .carousel-control i {
    font-size: 0.9rem;
  }
}
