:root {
    --primary-color: #021452;
    --secondary-color: #23c3f4;
    --menu-color: #ffffff;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-text: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Header Styles */
.top-bar {
    background-color: var(--secondary-color);
    padding: 10px 0;
    color: white;
    font-size: 14px;
}

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

.top-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

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

/* CORREÇÃO DO TOPBAR PARA MOBILE */
@media (max-width: 767.98px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-contact-info {
        justify-content: center;
        width: 100%;
        margin-bottom: 5px;
    }
    
    .top-social-icons {
        justify-content: center;
        width: 100%;
    }
    
    .top-contact-info span {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 5px 0;
    }
    
    .top-contact-info i.fa-envelope {
        margin-left: 15px;
    }
}

@media (max-width: 575.98px) {
    .top-contact-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .top-contact-info span {
        justify-content: center;
    }
}

.header-container {
    display: flex;
    width: 100%;
}

.logo-area {
    background-color: var(--primary-color);
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

.logo-area img {
    max-height: 100px;
}

.menu-area {
    background-color: var(--menu-color);
    flex: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

/* Navegação e submenus */
.navbar-nav {
    position: relative;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    padding: 45px 20px;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

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

/* Submenu styles */
.navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
    border-radius: 5px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.navbar-nav .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--secondary-color);
    padding-left: 25px;
}

.contact-btn {
    background-color: var(--secondary-color);
    color: white !important;
    border-radius: 50px;
    padding: 10px 25px !important;
    margin-left: 15px;
    transition: all 0.3s ease;
}

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

/* Breadcrumb Styles */
.breadcrumb-section {
    padding: 20px 0;
    background-color: var(--light-bg);
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

/* Main Content Section */
.main-content-section {
    padding: 80px 0;
    background-color: white;
}

.content-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}

.content-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}



/* Benefits Section Styles */
.benefits-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(35, 195, 244, 0.3);
}

.benefit-icon i {
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: rotate(5deg);
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.benefit-card:hover h4 {
    color: var(--secondary-color);
}

.benefit-card p {
    color: var(--dark-text);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Responsive adjustments for benefits section */
@media (max-width: 991.98px) {
    .benefit-card {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .benefit-card h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefit-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .benefit-card h4 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
}


/* Accessory Cards Section Styles */
.accessory-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.accessory-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(35, 195, 244, 0.1);
}

.accessory-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.accessory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(35, 195, 244, 0.1), transparent);
    transition: left 0.6s ease;
}

.accessory-card:hover::before {
    left: 100%;
}

.accessory-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(35, 195, 244, 0.3);
}

.accessory-card:hover .accessory-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(35, 195, 244, 0.4);
}

.accessory-icon i {
    transition: transform 0.3s ease;
}

.accessory-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 10px;
}

.accessory-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.accessory-card:hover .accessory-title::after {
    width: 80px;
}

.accessory-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
    position: relative;
    display: inline-block;
}

.accessory-price::before {
    content: 'R$';
    font-size: 1rem;
    position: absolute;
    top: -8px;
    left: -25px;
    color: var(--primary-color);
}

.accessory-description {
    color: var(--dark-text);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
    padding: 0 10px;
}

.accessory-action {
    margin-top: auto;
}

.price-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(35, 195, 244, 0.3);
    position: relative;
    overflow: hidden;
}

.price-btn::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;
}

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

.price-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(35, 195, 244, 0.4);
    color: white;
}

/* Responsive adjustments for accessory cards */
@media (max-width: 991.98px) {
    .accessory-card {
        padding: 30px 25px;
        margin-bottom: 25px;
    }
    
    .accessory-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .accessory-title {
        font-size: 1.3rem;
    }
    
    .accessory-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .accessory-section {
        padding: 60px 0;
    }
    
    .accessory-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .accessory-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .accessory-title {
        font-size: 1.2rem;
    }
    
    .accessory-price {
        font-size: 1.6rem;
    }
    
    .accessory-description {
        font-size: 0.9rem;
    }
    
    .price-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Special styling for the centered card */
.col-lg-4.col-md-6.mx-md-auto .accessory-card {
    border: 2px solid rgba(35, 195, 244, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.col-lg-4.col-md-6.mx-md-auto .accessory-card:hover {
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 25px 50px rgba(35, 195, 244, 0.2);
}
/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.gallery-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.gallery-img {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.gallery-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.gallery-img img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 10px 15px;
    font-size: 1rem;
}

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

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(35, 195, 244, 0.25);
}

.contact-info {
    background-color: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 10px;
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    flex: 0 0 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-text h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-logo img {
    max-height: 70px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after, .footer-contact h4:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    min-width: 20px;
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
    width: 100%;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

/* CORREÇÃO ESPECÍFICA DO MENU MOBILE */
@media (max-width: 991.98px) {
    .header-container {
        flex-direction: column;
    }
    
    .logo-area {
        width: 100%;
        padding: 15px;
    }
    
    /* Ajustes específicos para o menu mobile */
    .navbar-nav .nav-link {
        padding: 12px 20px !important;
    }
    
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: rgba(0,0,0,0.03);
        box-shadow: none;
        border: none;
        border-radius: 0;
        display: none;
        opacity: 1;
        transform: none;
        padding: 0;
    }
    
    /* Remove o hover effect no mobile */
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    /* Mostra o submenu quando tem a classe show (via Bootstrap) */
    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item {
        padding: 10px 20px 10px 40px !important;
    }
    
    /* Ajuste do botão de contato no mobile */
    .contact-btn {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .banner-slide {
        height: auto;
        padding: 100px 0;
    }
    
    .banner-content {
        margin: 20px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .contact-info {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .navbar-nav .nav-link {
        padding: 10px 15px;
    }
    
    .contact-btn {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2, .content-text h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    /* Submenu em dispositivos móveis - mantém comportamento de clique */
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        box-shadow: none;
        display: none;
        opacity: 1;
        transform: none;
    }
    
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: none; /* No mobile, não mostra no hover */
    }
    
    .navbar-nav .dropdown-menu.show {
        display: block; /* Mostra apenas quando tem a classe show (via JavaScript) */
    }
    
    .navbar-nav .dropdown-menu .dropdown-item {
        padding-left: 40px;
    }
    
    /* Ajustes do breadcrumb para mobile */
    .breadcrumb-section {
        padding: 15px 0;
    }
    
    .breadcrumb-item {
        font-size: 0.8rem;
    }
    
    
    
}