.hero-section {
    background: linear-gradient(270deg, #18195B 0%, #0B0A2D 50%, #0B0A2D 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.feature-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #122250 0%, #1d388f 50%, #102869 100%);
    color: white;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}
.feature-card h4 {
    color: white !important;
}
.feature-card p {
    color: rgba(255, 255, 255, 0.9) !important;
}
.btn-custom {
    background: linear-gradient(270deg, #18195B 0%, #0B0A2D 50%, #0B0A2D 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.568) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.705) !important;
    color: white;
}

/* Animação do ícone de dedo */
@keyframes pulse-hand {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-hand {
    animation: pulse-hand 1.1s ease infinite;
    color: #ffffff !important;
    display: inline-block;
}

/* Carrossel de marcas */
.brands-carousel {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.brands-track {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.brand-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    vertical-align: middle;
    height: 100px;
    width: 120px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.brand-item img {
    max-height: 60px;
    max-width: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
}

.brand-item:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brands-carousel:hover .brands-track {
    animation-play-state: paused;
}

/* Slider de produtos */
.products-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.products-slider {
    position: relative;
    overflow: hidden;
}

.products-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-in-out;
}

.products-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 280px;
    background: linear-gradient(135deg, #122250 0%, #1d388f 50%, #102869 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    padding: 15px;
    text-align: center;
}

.product-item img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.product-item h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    color: #333;
}

/* Navegação do slider */
.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.section-padding {
    padding: 50px 0;
}
.text-gradient {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar-custom {
    background: linear-gradient(270deg, #18195B 0%, #0B0A2D 50%, #0B0A2D 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-custom .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
}

.navbar-custom .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: #25D366 !important;
    transform: translateY(-2px);
}

.navbar-custom .navbar-toggler {
    border: none;
    color: white;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-custom .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");
}

/* Botão flutuante de telefone */
.floating-contact-wrapper {
    position: fixed;
    top: 100px;
    right: 10px;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.phone-text-box {
    background: #2e2a96;
    color: white;
    padding: 8px 35px;
    border-radius: 25px 0 0 25px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none !important;
    margin-right: -30px;
    z-index: 1;
    animation: pulse 2s infinite;
}

.phone-text-box:hover {
    transform: translateX(-5px);
    color: white;
}

.floating-phone-btn {
    width: 70px;
    height: 70px;
    background: #2e2a96;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
    text-decoration: none !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }
}

.floating-phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.floating-phone-btn i {
    color: white;
    font-size: 38px;
}

/* Responsividade do botão */
@media (max-width: 768px) {
    .floating-contact-wrapper {
        top: 170px;
        right: 8px;
    }
    
    .floating-phone-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-phone-btn i {
        font-size: 20px;
    }
    
    .phone-text-box {
        padding: 6px 22px;
        font-size: 11px;
        margin-right: -20px;
    }
    
    .phone-text-box div {
        font-size: 0.6rem !important;
        margin-top: 1px !important;
    }
}