.bg-pau-brasil {
    background-color: white !important;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    color: #1a1a1a !important;
    font-weight: 500;
    padding: 0 25px !important;
}

.nav-link:hover {
    color: #007d43 !important;
}

.btn-outline-success {
    border-color: #007d43;
    color: #007d43;
}

.btn-outline-success:hover {
    background-color: #007d43;
    border-color: #007d43;
    color: white !important;
}

.contact-info {
    background-color: #007d43;
    color: white;
    font-size: 0.9rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    color: rgba(255, 255, 255, 0.8);
}

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

.navbar-nav {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nav-item {
    display: flex;
    align-items: center;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #007d43;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section-subtitle {
    color: #007d43;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;

    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

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

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: white;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.product-icon {
    background-color: #007d43;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
    background-color: #F58634;
}

.product-icon i {
    color: white;
    font-size: 24px;
}

.services-section {
    background-color: #004d29;
    color: white;
    padding: 80px 0; 
}

.services-subtitle {
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-right: 100px;
}

.services-subtitle:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 80px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.services-title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.services-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-card {
    padding: 2rem 0;
    position: relative;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.service-icon {
    color: #8DC63F;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-arrow {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(10px);
}

.btn-saiba-mais {
    background-color: #F58634;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-top: 3rem;
}

.btn-saiba-mais:hover {
    background-color: #e67a2e;
    color: white;
}

.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-subtitle {
    color: #007d43;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-right: 100px;
}

.about-subtitle:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 80px;
    height: 1px;
    background-color: rgba(0, 125, 67, 0.3);
}

.about-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-image-container {
    position: relative;
    margin-right: 2rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: transparent;
    padding: 0;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 60px;
    bottom: 60px;
    width: 40px;
    background-color: #007d43;
    border-radius: 0 20px 20px 0;
    z-index: 1;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
}

.about-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #007d43;
    color: white;
    padding: 2rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 3;
}

.about-quote p {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

.mission-vision {
    margin-top: 2rem;
}

.mission-vision .row {
    margin-top: 2rem;
}

.mission-vision-item {
    margin-bottom: 2rem;
}

.mission-vision-icon {
    color: #F58634;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.mission-vision-title {
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-vision-text {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.btn-saiba-mais-white {
    background-color: #F58634;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin-top: 2rem;
    font-weight: 500;
}

.btn-saiba-mais-white:hover {
    background-color: #e67a2e;
    color: white;
}

.values-section {
    padding: 80px 0;
    background-color: #fff;
}

.values-subtitle {
    color: #007d43;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-right: 100px;
}

.values-subtitle:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 80px;
    height: 1px;
    background-color: rgba(0, 125, 67, 0.3);
}

.values-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.values-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 4rem; 
}

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

.value-item {
    text-align: center;
    margin-bottom: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    border: 2px solid #007d43;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #007d43;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.value-icon:hover {
    background-color: #007d43;
    color: white;
    transform: translateY(-5px);
}

.value-name {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.location-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.location-subtitle {
    color: #007d43;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.location-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.location-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.location-type {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.location-icon {
    width: 12px;
    height: 12px;
    background-color: #007d43;
    border-radius: 50%;
    margin-right: 10px;
}

.location-type-text {
    color: #007d43;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-name {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1rem;
}

.location-address {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-ver-mapa {
    background-color: transparent;
    color: #007d43;
    border: 2px solid #007d43;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-ver-mapa:hover {
    background-color: #007d43;
    color: white;
}

.map-container {
    background-color: #e9ecef;
    border-radius: 15px;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #e9ecef 25%, transparent 25%), 
                linear-gradient(-45deg, #e9ecef 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #e9ecef 75%), 
                linear-gradient(-45deg, transparent 75%, #e9ecef 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    color: #6c757d;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
        margin-top: 2rem;
    }
}

footer {
    background-color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    margin-bottom: 3rem;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background-color: #007d43;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #006137;
    transform: translateY(-2px);
    color: white;
}

.footer-section h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #007d43;
}

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

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

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007d43;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background-color: #e9ecef;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background-color: #007d43;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.footer-contact-info h5 {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

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

.footer-hours {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.footer-location h5 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-location p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-fale-conosco {
    background-color: #F58634;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-fale-conosco:hover {
    background-color: #e67a2e;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

.footer-credit {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-credit img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Banner Swiper Styles */
.banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-swiper {
    position: relative;
    width: 100%;
    height: auto;
}

.banner-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: auto;
}

.banner-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Pagination */
.banner-swiper .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.banner-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.banner-swiper .swiper-pagination-bullet-active {
    background: #007d43;
    transform: scale(1.2);
}

/* Navigation Buttons */
.banner-button-prev,
.banner-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 125, 67, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.banner-button-prev:hover,
.banner-button-next:hover {
    background: rgba(0, 125, 67, 1);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.banner-button-prev {
    left: 20px;
}

.banner-button-next {
    right: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-button-prev,
    .banner-button-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .banner-button-prev {
        left: 10px;
    }
    
    .banner-button-next {
        right: 10px;
    }
    
    .banner-swiper .swiper-pagination {
        bottom: 10px;
    }
    
    .banner-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}

/* Products Swiper Styles */
.products-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 20px;
}

.products-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.products-swiper .swiper-slide {
    height: auto;
    width: auto;
}

/* Navigation Buttons for Products - Hidden on large screens */
.products-button-prev,
.products-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 125, 67, 0.9);
    border-radius: 50%;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.products-button-prev:hover,
.products-button-next:hover {
    background: rgba(0, 125, 67, 1);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.products-button-prev {
    left: -10px;
}

.products-button-next {
    right: -10px;
}

/* Products Pagination - Hidden by default */
.products-pagination {
    display: none !important;
    margin-top: 30px;
    text-align: center;
}

.products-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 125, 67, 0.3);
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.products-pagination .swiper-pagination-bullet-active {
    background: #007d43;
    transform: scale(1.3);
}

/* Responsive behavior */
@media (max-width: 992px) {
    /* Show navigation buttons on tablets and smaller */
    .products-button-prev,
    .products-button-next {
        display: flex;
    }
    
    .products-swiper {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    /* Show pagination on mobile */
    .products-pagination {
        display: block !important;
    }
    
    .products-button-prev,
    .products-button-next {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .products-button-prev {
        left: 5px;
    }
    
    .products-button-next {
        right: 5px;
    }
    
    .products-swiper {
        padding: 0 30px;
    }
} 