/* Estilos gerais */
:root {
    --primary-color: #ff6600;
    --secondary-color: #666666;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--secondary-color);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: auto;
    padding: 1rem 0;
}

.main-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-header .navbar {
    padding: 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
    margin-right: 3rem;
    transition: transform 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.main-header.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-nav {
    height: 100%;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 0.3rem;
    padding: 0.5rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-link {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

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

.nav-link i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-2px);
}

/* Dropdown Styles */
.dropdown-menu {
    padding: 0.8rem;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.7rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin-bottom: 0.2rem;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item i {
    margin-right: 0.6rem;
    font-size: 1rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.dropdown-item span {
    font-weight: 500;
}

.dropdown-item small {
    display: block;
    color: #999;
    font-size: 0.8rem;
    margin-top: 2px;
}

.dropdown-item:hover {
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

/* Header Contact Styles */
.header-contact {
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 102, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-group {
    display: flex;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
}

.contact-item:hover {
    background-color: rgba(255, 102, 0, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    width: 28px;
    height: 28px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.6rem;
    transition: all 0.3s ease;
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

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

.contact-item:hover .contact-icon i {
    color: #fff;
    transform: scale(1.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: #999;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.2;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.contact-item:hover .contact-value {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-label {
        display: none;
    }
    
    .contact-value {
        font-size: 0.8rem;
    }
    
    .header-contact {
        margin-left: 1.5rem;
        padding-left: 1.5rem;
    }
    
    .contact-group {
        gap: 1rem;
    }

    .nav-link {
        padding: 0 0.8rem;
        font-size: 0.9rem;
    }

    .navbar-brand {
        margin-right: 2rem;
    }
}

@media (max-width: 991px) {
    .main-header {
        padding: 0.75rem 0;
    }

    .main-header.scrolled {
        padding: 0.5rem 0;
    }

    .navbar-brand img {
        height: 45px;
    }

    .main-header.scrolled .navbar-brand img {
        height: 35px;
    }

    .nav-item {
        padding: 0.25rem 0;
    }

    .header-contact {
        display: none;
    }

    .navbar-toggler {
        border: none;
        padding: 0.4rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    .navbar-toggler:hover {
        background-color: rgba(255, 102, 0, 0.1);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 0.8rem;
        margin-top: 0.8rem;
    }

    .nav-item {
        height: auto;
        margin: 0.3rem 0;
    }

    .nav-item::after {
        display: none;
    }

    .nav-link {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .nav-link:hover {
        background-color: rgba(255, 102, 0, 0.1);
    }

    .dropdown-menu {
        box-shadow: none;
        padding: 0.5rem;
        margin: 0.3rem 0;
    }

    .navbar-brand img {
        height: 45px;
    }
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 8px;
}

.navbar-toggler-icon::after {
    bottom: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 11px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 11px;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }

    .navbar-brand img {
        height: 50px;
    }
    
    .main-header.scrolled .navbar-brand img {
        height: 45px;
    }
}

/* Adjust hero section for fixed header */
.hero {
    margin-top: 90px;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    margin-top: 90px;
    width: 100%;
    height: auto;
    min-height: 400px;
}

#heroCarousel {
    width: 100%;
    height: auto;
}

.carousel-item {
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.7);
    aspect-ratio: 1920/728;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0.8;
    display: block;
}

.carousel-inner {
    width: 100%;
    height: auto;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
    left: 10%;
    right: auto;
}

.carousel-caption h1 {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.carousel-caption p {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        margin-top: 70px;
        min-height: 300px;
    }

    .carousel-item {
        aspect-ratio: 16/9;
    }

    .carousel-caption {
        text-align: center;
        left: 5%;
        right: 5%;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        margin-top: 60px;
        min-height: 250px;
    }

    .carousel-item {
        aspect-ratio: 4/3;
    }
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4rem 0 2rem;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-col {
        margin-bottom: 2rem;
    }
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
    color: white;
}

.whatsapp-float .bi-whatsapp {
    font-size: 32px;
    line-height: 1;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float .tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float a:hover + .tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float .tooltip {
        display: none;
    }
}

.footer-unit {
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-unit:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-unit h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-unit p {
    color: var(--secondary-color);
    line-height: 1.4;
}

.footer-contact div {
    display: inline-block;
}

.footer-contact a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color) !important;
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.95) 0%, rgba(255, 102, 0, 0.85) 100%);
    z-index: 1;
}

.video-section .container {
    position: relative;
    z-index: 2;
}

.video-section .section-title {
    position: relative;
    margin-bottom: 3rem;
    color: white;
}

.video-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: white;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.features-grid {
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px);
}

.feature-item:hover .feature-icon i {
    transform: scale(1.2);
}

.feature-item h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    width: 100%;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-item {
        margin-bottom: 2rem;
    }
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.location-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.location-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.location-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.location-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.location-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 8px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.location-text {
    flex: 1;
}

.location-text h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-text p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.location-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.location-text a:hover {
    color: #e65c00;
}

@media (max-width: 768px) {
    .map-section {
        padding: 3rem 0;
    }

    .map-container {
        height: 350px;
        margin-top: 2rem;
    }

    .location-info {
        margin-bottom: 2rem;
    }
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: #fff;
}

.product-card {
    position: relative;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1;
}

.product-content {
    padding: 1.5rem;
    background: white;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.product-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.product-action .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.product-action .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    background-color: #fff;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Brands Section */
.brands-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.brands-title {
    position: relative;
    margin-bottom: 3rem;
}

.brands-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.brand-item {
    position: relative;
    padding: 1.5rem;
    text-align: center;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    max-width: 150px;
    height: auto;
  /*  filter: grayscale(100%);*/
    transition: filter 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
}

.brand-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.brand-item:hover::before {
    width: 80%;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .brand-item {
        padding: 1rem;
    }

    .brand-item img {
        max-width: 120px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.faq-title {
    position: relative;
    margin-bottom: 3rem;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: none;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: white;
    border-radius: 12px !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 102, 0, 0.1);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6600'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.faq-category {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    background-color: rgba(255, 102, 0, 0.1);
    margin-bottom: 0.5rem;
}

.faq-highlight {
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Slogan Section */
.slogan-section {
    background-color: #333;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.slogan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 102, 0, 0.08) 100%);
    z-index: 1;
}

.slogan-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.15;
    z-index: 1;
}

.slogan-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.slogan-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.slogan-title span {
    color: var(--primary-color);
}

.slogan-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slogan-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-slogan {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.btn-slogan.btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-slogan.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

    .slogan-subtitle {
        font-size: 1.25rem;
    }

    .slogan-buttons {
        flex-direction: column;
    }

    .btn-slogan {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Product Page */
.product-page {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

/* Product Gallery */
.product-gallery {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-thumb {
    position: relative;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.gallery-thumb.active {
    border-color: var(--primary-color);
}

/* Product Info */
.product-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-code {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Product Specs */
.product-specs {
    margin-bottom: 2rem;
}

.specs-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 102, 0, 0.1);
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.specs-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.specs-list i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* Product Measures Table */
.measures-table {
    width: 100%;
    margin-bottom: 2rem;
}

.measures-table th {
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 1rem;
    text-align: left;
}

.measures-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

/* Applications */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.application-item {
    background: rgba(255, 102, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.application-item:hover {
    background: rgba(255, 102, 0, 0.1);
    transform: translateY(-3px);
}

.application-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Related Products */
.related-products {
    margin-top: 4rem;
}

.related-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.related-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-item:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 1.5rem;
}

.related-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.related-category {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .gallery-main {
        height: 300px;
    }

    .gallery-thumb {
        height: 80px;
    }

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

    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    margin-top: 90px;
}

/* Breadcrumb Styles */
.breadcrumb-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 115px;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.breadcrumb {
    font-size: 0.9rem;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--secondary-color);
}

.breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb .bi {
    font-size: 0.9rem;
    margin-right: 0.3rem;
    position: relative;
    top: -1px;
}

/* Menu Items */
.navbar-nav .nav-link {
    padding: 12px 20px !important;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Category Page Styles */
.category-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 30px;
}

.category-title {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.category-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.filters-wrapper {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-title {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h5 {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.form-check {
    margin-bottom: 10px;
}

.form-check-label {
    color: #666;
    font-size: 0.95rem;
}

.category-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 4:3 Aspect Ratio */
}

.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-content {
    padding: 20px;
}

.category-content h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.category-content .btn-primary {
    background-color: #ff6600;
    border-color: #ff6600;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-content .btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

@media (max-width: 991px) {
    .filters-wrapper {
        margin-bottom: 30px;
    }
    
    .category-header {
        padding: 40px 0;
    }
    
    .category-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .category-header {
        padding: 30px 0;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .category-card {
        margin-bottom: 20px;
    }
}

/* Services Page Styles */
.page-header {
    padding: 60px 0;
    margin-bottom: 30px;
}

.page-title {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 28px;
    color: #fff;
}

.service-card h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.step-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.25rem;
    font-weight: 600;
}

.step-card h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}

/* Benefits Page Styles */
.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 28px;
    color: #fff;
}

.benefit-content h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.benefit-list li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ff6600;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.mini-benefit {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.mini-benefit i {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 15px;
}

.mini-benefit h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.mini-benefit p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(rgba(255,102,0,0.9), rgba(255,102,0,0.9)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.cta-wrapper {
    padding: 60px 0;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-wrapper .btn-primary {
    background-color: #fff;
    border-color: #fff;
    color: #ff6600;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-wrapper .btn-primary:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #e65c00;
}

@media (max-width: 767px) {
    .benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-list li {
        text-align: left;
    }

    .cta-wrapper {
        padding: 40px 0;
    }

    .cta-wrapper h2 {
        font-size: 2rem;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    color: #333;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-section p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-section ul li {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.policy-section ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ff6600;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.update-date {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .policy-section {
        margin-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 1.25rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 0.95rem;
    }
}

/* Units Page Styles */
.unit-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.unit-image {
    position: relative;
    overflow: hidden;
    padding-top: 40%;
}

.unit-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unit-content {
    padding: 30px;
}

.unit-content h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.unit-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item i {
    color: #ff6600;
    font-size: 1.25rem;
    margin-top: 3px;
}

.info-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.info-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-item a:hover {
    color: #ff6600;
}

.unit-map {
    border-radius: 4px;
    overflow: hidden;
}

.coverage-info h3 {
    color: #333;
    font-size: 1.75rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.coverage-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.coverage-list li {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.coverage-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .unit-card {
        margin-bottom: 30px;
    }

    .coverage-info {
        text-align: center;
        margin-bottom: 30px;
    }

    .coverage-list li {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .unit-image {
        padding-top: 60%;
    }

    .unit-content {
        padding: 20px;
    }

    .unit-content h2 {
        font-size: 1.25rem;
    }
}

/* Institutional Page Styles */
.institutional-hero {
    padding: 80px 0;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('../img/about/hero-bg.webp');
    background-size: cover;
    background-position: center;
}

.hero-title {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* MVV Cards */
.mvv-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    text-align: center;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mvv-icon i {
    font-size: 40px;
    color: #fff;
}

.mvv-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.mvv-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.values-list li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ff6600;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline:before {
    content: "";
    width: 2px;
    height: 100%;
    background: #ff6600;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 50%;
    padding-left: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 50%;
    padding-right: 40px;
    text-align: right;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-content:before {
    content: "";
    width: 20px;
    height: 20px;
    background: #ff6600;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content:before {
    left: -10px;
}

.timeline-item:nth-child(even) .timeline-content:before {
    right: -10px;
}

.year {
    color: #ff6600;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* Quality Section */
.quality-content {
    padding-right: 40px;
}

.quality-content h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.quality-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.quality-list li {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.quality-list li:before {
    content: "\F26E";
    font-family: "Bootstrap Icons";
    color: #ff6600;
    position: absolute;
    left: 0;
    top: 0;
}

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

.cert-logo {
    height: 60px;
    width: auto;
}

/* Team Section */
.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-image {
    position: relative;
    padding-top: 100%;
}

.team-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991px) {
    .institutional-hero {
        padding: 60px 0;
        text-align: center;
    }

    .hero-image {
        margin-top: 30px;
    }

    .quality-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    .quality-list li {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .timeline:before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 0 0 40px;
        padding: 20px;
        text-align: left;
    }

    .timeline-content:before {
        left: -30px !important;
        right: auto !important;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* Forklift Tires Page Styles */
.forklift-hero {
    padding: 80px 0;
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('../img/products/hero-bg.webp');
    background-size: cover;
    background-position: center;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 24px;
    color: #ff6600;
}

.feature-item span {
    font-size: 0.9rem;
    color: #666;
}

/* Category Cards */
.category-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.category-card:hover,
.category-card.active {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    font-size: 40px;
    color: #fff;
}

.category-card h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.category-features li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Product Selector */
.selector-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

.selector-filters {
    padding-right: 30px;
}

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

.filter-group label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.results-placeholder {
    padding: 40px;
    text-align: center;
    color: #666;
}

.results-placeholder i {
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 15px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Benefits Section */
.benefit-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: #fff;
}

.benefit-item h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Technical Info */
.info-content {
    padding-right: 40px;
}

.info-content h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
}

.accordion-button {
    background: #fff;
    color: #333;
    font-weight: 500;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion-button:not(.collapsed) {
    background: #ff6600;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255,102,0,0.25);
}

.accordion-body {
    background: #fff;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(255,102,0,0.9), rgba(255,102,0,0.9)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.cta-wrapper {
    padding: 60px 0;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-buttons {
    margin-top: 30px;
}

.btn-outline-light:hover {
    background: #fff;
    color: #ff6600;
}

@media (max-width: 991px) {
    .forklift-hero {
        padding: 60px 0;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        margin-top: 30px;
    }

    .selector-filters {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .info-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
/* Estilos gerais */
:root {
    --primary-color: #ff6600;
    --secondary-color: #666666;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--secondary-color);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: auto;
    padding: 1rem 0;
}

.main-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-header .navbar {
    padding: 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
    margin-right: 3rem;
    transition: transform 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.main-header.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-nav {
    height: 100%;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 0.3rem;
    padding: 0.5rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-link {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

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

.nav-link i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-2px);
}

/* Dropdown Styles */
.dropdown-menu {
    padding: 0.8rem;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.7rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin-bottom: 0.2rem;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item i {
    margin-right: 0.6rem;
    font-size: 1rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.dropdown-item span {
    font-weight: 500;
}

.dropdown-item small {
    display: block;
    color: #999;
    font-size: 0.8rem;
    margin-top: 2px;
}

.dropdown-item:hover {
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

/* Header Contact Styles */
.header-contact {
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 102, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-group {
    display: flex;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
}

.contact-item:hover {
    background-color: rgba(255, 102, 0, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    width: 28px;
    height: 28px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.6rem;
    transition: all 0.3s ease;
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

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

.contact-item:hover .contact-icon i {
    color: #fff;
    transform: scale(1.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: #999;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.6em;
    font-weight: 500;
    line-height: 1.2;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.contact-item:hover .contact-value {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-label {
        display: none;
    }
    
    .contact-value {
        font-size: 0.8rem;
    }
    
    .header-contact {
        margin-left: 1.5rem;
        padding-left: 1.5rem;
    }
    
    .contact-group {
        gap: 1rem;
    }

    .nav-link {
        padding: 0 0.8rem;
        font-size: 0.9rem;
    }

    .navbar-brand {
        margin-right: 2rem;
    }
}

@media (max-width: 991px) {
    .main-header {
        padding: 0.75rem 0;
    }

    .main-header.scrolled {
        padding: 0.5rem 0;
    }

    .navbar-brand img {
        height: 45px;
    }

    .main-header.scrolled .navbar-brand img {
        height: 35px;
    }

    .nav-item {
        padding: 0.25rem 0;
    }

    .header-contact {
        display: none;
    }

    .navbar-toggler {
        border: none;
        padding: 0.4rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    .navbar-toggler:hover {
        background-color: rgba(255, 102, 0, 0.1);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 0.8rem;
        margin-top: 0.8rem;
    }

    .nav-item {
        height: auto;
        margin: 0.3rem 0;
    }

    .nav-item::after {
        display: none;
    }

    .nav-link {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .nav-link:hover {
        background-color: rgba(255, 102, 0, 0.1);
    }

    .dropdown-menu {
        box-shadow: none;
        padding: 0.5rem;
        margin: 0.3rem 0;
    }

    .navbar-brand img {
        height: 45px;
    }
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 8px;
}

.navbar-toggler-icon::after {
    bottom: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 11px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 11px;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }

    .navbar-brand img {
        height: 50px;
    }
    
    .main-header.scrolled .navbar-brand img {
        height: 45px;
    }
}

/* Adjust hero section for fixed header */
.hero {
    margin-top: 90px;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    margin-top: 90px;
    width: 100%;
    height: auto;
    min-height: 400px;
}

#heroCarousel {
    width: 100%;
    height: auto;
}

.carousel-item {
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.7);
    aspect-ratio: 1920/728;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0.8;
    display: block;
}

.carousel-inner {
    width: 100%;
    height: auto;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
    left: 10%;
    right: auto;
}

.carousel-caption h1 {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.carousel-caption p {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        margin-top: 70px;
        min-height: 300px;
    }

    .carousel-item {
        aspect-ratio: 16/9;
    }

    .carousel-caption {
        text-align: center;
        left: 5%;
        right: 5%;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        margin-top: 60px;
        min-height: 250px;
    }

    .carousel-item {
        aspect-ratio: 4/3;
    }
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4rem 0 2rem;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-col {
        margin-bottom: 2rem;
    }
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
    color: white;
}

.whatsapp-float .bi-whatsapp {
    font-size: 32px;
    line-height: 1;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float .tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float a:hover + .tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float .tooltip {
        display: none;
    }
}

.footer-unit {
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-unit:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-unit h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-unit p {
    color: var(--secondary-color);
    line-height: 1.4;
}

.footer-contact div {
    display: inline-block;
}

.footer-contact a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color) !important;
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.95) 0%, rgba(255, 102, 0, 0.85) 100%);
    z-index: 1;
}

.video-section .container {
    position: relative;
    z-index: 2;
}

.video-section .section-title {
    position: relative;
    margin-bottom: 3rem;
    color: white;
}

.video-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: white;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.features-grid {
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px);
}

.feature-item:hover .feature-icon i {
    transform: scale(1.2);
}

.feature-item h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    width: 100%;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-item {
        margin-bottom: 2rem;
    }
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.location-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.location-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.location-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.location-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.location-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 8px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.location-text {
    flex: 1;
}

.location-text h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-text p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.location-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.location-text a:hover {
    color: #e65c00;
}

@media (max-width: 768px) {
    .map-section {
        padding: 3rem 0;
    }

    .map-container {
        height: 350px;
        margin-top: 2rem;
    }

    .location-info {
        margin-bottom: 2rem;
    }
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: #fff;
}

.product-card {
    position: relative;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1;
}

.product-content {
    padding: 1.5rem;
    background: white;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.product-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.product-action .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.product-action .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    background-color: #fff;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Brands Section */
.brands-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.brands-title {
    position: relative;
    margin-bottom: 3rem;
}

.brands-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.brand-item {
    position: relative;
    padding: 1.5rem;
    text-align: center;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
}

.brand-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.brand-item:hover::before {
    width: 80%;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .brand-item {
        padding: 1rem;
    }

    .brand-item img {
        max-width: 120px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.faq-title {
    position: relative;
    margin-bottom: 3rem;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: none;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: white;
    border-radius: 12px !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 102, 0, 0.1);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6600'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.faq-category {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    background-color: rgba(255, 102, 0, 0.1);
    margin-bottom: 0.5rem;
}

.faq-highlight {
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Slogan Section */
.slogan-section {
    background-color: #333;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.slogan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 102, 0, 0.08) 100%);
    z-index: 1;
}

.slogan-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.15;
    z-index: 1;
}

.slogan-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.slogan-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.slogan-title span {
    color: var(--primary-color);
}

.slogan-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slogan-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-slogan {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.btn-slogan.btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-slogan.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

    .slogan-subtitle {
        font-size: 1.25rem;
    }

    .slogan-buttons {
        flex-direction: column;
    }

    .btn-slogan {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Product Page */
.product-page {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

/* Product Gallery */
.product-gallery {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-thumb {
    position: relative;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.gallery-thumb.active {
    border-color: var(--primary-color);
}

/* Product Info */
.product-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-code {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Product Specs */
.product-specs {
    margin-bottom: 2rem;
}

.specs-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 102, 0, 0.1);
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.specs-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.specs-list i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* Product Measures Table */
.measures-table {
    width: 100%;
    margin-bottom: 2rem;
}

.measures-table th {
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 1rem;
    text-align: left;
}

.measures-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

/* Applications */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.application-item {
    background: rgba(255, 102, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.application-item:hover {
    background: rgba(255, 102, 0, 0.1);
    transform: translateY(-3px);
}

.application-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Related Products */
.related-products {
    margin-top: 4rem;
}

.related-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.related-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-item:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 1.5rem;
}

.related-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.related-category {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .gallery-main {
        height: 300px;
    }

    .gallery-thumb {
        height: 80px;
    }

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

    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    margin-top: 90px;
}

/* Breadcrumb Styles */
.breadcrumb-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 115px;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.breadcrumb {
    font-size: 0.9rem;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--secondary-color);
}

.breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb .bi {
    font-size: 0.9rem;
    margin-right: 0.3rem;
    position: relative;
    top: -1px;
}

/* Menu Items */
.navbar-nav .nav-link {
    padding: 12px 20px !important;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Category Page Styles */
.category-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 30px;
}

.category-title {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.category-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.filters-wrapper {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-title {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h5 {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.form-check {
    margin-bottom: 10px;
}

.form-check-label {
    color: #666;
    font-size: 0.95rem;
}

.category-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 4:3 Aspect Ratio */
}

.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-content {
    padding: 20px;
}

.category-content h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.category-content .btn-primary {
    background-color: #ff6600;
    border-color: #ff6600;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-content .btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

@media (max-width: 991px) {
    .filters-wrapper {
        margin-bottom: 30px;
    }
    
    .category-header {
        padding: 40px 0;
    }
    
    .category-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .category-header {
        padding: 30px 0;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .category-card {
        margin-bottom: 20px;
    }
}

/* Services Page Styles */
.page-header {
    padding: 60px 0;
    margin-bottom: 30px;
}

.page-title {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 28px;
    color: #fff;
}

.service-card h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.step-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.25rem;
    font-weight: 600;
}

.step-card h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}

/* Benefits Page Styles */
.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 28px;
    color: #fff;
}

.benefit-content h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.benefit-list li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ff6600;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.mini-benefit {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.mini-benefit i {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 15px;
}

.mini-benefit h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.mini-benefit p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(rgba(255,102,0,0.9), rgba(255,102,0,0.9)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.cta-wrapper {
    padding: 60px 0;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-wrapper .btn-primary {
    background-color: #fff;
    border-color: #fff;
    color: #ff6600;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-wrapper .btn-primary:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #e65c00;
}

@media (max-width: 767px) {
    .benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-list li {
        text-align: left;
    }

    .cta-wrapper {
        padding: 40px 0;
    }

    .cta-wrapper h2 {
        font-size: 2rem;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    color: #333;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-section p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-section ul li {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.policy-section ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ff6600;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.update-date {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .policy-section {
        margin-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 1.25rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 0.95rem;
    }
}

/* Units Page Styles */
.unit-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.unit-image {
    position: relative;
    overflow: hidden;
    padding-top: 40%;
}

.unit-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unit-content {
    padding: 30px;
}

.unit-content h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.unit-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item i {
    color: #ff6600;
    font-size: 1.25rem;
    margin-top: 3px;
}

.info-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.info-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-item a:hover {
    color: #ff6600;
}

.unit-map {
    border-radius: 4px;
    overflow: hidden;
}

.coverage-info h3 {
    color: #333;
    font-size: 1.75rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.coverage-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.coverage-list li {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.coverage-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .unit-card {
        margin-bottom: 30px;
    }

    .coverage-info {
        text-align: center;
        margin-bottom: 30px;
    }

    .coverage-list li {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .unit-image {
        padding-top: 60%;
    }

    .unit-content {
        padding: 20px;
    }

    .unit-content h2 {
        font-size: 1.25rem;
    }
}

/* Institutional Page Styles */
.institutional-hero {
    padding: 80px 0;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('../img/about/hero-bg.webp');
    background-size: cover;
    background-position: center;
}

.hero-title {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* MVV Cards */
.mvv-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    text-align: center;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mvv-icon i {
    font-size: 40px;
    color: #fff;
}

.mvv-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.mvv-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.values-list li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ff6600;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline:before {
    content: "";
    width: 2px;
    height: 100%;
    background: #ff6600;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 50%;
    padding-left: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 50%;
    padding-right: 40px;
    text-align: right;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-content:before {
    content: "";
    width: 20px;
    height: 20px;
    background: #ff6600;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content:before {
    left: -10px;
}

.timeline-item:nth-child(even) .timeline-content:before {
    right: -10px;
}

.year {
    color: #ff6600;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* Quality Section */
.quality-content {
    padding-right: 40px;
}

.quality-content h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.quality-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.quality-list li {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.quality-list li:before {
    content: "\F26E";
    font-family: "Bootstrap Icons";
    color: #ff6600;
    position: absolute;
    left: 0;
    top: 0;
}

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

.cert-logo {
    height: 60px;
    width: auto;
}

/* Team Section */
.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-image {
    position: relative;
    padding-top: 100%;
}

.team-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991px) {
    .institutional-hero {
        padding: 60px 0;
        text-align: center;
    }

    .hero-image {
        margin-top: 30px;
    }

    .quality-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    .quality-list li {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .timeline:before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 0 0 40px;
        padding: 20px;
        text-align: left;
    }

    .timeline-content:before {
        left: -30px !important;
        right: auto !important;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* Forklift Tires Page Styles */
.forklift-hero {
    padding: 80px 0;
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('../img/products/hero-bg.webp');
    background-size: cover;
    background-position: center;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 24px;
    color: #ff6600;
}

.feature-item span {
    font-size: 0.9rem;
    color: #666;
}

/* Category Cards */
.category-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.category-card:hover,
.category-card.active {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    font-size: 40px;
    color: #fff;
}

.category-card h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.category-features li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Product Selector */
.selector-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

.selector-filters {
    padding-right: 30px;
}

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

.filter-group label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.results-placeholder {
    padding: 40px;
    text-align: center;
    color: #666;
}

.results-placeholder i {
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 15px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Benefits Section */
.benefit-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: #fff;
}

.benefit-item h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Technical Info */
.info-content {
    padding-right: 40px;
}

.info-content h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
}

.accordion-button {
    background: #fff;
    color: #333;
    font-weight: 500;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion-button:not(.collapsed) {
    background: #ff6600;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255,102,0,0.25);
}

.accordion-body {
    background: #fff;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(255,102,0,0.9), rgba(255,102,0,0.9)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.cta-wrapper {
    padding: 60px 0;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-buttons {
    margin-top: 30px;
}

.btn-outline-light:hover {
    background: #fff;
    color: #ff6600;
}

@media (max-width: 991px) {
    .forklift-hero {
        padding: 60px 0;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        margin-top: 30px;
    }

    .selector-filters {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .info-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-wrapper h2 {
        font-size: 2rem;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

/* Recycling Page Styles */
.recycling-hero {
    padding: 80px 0;
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('../img/recycling/hero-bg.webp');
    background-size: cover;
    background-position: center;
}

.eco-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 32px;
    color: #ff6600;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-icon i {
    font-size: 36px;
    color: #fff;
}

.process-step h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Applications Cards */
.application-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
}

.app-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.app-content {
    padding: 20px;
}

.app-content h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.app-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Impact Section */
.impact-content {
    padding-right: 40px;
}

.impact-list {
    margin-top: 30px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.impact-item i {
    color: #ff6600;
    font-size: 20px;
}

.impact-item span {
    color: #666;
    font-size: 1rem;
}

/* Legislation Cards */
.legislation-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 28px;
    color: #fff;
}

.legislation-card h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.legislation-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Join Program */
.program-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-card h3 {
    color: #333;
    font-size: 1.1rem;
    margin: 15px 0 10px;
    font-weight: 600;
}

.step-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991px) {
    .recycling-hero {
        padding: 60px 0;
        text-align: center;
    }

    .eco-stats {
        justify-content: center;
    }

    .impact-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .impact-list {
        max-width: 400px;
        margin: 30px auto 0;
    }
}

@media (max-width: 767px) {
    .eco-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .process-timeline {
        padding: 0;
    }

    .process-step {
        margin-bottom: 30px;
    }

    .impact-item {
        justify-content: center;
    }
}

/* Blog Page Styles */
.blog-header {
    padding: 60px 0;
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('../img/blog/header-bg.webp');
    background-size: cover;
    background-position: center;
}

.blog-header h1 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.search-box {
    max-width: 500px;
    margin-left: auto;
}

/* Featured Post */
.featured-post {
    margin-top: -30px;
    margin-bottom: 50px;
}

.featured-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.featured-image {
    position: relative;
    height: 100%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff6600;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.featured-content {
    padding: 40px;
}

.featured-content h2 {
    font-size: 1.8rem;
    margin: 15px 0;
    color: #333;
    font-weight: 600;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
}

.post-meta .category {
    color: #ff6600;
    font-weight: 500;
}

/* Category Filters */
.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-filters .btn {
    border-radius: 20px;
    padding: 8px 20px;
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.post-image {
    position: relative;
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6600;
    color: #fff;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
    font-weight: 600;
}

.post-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.read-more {
    color: #ff6600;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: #cc5200;
}

.read-time {
    color: #999;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 40px;
}

.pagination .page-link {
    color: #666;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 4px;
}

.pagination .page-item.active .page-link {
    background: #ff6600;
    color: #fff;
}

/* Blog Widgets */
.blog-widget {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.widget-title {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Categories Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #ff6600;
}

.count {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Popular Posts Widget */
.popular-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.popular-post-item:last-child {
    margin-bottom: 0;
}

.popular-post-item .post-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.popular-post-item .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.popular-post-item .post-info h4 {
    font-size: 1rem;
    margin: 0 0 5px;
}

.popular-post-item .post-info h4 a {
    color: #333;
    text-decoration: none;
}

.popular-post-item .post-info h4 a:hover {
    color: #ff6600;
}

.popular-post-item .date {
    font-size: 0.8rem;
    color: #999;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #f5f5f5;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #ff6600;
    color: #fff;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(rgba(255,102,0,0.05), rgba(255,102,0,0.05));
}

.newsletter-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .blog-header {
        text-align: center;
        padding: 40px 0;
    }

    .search-box {
        margin: 30px auto 0;
    }

    .featured-content {
        padding: 30px;
    }

    .featured-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .category-filters {
        justify-content: center;
    }

    .category-filters .btn {
        font-size: 0.9rem;
        padding: 6px 15px;
    }

    .featured-image {
        height: 200px;
    }
}

/* Blog Post Page Styles */
.post-header {
    padding: 60px 0;
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('../img/blog/header-bg.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.post-header h1 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h2 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.author-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.post-featured-image {
    margin-top: -30px;
    margin-bottom: 50px;
}

.post-featured-image img {
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Share Buttons Fixed */
.share-buttons-fixed {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-button a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease;
}

.share-button a:hover {
    transform: scale(1.1);
}

.share-button .facebook {
    background: #1877f2;
}

.share-button .twitter {
    background: #000;
}

.share-button .linkedin {
    background: #0077b5;
}

.share-button .whatsapp {
    background: #25d366;
}

/* Article Content */
.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-text h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 40px 0 20px;
    font-weight: 600;
}

.article-text p {
    margin-bottom: 20px;
}

.article-text .lead {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
}

.article-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-text li {
    margin-bottom: 10px;
}

/* Info and Warning Boxes */
.info-box, .warning-box {
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-box {
    background: rgba(0,123,255,0.1);
    border-left: 4px solid #007bff;
}

.warning-box {
    background: rgba(255,193,7,0.1);
    border-left: 4px solid #ffc107;
}

.info-box i, .warning-box i {
    font-size: 24px;
}

.info-box i {
    color: #007bff;
}

.warning-box i {
    color: #ffc107;
}

/* Image with Caption */
.image-with-caption {
    margin: 30px 0;
}

.image-with-caption img {
    border-radius: 8px;
    margin-bottom: 10px;
}

.caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Quote Box */
.quote-box {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.quote-box blockquote {
    font-size: 1.3rem;
    color: #333;
    font-style: italic;
    margin: 0 0 15px;
}

.quote-box cite {
    color: #666;
    font-size: 0.9rem;
}

/* Table Styles */
.table {
    margin: 30px 0;
}

.table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Post Tags */
.post-tags {
    margin: 40px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.post-tags .tag {
    background: #f5f5f5;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tags .tag:hover {
    background: #ff6600;
    color: #fff;
}

/* Share Buttons Bottom */
.share-buttons-bottom {
    margin: 40px 0;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-buttons-bottom p {
    margin-bottom: 15px;
    color: #666;
}

.share-buttons-bottom .buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-buttons-bottom .btn {
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
}

.btn-facebook {
    background: #1877f2;
}

.btn-twitter {
    background: #000;
}

.btn-linkedin {
    background: #0077b5;
}

.btn-whatsapp {
    background: #25d366;
}

/* Author Bio */
.author-bio {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    gap: 20px;
}

.author-bio .author-image {
    width: 100px;
    height: 100px;
}

.author-bio .author-info {
    flex: 1;
}

.author-bio h3 {
    font-size: 1.3rem;
    margin: 0 0 5px;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.author-description {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

.author-social {
    margin-top: 15px;
}

.author-social a {
    color: #666;
    margin-right: 15px;
    font-size: 1.1rem;
}

.author-social a:hover {
    color: #ff6600;
}

/* Table of Contents */
.toc-widget {
    position: sticky;
    top: 20px;
}

.toc-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-nav a {
    display: block;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.toc-nav a:hover {
    color: #ff6600;
}

/* Comments Section */
.comments-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.comments-title {
    margin-bottom: 30px;
    color: #333;
    font-size: 1.5rem;
}

.comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.comment-header .date {
    font-size: 0.9rem;
    color: #999;
}

.comment-actions {
    margin-top: 10px;
}

.comment-actions .reply {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.comment-actions .reply:hover {
    color: #ff6600;
}

/* Comment Form */
.comment-form {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.comment-form h3 {
    margin-bottom: 30px;
    color: #333;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

@media (max-width: 991px) {
    .post-header {
        padding: 40px 0;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .share-buttons-fixed {
        display: none;
    }

    .article-text {
        font-size: 1rem;
    }

    .article-text h2 {
        font-size: 1.5rem;
    }

    .quote-box blockquote {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-bio .author-image {
        margin: 0 auto;
    }

    .comment {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .comment-header {
        flex-direction: column;
        gap: 5px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background-color: #fff;
    position: relative;
}

.contact-channels {
    margin-top: 2rem;
}

.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
} 

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
    outline: none;
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-form .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form .btn-primary:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.contact-form .btn-primary:disabled {
    background: #ccc;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

.contact-form .btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Estilos para mensagens de feedback */
.alert {
    border: none;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.5s ease-out;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.alert .btn-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.alert .btn-close:hover {
    opacity: 1;
}

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

/* Responsividade para o formulário */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-form .btn-primary {
        width: 100%;
        padding: 1rem;
    }
    
    .alert {
        margin: 1rem 0;
        padding: 0.75rem 1rem;
    }
}

/* Estilos para campos obrigatórios */
.form-label:has(+ .form-control[required])::after,
.form-label:has(+ .form-select[required])::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

/* Estilos para máscara de telefone */
#phone {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* Estilos para loading do botão */
.btn-loading .spinner-border {
    width: 1rem;
    height: 1rem;
}

/* Estilos para validação em tempo real */
.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Units Section Styles */
.unit-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.unit-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.unit-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.unit-header i {
    margin-right: 0.5rem;
}

.unit-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.unit-content {
    padding: 1.5rem;
}

.unit-info {
    margin-bottom: 1.5rem;
}

.unit-info p {
    margin-bottom: 0.75rem;
    color: #666;
    display: flex;
    align-items: center;
}

.unit-info i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.unit-map {
    border-radius: 8px;
    overflow: hidden;
}

/* Service Hours Section */
.service-hours {
    background-color: #fff;
}

.hours-info {
    margin-top: 2rem;
}

.hours-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.hours-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.hours-item h3 {
    font-size: 1.1rem;
    margin: 0 0 0.25rem;
    color: var(--secondary-color);
}

.hours-item p {
    margin: 0;
    color: #666;
}

.emergency-contact {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.emergency-contact .btn {
    margin-top: 1.5rem;
}

@media (max-width: 991px) {
    .contact-hero {
        text-align: center;
    }
    
    .contact-channels {
        margin-bottom: 3rem;
    }
    
    .contact-form-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .unit-card {
        margin-bottom: 1.5rem;
    }
    
    .hours-item {
        padding: 0.75rem;
    }
    
    .emergency-contact {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

/* Header Search */
.header-search-container {
    background: #fff;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.header-search-container.active {
    display: block !important;
}

.header-search-form {
    max-width: 600px;
    margin: 0 auto;
}

.header-search-form .input-group {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.header-search-form .input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

.header-search-form .form-control {
    border: none;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    color: var(--text-color);
    background: transparent;
}

.header-search-form .form-control::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.header-search-form .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.header-search-form .btn {
    border: none;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.header-search-form .btn:hover {
    background: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
}

/* Ajuste para telas menores */
@media (max-width: 991px) {
    .header-search-container {
        padding: 0.5rem 0;
    }
    
    .header-search-form {
        padding: 0 1rem;
    }

    .header-search-form .form-control {
        padding: 0.5rem 1rem;
    }

    .header-search-form .btn {
        padding: 0.5rem 1rem;
    }
}

/* Botão de Busca */
.btn-search-toggle {
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 1.25rem;
    padding: 0.5rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search-toggle:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Search Results Page */
.search-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 1rem;
}

.search-filters {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.filter-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-content .form-check {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.filter-content .form-check-label {
    flex: 1;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.filter-content .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
}

/* Ajuste para telas menores */
@media (max-width: 991px) {
    .search-filters {
        margin-bottom: 2rem;
    }
}

/* Estilos da página de busca */
.search-filters {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.filter-content {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.filter-content::-webkit-scrollbar {
    width: 6px;
}

.filter-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.filter-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.filter-content::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.form-check {
    margin-bottom: 0.5rem;
}

.form-check-input {
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.badge {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Overlay de carregamento */
#loadingOverlay {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
}

/* Cards de produto */
.card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.card-footer {
    padding: 1rem;
}

/* Paginação */
.pagination {
    margin-bottom: 0;
}

.page-link {
    color: #007bff;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 4px;
}

.page-link:hover {
    background-color: #f8f9fa;
    color: #0056b3;
}

.page-item.active .page-link {
    background-color: #007bff;
    color: #fff;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .search-filters {
        margin-bottom: 2rem;
    }
    
    .filter-content {
        max-height: 200px;
    }
}

@media (max-width: 767.98px) {
    .card-img-top {
        height: 180px;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-text {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Estilos para a página de busca no blog */
.search-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.search-header h1 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.search-form .input-group-lg {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.search-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: #fff;
}

.search-form .form-control:focus {
    box-shadow: none;
    background: #fff;
}

.search-form .btn {
    border: none;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-form .btn:hover {
    background: #e55a00;
    transform: translateY(-2px);
}

.filters-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.filters-sidebar h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.filter-group h6 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.list-group-item {
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px !important;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    text-decoration: none;
}

.list-group-item:hover {
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.list-group-item.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags-cloud .badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tags-cloud .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.search-info {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.search-info h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.search-info .text-muted {
    font-size: 1.1rem;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-card .card-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card .card-title a:hover {
    color: var(--primary-color);
}

.blog-card .card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card .card-footer {
    background: transparent;
    border-top: 1px solid #f0f0f0;
    padding: 1rem 1.5rem;
}

.blog-card .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-card .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Estado vazio da busca */
.search-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.search-empty .display-1 {
    color: #dee2e6;
    margin-bottom: 1rem;
}

.search-empty h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.search-empty .text-muted {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Sugestões de busca */
.search-suggestions {
    margin-top: 2rem;
}

.search-suggestions h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.search-suggestions .badge {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-suggestions .badge:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 991px) {
    .filters-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .search-form .input-group-lg {
        border-radius: 12px;
    }
    
    .search-form .btn {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .search-header {
        padding: 3rem 0;
    }
    
    .search-header h1 {
        font-size: 2rem;
    }
    
    .search-form .form-control {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .search-form .btn {
        padding: 0.875rem 1.25rem;
    }
    
    .blog-card .card-body {
        padding: 1rem;
    }
    
    .blog-card .card-footer {
        padding: 1rem;
    }
    
    .tags-cloud {
        justify-content: center;
    }
}

/* Estilos para a página de história dos pneus */
.history-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.history-hero::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.history-hero .hero-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.history-hero .hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.history-hero .hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.history-hero .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.history-hero .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.history-hero .feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.history-hero .feature-item span {
    font-weight: 500;
    color: var(--secondary-color);
}

.history-hero .hero-image {
    position: relative;
    z-index: 2;
}

.history-hero .hero-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.history-hero .hero-image:hover img {
    transform: scale(1.02);
}

/* Timeline Styles */
.history-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), #ff8533);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
    margin-right: 0;
    text-align: left;
}

.timeline-content {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: #fff;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: #fff;
}

.year {
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 1rem;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.timeline-content h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-image {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

/* Evolution Cards */
.evolution-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.evolution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8533);
}

.evolution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.evolution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.evolution-card:hover .evolution-icon {
    transform: scale(1.1) rotate(5deg);
}

.evolution-icon i {
    font-size: 2rem;
    color: #fff;
}

.evolution-card h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.evolution-timeline {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.evolution-timeline .year {
    background: var(--primary-color);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    position: static;
    transform: none;
    box-shadow: none;
}

.evolution-timeline .description {
    color: #666;
    font-size: 0.9rem;
}

.evolution-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.evolution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.evolution-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.evolution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Innovation Section */
.innovation-content h2 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.innovation-content .lead {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.innovation-list {
    margin-top: 2rem;
}

.innovation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.innovation-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.innovation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.innovation-item:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.innovation-text h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.innovation-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.innovation-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.innovation-image:hover img {
    transform: scale(1.02);
}

/* Impact Cards */
.impact-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05), rgba(255, 133, 51, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.impact-card:hover .impact-icon {
    transform: scale(1.1) rotate(5deg);
}

.impact-icon i {
    font-size: 2rem;
    color: #fff;
}

.impact-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.impact-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Future Section */
.future-content h2 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.future-content .lead {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.future-trends {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.trend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trend-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.trend-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.trend-item span {
    color: var(--secondary-color);
    font-weight: 500;
}

.future-content p {
    color: #666;
    line-height: 1.6;
}

.future-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.future-image:hover img {
    transform: scale(1.02);
}

/* Responsividade */
@media (max-width: 991px) {
    .history-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .history-hero .hero-features {
        justify-content: center;
    }
    
    .history-timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -30px;
        border-right-color: #fff;
        border-left-color: transparent;
    }
    
    .year {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .future-trends {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .history-hero .hero-title {
        font-size: 2rem;
    }
    
    .history-hero .hero-text {
        font-size: 1rem;
    }
    
    .history-hero .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .evolution-card {
        padding: 1.5rem;
    }
    
    .innovation-item {
        flex-direction: column;
        text-align: center;
    }
    
    .impact-card {
        padding: 1.5rem;
    }
    
    .future-content h2 {
        font-size: 1.8rem;
    }
}

/* Estilos para o seletor de unidades */
#unidadeSelect {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    background-color: #fff;
    transition: all 0.3s ease;
}

#unidadeSelect:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
    outline: none;
}

#unidadeSelect:hover {
    border-color: #e55a00;
}

.location-info .form-label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Animação suave para troca de mapa */
.map-container iframe {
    transition: opacity 0.3s ease;
}

.map-container iframe.loading {
    opacity: 0.6;
}

/* Estilos para melhorar espaçamento no header de contato */
.header-contact .contact-icon {
    margin-right: 1rem;
    min-width: 20px;
    text-align: center;
}

.header-contact .contact-icon i {
    font-size: 0.9rem;
}

.header-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.header-contact .contact-item {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.header-contact .contact-item:hover {
    background-color: rgba(255, 102, 0, 0.1);
    transform: translateY(-2px);
}

.header-contact .contact-item:hover .contact-icon i {
    transform: scale(1.1);
}

/* Responsividade para o header de contato */
@media (max-width: 1200px) {
    .header-contact .contact-group {
        gap: 1rem;
    }
    
    .header-contact .contact-item {
        padding: 0.6rem 1rem;
    }
    
    .header-contact .contact-icon {
        margin-right: 0.8rem;
    }
}

@media (max-width: 991px) {
    .header-contact .contact-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-contact .contact-item {
        padding: 0.5rem 0.8rem;
    }
    
    .header-contact .contact-icon {
        margin-right: 0.6rem;
    }
}

/* Estilos para a página de serviços */
.interactive-features .feature-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.interactive-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
    border-color: var(--primary-color);
}

.interactive-features .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.interactive-features .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.interactive-features .feature-icon i {
    font-size: 2rem;
    color: white;
}

.interactive-features .feature-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.interactive-features .feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Estilos para o mapa de cobertura */
.coverage-info h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.coverage-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.coverage-list li {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.coverage-list li:last-child {
    border-bottom: none;
}

.coverage-list li:hover {
    background-color: rgba(255, 102, 0, 0.05);
    padding-left: 1rem;
    border-radius: 8px;
}

.coverage-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    min-width: 20px;
}

.coverage-list li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-info h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-info p i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    min-width: 20px;
}

.coverage-image img {
    transition: all 0.3s ease;
}

.coverage-image:hover img {
    transform: scale(1.02);
}

/* Estilos para FAQ da página de serviços */
.faq-section .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.1);
}

.faq-section .accordion-button {
    background-color: #fff;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6600'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 1.5rem;
    background-color: #fafafa;
    color: #666;
    line-height: 1.6;
}

/* Estilos para CTA da página de serviços */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #ff8533) !important;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-light {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
}

.cta-buttons .btn-light:hover {
    background-color: transparent;
    color: #fff;
}

.cta-buttons .btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

.cta-buttons .btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Responsividade para a página de serviços */
@media (max-width: 991px) {
    .interactive-features .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .interactive-features .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .interactive-features .feature-icon i {
        font-size: 1.5rem;
    }
    
    .coverage-info {
        margin-bottom: 2rem;
    }
    
    .faq-section .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-section .accordion-body {
        padding: 1rem;
    }
}

@media (max-width: 767px) {
    .interactive-features .feature-card {
        margin-bottom: 1rem;
    }
    
    .coverage-list li {
        padding: 0.6rem 0;
    }
    
    .coverage-list li:hover {
        padding-left: 0.5rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Estilos para a seção de texto informativa sobre pneus */
.informative-text-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
}

.informative-text-section .text-content {
    max-width: 100%;
    margin: 0 auto;
}

.informative-text-section .main-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.2;
}

.informative-text-section .main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.informative-text-section .intro-text {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border-left: 5px solid var(--primary-color);
}

.informative-text-section .intro-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.informative-text-section h2 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.informative-text-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.informative-text-section h3 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

.informative-text-section h4 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
}

.informative-text-section .content-block {
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin: 1.5rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.informative-text-section .content-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.informative-text-section .content-block p:last-child {
    margin-bottom: 0;
}

.informative-text-section .highlight {
    background: linear-gradient(120deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
    color: var(--secondary-color);
}

.informative-text-section .quote {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.informative-text-section .quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

.informative-text-section .timeline {
    margin: 2rem 0;
}

.informative-text-section .timeline-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.informative-text-section .timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid #fff;
}

.informative-text-section .timeline-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.informative-text-section .material-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.informative-text-section .composition-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.informative-text-section .composition-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.informative-text-section .composition-item .percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.informative-text-section .tire-parts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.informative-text-section .part-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.informative-text-section .part-card:hover {
    transform: translateY(-5px);
}

.informative-text-section .part-card .part-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.informative-text-section .production-steps {
    margin: 2rem 0;
}

.informative-text-section .step {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.informative-text-section .step h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.informative-text-section .step-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.informative-text-section .safety-limit {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.informative-text-section .consequences-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.informative-text-section .consequences-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.informative-text-section .consequences-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.informative-text-section .maintenance-section {
    margin: 2rem 0;
}

.informative-text-section .warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.informative-text-section .warning-box .warning-title {
    font-weight: 600;
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.informative-text-section .pressure-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.informative-text-section .pressure-table th,
.informative-text-section .pressure-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.informative-text-section .pressure-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.informative-text-section .production-process {
    margin: 2rem 0;
}

.informative-text-section .tire-parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.informative-text-section .tire-part {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.informative-text-section .tire-part-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.informative-text-section .content-continuation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-color);
}

/* Responsividade para a seção informativa */
@media (max-width: 991px) {
    .informative-text-section .main-title {
        font-size: 2rem;
    }
    
    .informative-text-section .composition-chart {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .informative-text-section .tire-parts {
        grid-template-columns: 1fr;
    }
    
    .informative-text-section .tire-parts-grid {
        grid-template-columns: 1fr;
    }
    
    .informative-text-section .content-block {
        padding: 1rem 1.5rem;
    }
    
    .informative-text-section .intro-text {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .informative-text-section .main-title {
        font-size: 1.8rem;
    }
    
    .informative-text-section h2 {
        font-size: 1.5rem;
    }
    
    .informative-text-section h3 {
        font-size: 1.2rem;
    }
    
    .informative-text-section .quote {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .informative-text-section .composition-chart {
        grid-template-columns: 1fr;
    }
    
    .informative-text-section .pressure-table {
        font-size: 0.9rem;
    }
    
    .informative-text-section .pressure-table th,
    .informative-text-section .pressure-table td {
        padding: 0.75rem;
    }
}

/* Estilos para a página de tabela de medidas */
.measures-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.measures-hero::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="%23dee2e6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.measures-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.measures-hero .hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.measures-hero .hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.measures-hero .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.measures-hero .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.measures-hero .feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.measures-hero .hero-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

.measures-hero .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.search-filter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.search-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.search-wrapper h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.search-box .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-box .input-group-text {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
}

.search-box .form-control {
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.search-box .form-control:focus {
    box-shadow: none;
    outline: none;
}

.search-box .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.filter-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.filter-tag {
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.filter-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.filter-tag.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.3);
}

.measures-table-section {
    background: white;
}

.measures-table-section .section-title {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.measures-table-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.table-navigation {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid #dee2e6;
}

.table-info {
    font-weight: 600;
    color: var(--secondary-color);
}

.table-controls .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-weight: 500;
}

.measures-table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

.measures-table thead {
    background: var(--secondary-color);
}

.measures-table th {
    border: none;
    padding: 1rem;
    font-weight: 600;
    color: white;
    text-align: center;
    vertical-align: middle;
}

.measures-table th.sortable {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.measures-table th.sortable:hover {
    background: rgba(255, 255, 255, 0.1);
}

.measures-table th.sortable i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.measures-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f3f4;
}

.measures-table tbody tr:hover {
    background: rgba(255, 102, 0, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.measures-table td {
    padding: 1rem;
    text-align: center;
    vertical-align: middle;
    border: none;
}

.measures-table td strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.measures-table .badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.pagination-wrapper {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 1px solid #dee2e6;
}

.pagination-info {
    font-weight: 600;
    color: var(--secondary-color);
}

.pagination .page-link {
    border: none;
    color: var(--secondary-color);
    padding: 0.5rem 0.75rem;
    margin: 0 0.2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.3);
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background: transparent;
    cursor: not-allowed;
}

.info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.info-section h2 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.info-card h4 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.info-card p {
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 991px) {
    .measures-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .measures-hero .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-wrapper {
        padding: 1.5rem;
    }
    
    .filter-tags {
        flex-direction: column;
        align-items: stretch;
    }
    
    .measures-table {
        font-size: 0.9rem;
    }
    
    .measures-table th,
    .measures-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .table-navigation .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .table-controls {
        text-align: center !important;
    }
}

@media (max-width: 767px) {
    .measures-hero {
        padding: 60px 0 40px;
    }
    
    .measures-hero .hero-title {
        font-size: 2rem;
    }
    
    .measures-hero .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .search-box .input-group {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .search-box .input-group-text {
        border-radius: 10px 10px 0 0;
    }
    
    .search-box .form-control {
        border-radius: 0;
    }
    
    .search-box .btn {
        border-radius: 0 0 10px 10px;
    }
    
    .filter-tags {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-tag {
        text-align: center;
    }
    
    .measures-table {
        font-size: 0.8rem;
    }
    
    .measures-table th,
    .measures-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .measures-table .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Estilos para botão de exportação */
#exportBtn {
    transition: all 0.3s ease;
    border-radius: 25px;
    font-weight: 600;
}

#exportBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

#exportBtn i {
    margin-right: 0.5rem;
}

/* Estilos para notificações */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease;
}

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

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border-left: 4px solid #ffc107;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Melhorias na responsividade do botão de exportação */
@media (max-width: 767px) {
    #exportBtn {
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .filter-tags {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-label {
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

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

/* Pop-up Modal Styles */
.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: transparent;
}

.modal-body {
    padding: 0;
    position: relative;
}

.modal-body img {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: block;
}

.modal-body img:hover {
    transform: scale(1.02);
}

.modal-body .btn-close {
    filter: none;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-body .btn-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.modal-body .btn-close::before {
    content: '×';
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

/* Animação de entrada do modal */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Responsividade do modal */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body .btn-close {
        width: 28px;
        height: 28px;
        top: 8px;
        right: 8px;
    }
    
    .modal-body .btn-close::before {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-body .btn-close {
        width: 24px;
        height: 24px;
        top: 6px;
        right: 6px;
    }
    
    .modal-body .btn-close::before {
        font-size: 16px;
    }
}

/* Estilos específicos para a página de informações técnicas */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8533 100%);
    position: relative;
    overflow: hidden;
}

.hero-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1) !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color) !important;
}

.feature-card i {
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
    color: var(--primary-color) !important;
}

.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card.hover-lift {
    transition: all 0.3s ease;
}

.card.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card.hover-lift .card-body {
    transition: all 0.3s ease;
}

.card.hover-lift:hover .card-body {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.card.hover-lift img {
    transition: all 0.3s ease;
}

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

.nav-tabs .nav-link {
    border: none;
    border-radius: 8px 8px 0 0;
    margin-right: 5px;
    padding: 12px 20px;
    font-weight: 500;
    color: #666;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.tab-content {
    background: white;
    border-radius: 0 0 8px 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tab-content ul {
    margin: 0;
    padding: 0;
}

.tab-content li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    list-style: none;
}

.tab-content li:last-child {
    border-bottom: none;
}

.tab-content li:hover {
    background: rgba(255, 102, 0, 0.05);
    padding-left: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsividade para a página de informações */
@media (max-width: 991px) {
    .hero-section .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .nav-tabs {
        flex-wrap: wrap;
    }
    
    .nav-tabs .nav-link {
        margin-bottom: 5px;
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

@media (max-width: 767px) {
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-section .display-1 {
        font-size: 3rem;
    }
    
    .card.hover-lift:hover {
        transform: translateY(-5px);
    }
    
    .nav-tabs .nav-link {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .tab-content {
        padding: 15px;
    }
    
    .tab-content li {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section .display-4 {
        font-size: 1.8rem;
    }
    
    .hero-section .display-1 {
        font-size: 2.5rem;
    }
    
    .nav-tabs {
        justify-content: center;
    }
    
    .nav-tabs .nav-link {
        font-size: 0.75rem;
        padding: 6px 10px;
        margin: 2px;
    }
}

/* Estilos para a seção de informações de contato */
.contact-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-info-section h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: rgba(255, 102, 0, 0.05);
    padding-left: 10px;
    border-radius: 8px;
}

.contact-item i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.contact-item a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ff8533;
    text-decoration: underline !important;
}

.contact-info-section .alert {
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.contact-info-section .alert i {
    color: #17a2b8;
}

/* Responsividade para a seção de contato */
@media (max-width: 767px) {
    .contact-info-section {
        padding: 20px;
    }
    
    .contact-item {
        padding: 10px 0;
    }
    
    .contact-item i {
        font-size: 1rem;
        width: 20px;
    }
}

/* Estilos específicos para a página info-seo.php */
.hero-features .badge {
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.hero-features .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.subtitle-section h2 {
    color: #6c757d;
    font-weight: 400;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.blog-post .content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-post .content h2,
.blog-post .content h3,
.blog-post .content h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post .content p {
    margin-bottom: 1.5rem;
}

.blog-post .content ul,
.blog-post .content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post .content li {
    margin-bottom: 0.5rem;
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1) !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color) !important;
}

.service-card i {
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
    color: var(--primary-color) !important;
}

.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cta-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cta-buttons .btn {
    transition: all 0.3s ease;
    font-weight: 500;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-buttons .btn-success {
    background: #28a745;
    border-color: #28a745;
}

.cta-buttons .btn-success:hover {
    background: #218838;
    border-color: #1e7e34;
}

.featured-image img {
    transition: all 0.3s ease;
}

.featured-image:hover img {
    transform: scale(1.02);
}

/* Responsividade para info-seo.php */
@media (max-width: 991px) {
    .hero-features .badge {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .blog-post .content {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .hero-features {
        text-align: center;
    }
    
    .hero-features .badge {
        display: inline-block;
        margin: 5px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .cta-buttons .btn:last-child {
        margin-top: 1rem;
    }
}

/* Estilos para as novas seções de benefícios */

/* Custo/Benefício Section */
.cost-benefit-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.question-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.question-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.question-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.question-icon i {
    font-size: 2rem;
    color: #fff;
}

.question-card:hover .question-icon {
    transform: scale(1.1);
}

.question-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0;
}

.info-box {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
}

.result-highlight {
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Fatores de Desgaste Section */
.wear-factors-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.factor-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.factor-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.factor-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.factor-card:hover .factor-icon {
    transform: scale(1.1);
}

.factor-card h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.factor-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warning-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.warning-content h5 {
    color: #856404;
    margin-bottom: 0;
    font-weight: 600;
}

/* Garantia Section */
.warranty-section {
    background: #fff;
}

.warranty-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.warranty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.warranty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.warranty-icon i {
    font-size: 2rem;
    color: #fff;
}

.warranty-card:hover .warranty-icon {
    transform: scale(1.1);
}

.warranty-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.warranty-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Assistência Técnica Section */
.technical-support-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.support-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.support-icon i {
    font-size: 2rem;
    color: #fff;
}

.support-card:hover .support-icon {
    transform: scale(1.1);
}

.support-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.support-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Serviço Gratuito Section */
.free-service-section {
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    color: #fff;
}

.free-service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.free-service-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.free-service-icon i {
    font-size: 3rem;
    color: #fff;
}

.free-service-card:hover .free-service-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.free-service-card h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.free-service-card .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.free-service-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.benefit-item i {
    font-size: 1.2rem;
    color: #fff;
}

.benefit-item span {
    color: #fff;
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 991px) {
    .question-card,
    .factor-card,
    .warranty-card,
    .support-card {
        margin-bottom: 1.5rem;
    }
    
    .free-service-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .question-card,
    .factor-card,
    .warranty-card,
    .support-card {
        padding: 1.5rem;
    }
    
    .free-service-card {
        padding: 2rem;
    }
    
    .free-service-icon {
        width: 80px;
        height: 80px;
    }
    
    .free-service-icon i {
        font-size: 2.5rem;
    }
    
    .benefit-item {
        padding: 0.6rem 1rem;
    }
    
    .warning-box {
        padding: 1.5rem;
    }
    
    .warning-icon {
        width: 50px;
        height: 50px;
    }
    
    .warning-icon i {
        font-size: 1.2rem;
    }
}

/* Estilos para as novas seções de reciclagem */

/* Ciclo de Vida Section */
.lifecycle-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lifecycle-content {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.lifecycle-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.lifecycle-table-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.lifecycle-table {
    margin-bottom: 0;
}

.lifecycle-table th {
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    color: #fff;
    border: none;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

.lifecycle-table td {
    padding: 1rem;
    border: 1px solid #e9ecef;
    vertical-align: top;
}

.lifecycle-table td:first-child {
    background: rgba(255, 102, 0, 0.1);
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    width: 200px;
}

.lifecycle-table tr:hover {
    background: rgba(255, 102, 0, 0.05);
}

.lifecycle-conclusion {
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.lifecycle-conclusion .lead {
    color: #fff;
    margin-bottom: 0;
}

/* A Flexityre Section */
.flexityre-commitment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.commitment-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.commitment-icon i {
    font-size: 2rem;
    color: #fff;
}

.commitment-card:hover .commitment-icon {
    transform: scale(1.1);
}

.commitment-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.commitment-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.commitment-highlight {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.highlight-content h5 {
    color: #856404;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Processo Detalhado Section */
.detailed-process-section {
    background: #fff;
}

.process-detail-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.process-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.process-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.process-detail-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.process-detail-card:hover .process-detail-icon {
    transform: scale(1.1);
}

.process-detail-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.process-detail-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Importância da Reciclagem Section */
.importance-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.importance-intro .alert {
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
    padding: 1.5rem;
}

.importance-intro .alert i {
    font-size: 1.5rem;
    color: #ffc107;
}

.importance-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.importance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.importance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.importance-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.importance-card:hover .importance-icon {
    transform: scale(1.1);
}

.importance-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.importance-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.importance-conclusion {
    margin-top: 3rem;
}

.conclusion-box {
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.2);
}

.conclusion-box h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.conclusion-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsividade para as novas seções */
@media (max-width: 991px) {
    .lifecycle-content,
    .lifecycle-table-wrapper {
        padding: 1.5rem;
    }
    
    .lifecycle-table td:first-child {
        width: auto;
    }
    
    .commitment-card,
    .process-detail-card,
    .importance-card {
        margin-bottom: 1.5rem;
    }
    
    .conclusion-box {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .lifecycle-content,
    .lifecycle-table-wrapper {
        padding: 1rem;
    }
    
    .lifecycle-table th,
    .lifecycle-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .lifecycle-table td:first-child {
        font-size: 0.85rem;
    }
    
    .commitment-card,
    .process-detail-card,
    .importance-card {
        padding: 1.5rem;
    }
    
    .commitment-icon,
    .process-detail-icon,
    .importance-icon {
        width: 60px;
        height: 60px;
    }
    
    .commitment-icon i,
    .process-detail-icon i,
    .importance-icon i {
        font-size: 1.5rem;
    }
    
    .conclusion-box {
        padding: 1.5rem;
    }
    
    .conclusion-box h5 {
        font-size: 1.1rem;
    }
}

/* Estilos para o CAPTCHA */
.captcha-container {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 2px solid #dee2e6;
    min-width: 200px;
}

.captcha-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.captcha-refresh {
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    transform: rotate(180deg);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.captcha-input {
    flex: 1;
    min-width: 120px;
    max-width: 150px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.captcha-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

.captcha-container .form-text {
    margin-top: 0.75rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.captcha-container .form-text i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Estilos para erro do CAPTCHA */
#captcha-error {
    margin-top: 0.5rem;
    color: #dc3545;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#captcha-error i {
    color: #dc3545;
}

/* Responsividade para CAPTCHA */
@media (max-width: 768px) {
    .captcha-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-question {
        justify-content: space-between;
        min-width: auto;
    }
    
    .captcha-input {
        max-width: none;
        width: 100%;
    }
    
    .captcha-container {
        padding: 1rem;
    }
}

/* Animação para refresh do CAPTCHA */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.captcha-refresh:active {
    animation: rotate 0.5s ease-in-out;
}

/* Estilo para CAPTCHA correto */
.captcha-input.is-valid {
    border-color: #28a745;
    background-color: #f8fff9;
}

/* Estilo para CAPTCHA incorreto */
.captcha-input.is-invalid {
    border-color: #dc3545;
    background-color: #fff8f8;
}
@media only screen and (max-width: 767px) {
    .breadcrumb-wrapper {
      position: relative;
      z-index: 1;
      margin-top: 0px;
      border-bottom: 1px solid #eee;
      background-color: #f8f9fa;
    }
  }

/* Estilos específicos para o dropdown horizontal de categorias */
.dropdown-menu-horizontal {
    width: 90vw !important;
    max-width: 1200px !important;
    min-width: 800px !important;
    padding: 1.5rem !important;
    margin-top: 0.5rem !important;
    border: none !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%) !important;
    z-index: 1050 !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    /* Manter o dropdown aberto por mais tempo */
    transition: all 0.3s ease !important;
}

.dropdown-menu-horizontal .row {
    margin: 0 !important;
}

.dropdown-menu-horizontal .col {
    padding: 0.5rem !important;
}

.dropdown-item-container {
    position: relative;
    margin-bottom: 0.5rem;
}

.dropdown-item-container:last-child {
    margin-bottom: 0;
}

/* Área de interação expandida para facilitar a navegação */
.dropdown-item-container::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: transparent;
    z-index: -1;
}

.dropdown-item-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 80px;
    height: 100%;
    background: transparent;
    z-index: 999;
}

.dropdown-menu-horizontal .dropdown-item {
    padding: 0.8rem 1rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-decoration: none !important;
    color: var(--secondary-color) !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    margin-bottom: 0.3rem !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    min-height: 45px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    /* Área de clique expandida */
    position: relative !important;
}

.dropdown-menu-horizontal .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 133, 51, 0.1) 100%) !important;
    color: var(--primary-color) !important;
    transform: translateX(3px) !important;
    border-color: rgba(255, 102, 0, 0.2) !important;
    box-shadow: 0 3px 10px rgba(255, 102, 0, 0.15) !important;
}

.dropdown-menu-horizontal .dropdown-item .item-content {
    display: flex !important;
    align-items: center !important;
    flex: 1 !important;
    min-width: 0 !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}

.dropdown-menu-horizontal .dropdown-item .item-content i {
    margin-right: 0.5rem !important;
    font-size: 0.8rem !important;
    color: var(--primary-color) !important;
    min-width: 16px !important;
    text-align: center !important;
}

.dropdown-menu-horizontal .dropdown-item .item-content span {
    font-weight: 500 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    line-height: 1.2 !important;
    flex: 1 !important;
    min-width: 0 !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}

.submenu-indicator {
    display: flex !important;
    align-items: center !important;
    margin-left: 0.5rem !important;
    color: var(--primary-color) !important;
    flex-shrink: 0 !important;
}

.submenu-indicator .submenu-arrow {
    font-size: 0.7rem !important;
    margin-right: 0.3rem !important;
    transition: transform 0.3s ease !important;
}

.submenu-indicator .submenu-count {
    background: var(--primary-color) !important;
    color: #fff !important;
    font-size: 0.6rem !important;
    padding: 0.1rem 0.4rem !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    text-align: center !important;
}

.dropdown-item:hover .submenu-arrow {
    transform: translateX(2px) !important;
}

/* Submenu */
.submenu {
    position: absolute !important;
    left: 100% !important;
    top: 0 !important;
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    padding: 0.8rem !important;
    min-width: 200px !important;
    max-width: 250px !important;
    z-index: 1000 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-10px) !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    /* Delay para manter o submenu aberto */
    transition-delay: 0s !important;
}

.dropdown-item-container:hover .submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    transition-delay: 0.1s !important;
}

/* Área de interação expandida para o submenu */
.dropdown-item-container {
    position: relative;
    margin-bottom: 0.5rem;
}

.dropdown-item-container:last-child {
    margin-bottom: 0;
}

/* Adicionar área de interação invisível para manter o submenu aberto */
.dropdown-item-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 50px;
    height: 100%;
    background: transparent;
    z-index: 999;
}

/* Manter o submenu aberto quando o mouse estiver sobre ele */
.submenu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

/* Melhorar a área de clique dos itens do submenu */
.submenu-item {
    display: flex !important;
    align-items: center !important;
    padding: 0.8rem 1rem !important;
    color: var(--secondary-color) !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    margin-bottom: 0.3rem !important;
    min-height: 40px !important;
    position: relative !important;
    /* Área de clique expandida */
    cursor: pointer !important;
}

.submenu-item:last-child {
    margin-bottom: 0 !important;
}

.submenu-item:hover {
    background: rgba(255, 102, 0, 0.1) !important;
    color: var(--primary-color) !important;
    transform: translateX(3px) !important;
}

/* Área de clique expandida para cada item do submenu */
.submenu-item::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: transparent;
    z-index: -1;
}

.submenu-item i {
    margin-right: 0.5rem !important;
    font-size: 0.7rem !important;
    color: var(--primary-color) !important;
    min-width: 14px !important;
}

.submenu-item span {
    white-space: normal !important;
    word-wrap: break-word !important;
    line-height: 1.2 !important;
}

/* Responsividade para o dropdown */
@media (max-width: 1200px) {
    .dropdown-menu-horizontal {
        width: 95vw !important;
        max-width: 1000px !important;
        min-width: 700px !important;
        padding: 1.2rem !important;
    }
    
    .dropdown-menu-horizontal .dropdown-item {
        padding: 0.7rem 0.8rem !important;
        font-size: 0.85rem !important;
    }
    
    .submenu {
        min-width: 180px !important;
        max-width: 220px !important;
    }
}

@media (max-width: 991px) {
    .dropdown-menu-horizontal {
        width: 98vw !important;
        max-width: 800px !important;
        min-width: 600px !important;
        padding: 1rem !important;
    }
    
    .dropdown-menu-horizontal .col {
        padding: 0.3rem !important;
    }
    
    .dropdown-menu-horizontal .dropdown-item {
        padding: 0.6rem 0.7rem !important;
        font-size: 0.8rem !important;
        min-height: 40px !important;
    }
    
    .dropdown-menu-horizontal .dropdown-item .item-content i {
        font-size: 0.7rem !important;
        margin-right: 0.4rem !important;
    }
    
    .submenu {
        min-width: 160px !important;
        max-width: 200px !important;
        padding: 0.6rem !important;
    }
    
    .submenu-item {
        padding: 0.5rem 0.6rem !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 768px) {
    .dropdown-menu-horizontal {
        width: 100vw !important;
        max-width: none !important;
        min-width: auto !important;
        padding: 0.8rem !important;
        margin-top: 0.3rem !important;
        border-radius: 10px !important;
        left: 0 !important;
        transform: none !important;
    }
    
    .dropdown-menu-horizontal .row {
        flex-direction: column !important;
    }
    
    .dropdown-menu-horizontal .col {
        padding: 0.2rem !important;
        width: 100% !important;
    }
    
    .dropdown-menu-horizontal .dropdown-item {
        padding: 0.8rem 1rem !important;
        font-size: 0.9rem !important;
        min-height: 45px !important;
        margin-bottom: 0.2rem !important;
    }
    
    .dropdown-menu-horizontal .dropdown-item .item-content i {
        font-size: 0.8rem !important;
        margin-right: 0.5rem !important;
    }
    
    .submenu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(255, 102, 0, 0.05) !important;
        margin-top: 0.5rem !important;
        margin-left: 1rem !important;
        padding: 0.5rem !important;
        border-radius: 6px !important;
        border-left: 3px solid var(--primary-color) !important;
        min-width: auto !important;
        max-width: none !important;
    }
    
    .submenu-item {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.85rem !important;
        margin-bottom: 0.1rem !important;
    }
    
    .submenu-indicator {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .dropdown-menu-horizontal {
        padding: 0.6rem !important;
    }
    
    .dropdown-menu-horizontal .dropdown-item {
        padding: 0.7rem 0.8rem !important;
        font-size: 0.85rem !important;
        min-height: 40px !important;
    }
    
    .dropdown-menu-horizontal .dropdown-item .item-content i {
        font-size: 0.75rem !important;
        margin-right: 0.4rem !important;
    }
    
    .submenu {
        margin-left: 0.8rem !important;
        padding: 0.4rem !important;
    }
    
    .submenu-item {
        padding: 0.3rem 0.5rem !important;
        font-size: 0.8rem !important;
    }
}

/* Área adicional para o submenu */
.submenu::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: transparent;
    z-index: -1;
}

/* Estado ativo do dropdown toggle */
.nav-link.dropdown-toggle.active {
    background: rgba(255, 102, 0, 0.1) !important;
    color: var(--primary-color) !important;
    border-radius: 6px !important;
}

.nav-link.dropdown-toggle.active::after {
    transform: rotate(180deg) !important;
}

/* Dropdown sempre visível quando aberto */
.dropdown-menu-horizontal.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Melhorar visibilidade dos submenus quando dropdown está aberto */
.dropdown-item-container:hover .submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    transition-delay: 0.1s !important;
}

/* Dropdown inicialmente oculto */
.dropdown-menu-horizontal {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
}

/* Dropdown sempre visível quando aberto */
.dropdown-menu-horizontal.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}