/* 
   VR Hair - Estilo Principal
   Paleta: Preto e Dourado para transmitir luxo e elegÃ¢ncia
*/



:root {
  --primary-color: #001B61;    /* Verde */
  --secondary-color: #F0BE3D;  /* Bege/Marrom claro */
  --accent-color: #051130;     /* Marrom escuro */
  --light-color: #EEE9E3;      /* Bege claro */
  --lighter-color: #F5F4F2;    /* Cinza claro */
  --medium-color: #C7B7AA;     /* Bege médio */
  --dark-color: #071741;       /* Marrom escuro para textos */
  --gray-color: #707070;       /* Mantido para alguns elementos */
  --font-primary: 'Poppins', Arial, Helvetica, sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-family-main: 'Poppins', Arial, Helvetica, sans-serif;
}


i.fab.fa-instagram {
    margin-top: 10px;
}

.register-content h4 {
    font-size: 1.2rem;
}
.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 30px;
}

.checkout-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
}

.step-active .step-number {
    background-color: var(--primary-color);
}

.step-completed .step-number {
    background-color: var(--success-color);
}

.step-text {
    font-size: 14px;
    color: var(--light-text);
}

.step-active .step-text {
    color: var(--primary-color);
    font-weight: bold;
}

.checkout-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.checkout-form {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

.checkout-summary {
    width: 380px;
    padding: 0 15px;
}

.form-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 20px;
}

.section-title {
    /* font-size: 18px; */
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.frete-option {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.frete-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.frete-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(90, 49, 244, 0.05);
}

.frete-radio {
    margin-right: 15px;
}

.frete-details {
    flex: 1;
}

.frete-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.frete-prazo {
    font-size: 14px;
    color: var(--light-text);
}

.frete-price {
    font-weight: 700;
    color: var(--primary-color);
}

.frete-price.free {
    color: var(--success-color);
}

.btn {
    height: 45px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    padding: 0 25px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.btn:hover {
  

      background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

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

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

.btn-outline-secondary {
    color: var(--light-text);
    border-color: var(--border-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
}

.btn-block {
    width: 100%;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.summary-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 15px;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.item-price {
    color: var(--light-text);
    font-size: 14px;
}

.item-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.checkout-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--light-text);
}

.footer-links {
    margin-top: 10px;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 10px;
}

.footer-link:hover {
    text-decoration: underline;
}

.cupom-form {
    display: flex;
    margin-bottom: 15px;
}

.cupom-input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.cupom-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: white;
    color: var(--primary-color);
    border-color: var(--border-color);
    font-weight: 600;
}

.cupom-button:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.brinde-item {
    background-color: rgba(40, 167, 69, 0.05);
    border: 1px solid var(--success-color);
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.brinde-icon {
    width: 24px;
    height: 24px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 12px;
}

.brinde-details {
    flex: 1;
}

.brinde-title {
    font-weight: 600;
    color: var(--success-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 14px;
}

.brinde-description {
    font-size: 14px;
    color: var(--text-color);
}

.brinde-price {
    text-decoration: line-through;
    color: var(--light-text);
    font-size: 14px;
}

.login-form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.login-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.login-message {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(90, 49, 244, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsividade */
@media (max-width: 768px) {
    .checkout-content {
        flex-direction: column;
    }
    
    .checkout-summary {
        width: 100%;
        order: -1;
        margin-bottom: 20px;
    }
    
    .step-text {
        display: none;
    }
}


/* Estilos Gerais */
body, html {
    font-family: var(--font-family-main) !important;
    color: var(--dark-color);
    background-color: #FFFFFF;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-family: inherit;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--primary-color);
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

section {
    padding: 2.5rem 0;
}

.btn {
    border-radius: 0;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}


.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--primary-color);
}

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

/* CabeÃ§alho */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-top: 40px;
    transition: margin-top 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none;
    font-family: var(--font-family-main) !important;
}

header.header-shadow {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
}

.navbar-brand {
    padding: 0;
}

.logo {
    height: 50px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.btn-salao {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    border-radius: 0;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
}

.navbar-icons {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
}
.card-header h2 button {
    color: #fff !important;
    text-decoration: none;
}

.icon-link {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Banner Principal */
.hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/hero-banner.jpg);
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    padding: 4rem 0 0 0;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 1.6rem;
    font-weight: 300;
}

/* Produtos em Destaque */
.featured-products {
    background-color: var(--light-color);
}

.product-card {
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    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 {
    height: 250px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    height: 40px;
    overflow: hidden;
}

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

.btn-add-cart {
    width: 100%;
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem;
    transition: background-color 0.3s ease;
}

.btn-add-cart:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Cursos de Treinamento */
.training-courses {
    background-color: #FFFFFF;
}

.course-card {
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.course-info {
    padding: 1.5rem;
}

.course-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.course-details {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.course-details span {
    display: flex;
    align-items: center;
}

.course-details i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.course-urgency {
    background-color: #FFF3CD;
    color: #856404;
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.course-urgency i {
    margin-right: 0.5rem;
}

/* Depoimentos */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-card {
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-family: var(--font-primary);
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--secondary-color);
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--gray-color);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Parceria com SalÃµes */
.salon-partnership {
    background-color: #FFFFFF;
}

.salon-partnership h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.salon-partnership p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* RodapÃ© */
footer {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    font-family: var(--font-family-main) !important;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.social-icons {
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

footer h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

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

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

.footer-links a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-info {
    list-style: none;
    padding-left: 0;
}

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

.contact-info i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.copyright {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .navbar-icons {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-banner {
        padding: 5rem 0;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .salon-partnership h2 {
        font-size: 2rem;
    }
    
    footer {
        text-align: center;
    }
    
    footer h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .social-icons {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* ===== CSS EXTRAÍDO DO HEADER.PHP ===== */

/* Estilos para links de produtos e blog */
.product-info h3 a {
    color: var(--primary-color) !important;
}

.blog-title a {
    color: var(--primary-color) !important;
    text-decoration: none;
}

/* Efeito de fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(20px) !important;
    animation: fadeInEffect 1.2s ease-out forwards !important;
}

@keyframes fadeInEffect {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo para usuário logado */
.user-logged-in {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 12px !important;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Overlay de pesquisa */
.overlay-pesquisa {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.caixa-busca {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    text-align: center;
}

.input-busca {
    width: 100%;
    padding: 20px;
    font-size: 36px;
    background: transparent;
    border: none;
    border-bottom: 2px solid white;
    color: white;
    text-align: center;
    outline: none;
}

.fechar-btn {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* Estilos para o carrinho lateral */
.side-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.side-cart.open {
    transform: translateX(0);
}

.side-cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
}

.side-cart-header h3 {
    margin: 0;
    font-family: var(--font-family-main) !important;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.side-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
}

.cart-item-price {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.cart-item-size {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

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

.cart-item-quantity button {
    width: 25px;
    height: 25px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
}

.cart-item-quantity button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-item-quantity span {
    margin: 0 10px;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 14px;
}

.remove-item:hover {
    color: #ff6b6b;
}

.cart-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cart-subtotal,
.cart-shipping,
.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-total {
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.side-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px;
    text-align: center;
    color: #999;
}

.side-cart-empty i {
    margin-bottom: 20px;
    color: #ddd;
}

.side-cart-empty p {
    margin-bottom: 10px;
    font-size: 18px;
}

.empty-cart-message {
    font-size: 14px;
    color: #666;
}

.side-cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.btn-continue-shopping,
.btn-checkout {
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.btn-continue-shopping {
    background-color: #f5f5f5;
    color: #333;
}

.btn-continue-shopping:hover {
    background-color: #e5e5e5;
}

.btn-checkout {
    background-color: #ff6b6b;
    color: white;
}

.btn-checkout:hover {
    background-color: #ff5252;
}

.btn-checkout:disabled {
    background-color: #ffb8b8;
    cursor: not-allowed;
}

/* Links gerais */
a {
    color: var(--accent-color);
}

/* Overlay do carrinho */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Contador do carrinho */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #000;
    color: white;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ícone de sacola de compras */
.shopping-bag-icon {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

/* Impedir scroll quando o carrinho está aberto */
body.cart-open {
    overflow: hidden;
}

/* Notificação de adição ao carrinho */
.add-to-cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4caf50;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: slide-in 0.3s ease;
}

.notification-content {
    display: flex;
    align-items: center;
}

.notification-content i {
    margin-right: 10px;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.add-to-cart-notification.fade-out {
    animation: fade-out 0.5s ease forwards;
}

@keyframes fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Responsividade para dispositivos móveis */
@media (max-width: 576px) {
    .side-cart {
        width: 100%;
    }
}

/* Estilos adicionais para a seleção de tamanho */
.btn-size {
    padding: 8px 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-size.active {
    background-color: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.btn-size:hover {
    background-color: #e5e5e5;
}

.btn-size.active:hover {
    background-color: #ff5252;
}

/* Estilo para o nome do usuário logado */
.user-logged-in i {
    margin-right: 5px;
}

.user-logged-in .dropdown-menu {
    min-width: 200px;
    padding: 10px;
}

.user-logged-in .dropdown-item {
    padding: 8px 15px;
}

/* Estilos para o menu do usuário */
.user-menu .dropdown-item i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.user-menu .dropdown-divider {
    margin: 8px 0;
}

.card-header {
    background-color: var(--primary-color) !important;
    color: #fff;
}

.user-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #ff6b6b;
}

.user-menu .dropdown-item.active {
    background-color: #ff6b6b;
    color: white;
}

/* Seletor de quantidade refinado */
.quantity-selector.refined {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 20px;
}

.quantity-selector .btn-quantity {
    background: none;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    color: #333;
}

.quantity-selector .btn-quantity:hover {
    background-color: #f1f1f1;
}

.input-quantity {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px;
    background: transparent;
    color: #333;
}

/* Compartilhamento estilizado */
.styled-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    font-size: 20px;
    color: var(--primary-color);
}

.styled-share .share-label {
    font-weight: 600;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 20px;
}

.styled-share .share-icon {
    font-size: 26px;
    color: #6b4226;
    transition: transform 0.2s ease, color 0.2s ease;
}

.styled-share .share-icon:hover {
    transform: scale(1.2);
    color: #8b5e3c;
}

/* Posts recentes */
.recent-post-content h5 a {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    margin-bottom: 40px !important;
    float: left;
    margin-top: 20px;
}

/* Widget de busca limpo */
.search-widget-clean .search-form {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
}

.search-widget-clean .search-input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.blog-title a {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
}

.search-widget-clean .search-btn {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    color: #6b4226;
    transition: color 0.2s ease;
}

.search-widget-clean .search-btn:hover {
    color: #8b5e3c;
}

/* Campo de busca do header */
.header-search-bar {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
    background: #fff;
    border: 2px solid #ededed;
    border-radius: 30px;
    box-shadow: 0 1px 4px #0001;
    transition: box-shadow 0.3s, border-color 0.3s;
    padding: 2px 8px 2px 16px;
}

.header-search-bar:focus-within {
    border-color: #b3b3b3;
    box-shadow: 0 2px 8px #0002;
}

.header-search-bar input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    padding: 10px 0;
    transition: color 0.2s;
    text-align: left;
}

.header-search-bar input::placeholder {
    text-align: left;
    color: #888;
    opacity: 1;
}

.header-search-bar button {
    background: #ededed;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    transition: background 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.header-search-bar button:hover, .header-search-bar button:focus {
    background: #d6d6d6;
    box-shadow: 0 2px 8px #0001;
}

/* Barra Superior */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
    font-family: var(--font-family-main) !important;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.top-bar i {
    font-size: 16px;
}

/* Responsividade para a barra superior */
@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 4px;
    }
    
    .top-bar i {
        font-size: 14px;
    }
    
    header {
        margin-top: 60px; /* Mais espaço em mobile devido ao layout em coluna */
        transition: margin-top 0.3s ease;
    }
}

.cart-btn {
    display: flex;
    align-items: center;
    border: 1px solid var(--primary-color); /* Azul escuro do logo */
    border-radius: 24px;
    background: #fff;
    padding: 4px 18px 4px 12px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
    box-shadow: none;
    transition: box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
    outline: none;
}
.cart-btn:hover, .cart-btn:focus {
    box-shadow: 0 2px 8px rgba(26,35,126,0.08);
    border-color: var(--primary-color);
}
.cart-btn .shopping-bag-icon {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 22px;
    display: flex;
    align-items: center;
}
.cart-btn .cart-value {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1em;
    margin-left: 2px;
}

.autocomplete-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-top: none;
  z-index: 2000;
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin: 0;
  padding: 0;
  list-style: none;
}
.autocomplete-list li {
  padding: 10px 16px;
  cursor: pointer;
  color: #222;
  font-size: 15px;
  transition: background 0.2s;
}
.autocomplete-list li:hover {
  background: #f5f7fa;
  color: var(--primary-color);
  font-weight: 600;
}
.header-search-bar { position: relative; }
.input-busca { position: relative; z-index: 2; }

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.0); /* Remover fundo escuro */
  z-index: 3000;
  pointer-events: none;
}

.search-results-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 1.5px 8px rgba(0,0,0,0.08);
  min-width: 340px;
  max-width: 98vw;
  width: 100%;
  padding: 0;
  max-height: 380px;
  overflow-y: auto;
  margin-top: 4px;
  border: 1px solid #e0e0e0;
  pointer-events: all;
  z-index: 3002;
}

.search-results-title {
  font-size: 1em;
  font-weight: 500;
  color: #888;
  padding: 10px 18px 6px 18px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0;
}

.search-results-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-results-panel li {
  padding: 10px 18px;
  cursor: pointer;
  color: #222;
  font-size: 15px;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-results-panel li:hover {
  background: #f5f7fa;
  color: var(--primary-color);
  font-weight: 600;
}

.search-results-panel li:first-child {
  color: #6c2eb7;
  font-weight: 700;
}

@media (max-width: 600px) {
  .search-results-panel {
    min-width: 0;
    width: 98vw;
    left: 1%;
    transform: none;
  }
  .search-results-title {
    padding: 8px 10px 4px 10px;
  }
  .search-results-panel li {
    padding: 8px 10px;
  }
}

/* Garante que o painel fique sobreposto ao input */
.header-search-bar { z-index: 3001; }
.search-results-panel { z-index: 3002; }

.ver-todos-resultados {
  padding: 12px 18px;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  border-top: 1px solid #f0f0f0;
  background: #f8fafd;
  text-align: left;
  transition: background 0.18s;
}
.ver-todos-resultados:hover {
  background: #e6f0ff;
  text-decoration: underline;
}

.search-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2.5px solid #e0e0e0;
  border-top: 2.5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fa-search.search-anim {
  animation: search-move 1.1s linear infinite;
}
@keyframes search-move {
  0% { transform: translateX(0) scale(1); opacity: 1; }
  20% { transform: translateX(2px) scale(1.08); opacity: 0.85; }
  40% { transform: translateX(-2px) scale(1.08); opacity: 0.85; }
  60% { transform: translateX(2px) scale(1.08); opacity: 0.85; }
  80% { transform: translateX(-2px) scale(1.08); opacity: 0.85; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

.close-search-results {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  color: #bbb;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  padding: 0 6px;
  line-height: 1;
  transition: color 0.18s, background 0.18s;
}
.close-search-results:hover {
  background: rgba(0,0,0,0.07);
  color: var(--primary-color);
}

.main-nav {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 0;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  margin: 0 auto;
  padding: 0 0 0 0;
  min-height: 44px;
  font-size: 15px;
  font-family: var(--font-secondary);
  font-weight: 600;
  background: transparent;
  gap: 8px;
}
.main-menu > li {
  position: relative;
  margin: 0 10px;
  transition: background 0.18s, box-shadow 0.18s;
  border-radius: 6px 6px 0 0;
}
.main-menu > li:last-child {
  margin-left: auto;
}
.main-menu a {
  font-family: var(--font-family-main) !important;
  color: #565656;
  text-decoration: none;
  padding: 10px 10px 8px 10px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  border-radius: 6px 6px 0 0;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.main-menu a.active,
.main-menu a:hover {
  color: var(--primary-color);
  border-bottom: 2.5px solid var(--secondary-color);
  background: #f5f7fa;
}
.main-menu .has-dropdown:hover > a {
  color: var(--primary-color);
  background: #f5f7fa;
}
.caret {
  border: solid #888;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 4px;
  transform: rotate(45deg);
  transition: border-color 0.18s;
}
.main-menu .has-dropdown:hover .caret {
  border-color: var(--primary-color);
}
.dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-radius: 0 0 10px 10px;
  z-index: 100;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  animation: dropdown-fade 0.22s;
}
@keyframes dropdown-fade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.has-dropdown:hover .dropdown {
  display: block;
}
.dropdown li a {
  color: #222;
  padding: 10px 22px;
  font-size: 16px;
  border: none;
  border-radius: 0;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.dropdown li a:hover {
  background: #f5f7fa;
  color: var(--primary-color);
}
@media (max-width: 991px) {
  .main-menu {
    font-size: 15px;
    min-height: 38px;
    gap: 2px;
  }
  .main-menu > li {
    margin: 0 4px;
  }
  .dropdown {
    min-width: 140px;
    padding: 6px 0;
  }
  .dropdown li a {
    padding: 8px 12px;
    font-size: 15px;
  }
}

.hide-menu {
  display: none !important;
}

@media (min-width: 992px) {
  #mobile-header, .mobile-footer-bar, .whatsapp-float-btn { 
    display: none !important; 
  }
}

.mobile-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.mobile-header-icons {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 8px;
}
.mobile-offcanvas-search {
  padding: 18px 18px 10px 18px;
  border-bottom: 1px solid #f0f0f0;
  /* background: #ffffff; */
  position: sticky;
  top: 42px;
  z-index: 2;
}
.mobile-offcanvas-search input {
  width: 100%;
  font-size: 17px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 14px;
  outline: none;
  background: #fff;
  transition: border 0.18s;
}
.mobile-offcanvas-search input:focus {
  border-color: var(--primary-color);
}
.mobile-cotacao-btn {
  display: block;
  width: calc(100% - 36px);
  margin: 18px auto 18px auto;
  background: #25d366;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  padding: 14px 0;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s;
}
.mobile-cotacao-btn:hover {
  background: #1ebe57;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.mobile-menu-list li a {
  touch-action: manipulation;
  user-select: none;
}

@media (max-width: 991px) {
  header {
    display: none !important;
  }
  #mobile-header {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 4000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  }
  .mobile-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 16px;
  }
  .mobile-header-icons {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mobile-logo img {
    height: 36px;
  }
  .mobile-icon {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--primary-color);
    margin-left: 12px;
    cursor: pointer;
    padding: 6px;
  }
  /* Sidebar (menu lateral) efeito slide */
  .mobile-offcanvas {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 4200;
    display: flex;
    justify-content: flex-start;
    transition: background 0.2s;
    animation: fadeIn 0.2s;
  }
  .mobile-offcanvas-panel {
    width: 82vw;
    max-width: 420px;
    background: var(--primary-color) !important;
    color: #fff;
  }
  .mobile-offcanvas-panel.open {
    transform: translateX(0) !important;
    transition: transform 0.22s;
  }
  @keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
  }
  .mobile-menu-list {
    margin: 50px 0;
    padding: 0 0 0 0;
    list-style: none;
  }
  .mobile-menu-list li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-menu-list li:last-child {
    border-bottom: none;
  }
  .mobile-menu-list li a {
    display: block;
    color: #fff;
    font-size: 17px;
    padding: 18px 24px;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  .mobile-menu-list li a:active,
  .mobile-menu-list li a:focus,
  .mobile-menu-list li a:hover {
    background: rgba(255,255,255,0.04);
    color: var(--primary-color);
  }
  .mobile-menu-footer {
    padding: 18px 24px 12px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: transparent;
  }
  .mobile-menu-action {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: color 0.18s;
  }
  .mobile-menu-action:hover {
    color: var(--primary-color);
  }
  .mobile-cotacao-btn {
    display: block;
    width: 90%;
    margin: 18px auto 10px auto;
    background: var(--primary-color);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    padding: 14px 0;
    border-radius: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: background 0.18s, box-shadow 0.18s;
    border: none;
    letter-spacing: 0.01em;
  }
  .mobile-cotacao-btn:hover {
    background: #1ebe57;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    color: #fff;
  }
  .mobile-cotacao-btn-secundaria {
    display: block;
    width: 90%;
    margin: 18px auto 10px auto;
    background: var(--secondary-color);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    padding: 13px 0 13px 0;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    text-decoration: none;
    transition: background 0.18s, box-shadow 0.18s;
    border: none;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .mobile-cotacao-btn-secundaria i {
    font-size: 20px;
    color: #fff;
    margin-right: 4px;
  }
  .mobile-cotacao-btn-secundaria:hover {
    background: #1ebe57;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    color: #fff;
  }
  .close-mobile-menu {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #fff !important;
    font-size: 22px;
    cursor: pointer;
    z-index: 20;
    padding: 0 6px;
    line-height: 1;
    transition: color 0.18s;
    box-shadow: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .close-mobile-menu i {
    color: var(--secondary-color);
    font-size: 22px;
    z-index: 21;
  }
  .close-mobile-menu:hover,
  .close-mobile-menu:focus {
    color: var(--secondary-color) !important;
    background: none;
  }
  .mobile-search-suggestions {
    background: #fff;
    color: #323232;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    min-width: 100%;
    box-sizing: border-box;
    padding: 8px 8px 10px 8px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 20;
    margin: 0;
  }
  .mobile-search-header .search-icon.pesquisando {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }
  .mobile-search-label {
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 11px;
    color: var(--secondary-color);
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 3;
    pointer-events: none;
  }
  .close-mobile-search {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 4;
    padding: 2px 6px;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
  }
  .close-mobile-search:hover {
    background: rgba(0,0,0,0.07);
    color: var(--primary-color);
  }
  .mobile-search-header input {
    margin-top: 18px;
    padding-right: 48px;
  }
}
@media (min-width: 992px) {
  #mobile-header {
    display: none !important;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-offcanvas-panel.open {
  transform: translateX(0) !important;
  transition: transform 0.22s;
}

@media (max-width: 991px) {
  .mobile-footer-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 62px;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.07);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 5000;
    border-top: 1px solid #ececec;
    padding: 0;
  }
  .mobile-footer-icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.18s;
    padding: 6px 0 0 0;
  }
  .mobile-footer-icon span {
    font-size: 22px;
    display: block;
    margin-bottom: 2px;
    line-height: 1;
  }
  .mobile-footer-icon small {
    font-size: 11px;
    color: #888;
    margin-top: 0;
    letter-spacing: 0.01em;
  }
  .mobile-footer-icon:active,
  .mobile-footer-icon:focus,
  .mobile-footer-icon:hover {
    color: var(--primary-color);
    background: #f5f7fa;
  }
  .mobile-footer-bar .mobile-footer-icon span i {
    color: var(--primary-color);
    font-size: 24px;
    display: block;
    margin-bottom: 2px;
    line-height: 1;
    transition: color 0.18s;
  }
  .mobile-footer-bar .mobile-footer-icon:active span i,
  .mobile-footer-bar .mobile-footer-icon:focus span i,
  .mobile-footer-bar .mobile-footer-icon:hover span i {
    color: #1ebe57;
  }
}

@media (max-width: 991px) {
  .mobile-offcanvas-panel {
    width: 82vw;
    max-width: 420px;
    background: var(--primary-color) !important;
    color: #fff;
  }
  .mobile-search-suggestions {
    background: #ffffff;
    color: #323232;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    min-width: 100%;
    box-sizing: border-box;
    padding: 8px 8px 10px 8px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 20;
    margin: 0;
  }
  .mobile-search-suggestions ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-search-suggestions li {
    padding: 13px 16px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    color: #181818;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
    background: none;
    border-radius: 0;
    margin: 0;
    line-height: 1.3;
  }
  .mobile-search-suggestions li:last-child {
    border-bottom: none;
  }
  .mobile-search-suggestions li:hover {
    background: rgba(0,0,0,0.04);
    color: var(--secondary-color);
    border-radius: 0 0 8px 8px;
  }
  .mobile-search-suggestions .no-results {
    color: #888;
    padding: 12px 16px;
    text-align: center;
  }
  .mobile-search-suggestions .ver-todos-resultados {
    color: var(--secondary-color);
    font-size: 15px;
    text-align: center;
    padding: 10px 0 2px 0;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 0.15s;
    background: #fff;
    border-radius: 0 0 8px 8px;
    margin-top: 4px;
    border: 1px solid #e0e0e0;
  }
  .mobile-search-suggestions .ver-todos-resultados:hover {
    color: var(--primary-color);
    text-decoration: underline;
    background: #f5f7fa;
  }
}

@media (max-width: 991px) {
  .mobile-search-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.92);
    z-index: 4100;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    animation: fadeIn 0.2s;
    padding-top: 38px;
  }
  .mobile-search-modal .mobile-search-header {
    background: #fff;
    border-radius: 18px 18px 0 0;
    padding: 18px 18px 10px 18px;
    width: 92vw;
    max-width: 420px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 0;
  }
  .mobile-search-modal .mobile-search-header input {
    flex: 1;
    font-size: 18px;
    border: none;
    outline: none;
    background: transparent;
    padding: 8px 12px 8px 12px;
    color: #222;
    margin-top: 32px;
    padding-right: 48px;
  }
  .mobile-search-modal .mobile-search-label {
    position: absolute;
    top: 12px;
    left: 18px;
    font-size: 12px;
    color: var(--secondary-color);
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 3;
    pointer-events: none;
  }
  .mobile-search-modal .close-mobile-search {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
    position: absolute;
    right: 12px;
    top: 4px;
    z-index: 4;
    padding: 2px 6px;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
  }
  .mobile-search-modal .close-mobile-search:hover {
    background: rgba(0,0,0,0.07);
    color: var(--primary-color);
  }
  .mobile-modal-search-suggestions {
    background: #fff;
    color: #323232;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    position: relative;
    width: 92vw;
    max-width: 420px;
    margin: 0 auto 18px auto;
    min-width: 0;
    box-sizing: border-box;
    padding: 8px 10px 14px 10px;
    margin-top: 0;
    max-height: 340px;
    overflow-y: auto;
  }
  .mobile-modal-search-suggestions ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-modal-search-suggestions li {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    color: #181818;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.01em;
    background: none;
    border-radius: 0;
    margin: 0;
    line-height: 1.4;
  }
  .mobile-modal-search-suggestions li:last-child {
    border-bottom: none;
  }
  .mobile-modal-search-suggestions li:hover {
    background: rgba(0,0,0,0.04);
    color: var(--secondary-color);
    border-radius: 0 0 8px 8px;
  }
  .mobile-modal-search-suggestions .no-results {
    color: #888;
    padding: 12px 16px;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .close-offcanvas-search-suggestions {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 20px;
    cursor: pointer;
    z-index: 22;
    padding: 2px 6px;
    line-height: 1;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .close-offcanvas-search-suggestions i {
    color: var(--secondary-color);
    font-size: 20px;
    pointer-events: none;
  }
  .close-offcanvas-search-suggestions:hover,
  .close-offcanvas-search-suggestions:focus {
    color: var(--primary-color);
    background: none;
  }
  .mobile-menu-label-secundaria {
    display: block;
    position: absolute;
    top: 18px;
    left: 22px;
    font-size: 12px;
    color: var(--secondary-color);
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 21;
    pointer-events: none;
  }
}

@media (max-width: 991px) {
  .mobile-offcanvas-search {
    position: relative;
  }
  .mobile-offcanvas-search input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 10px 38px 10px 14px;
    font-size: 16px;
    color: #222;
    background: #fff;
    margin-bottom: 10px;
    box-sizing: border-box;
  }
  .mobile-offcanvas-search .search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 20px;
    z-index: 2;
    cursor: pointer;
    /* pointer-events: none; removido para permitir clique */
  }
}

@media (max-width: 991px) {
  .search-suggestions-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    margin-top: 10px;
    padding: 0;
    position: relative;
    width: 100%;
    max-width: 420px;
    min-width: 0;
    box-sizing: border-box;
    z-index: 21;
    display: flex;
    flex-direction: column;
  }
  .close-offcanvas-search-suggestions {
    position: absolute;
    /* left: 10px; */
    top: 14px;
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 20px;
    cursor: pointer;
    z-index: 22;
    padding: 2px 6px;
    line-height: 1;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .close-offcanvas-search-suggestions i {
    color: var(--secondary-color);
    font-size: 20px;
    pointer-events: none;
  }
  .close-offcanvas-search-suggestions:hover,
  .close-offcanvas-search-suggestions:focus {
    color: var(--primary-color);
    background: none;
  }
  ul.mobile-offcanvas-search-suggestions {
    list-style: none;
    margin: 0;
    padding: 18px 10px 8px 38px;
    border-radius: 0 0 14px 14px;
  }
  ul.mobile-offcanvas-search-suggestions li {
    padding: 13px 8px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    color: #181818;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
    background: none;
    border-radius: 0;
    margin: 0;
    line-height: 1.3;
  }
  ul.mobile-offcanvas-search-suggestions li:last-child {
    border-bottom: none;
  }
  ul.mobile-offcanvas-search-suggestions li:hover {
    background: rgba(0,0,0,0.04);
    color: var(--secondary-color);
    border-radius: 0 0 8px 8px;
  }
  .search-suggestions-card .ver-todos-resultados {
    color: var(--secondary-color);
    font-size: 15px;
    text-align: center;
    padding: 14px 0 10px 0;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 0.15s, background 0.15s;
    background: #f7f7f7;
    border-radius: 0 0 12px 12px;
    margin-top: 2px;
    border: none;
    box-shadow: none;
  }
  .search-suggestions-card .ver-todos-resultados:hover {
    color: var(--primary-color);
    text-decoration: underline;
    background: #f0f0f0;
  }
}

@media (max-width: 991px) {
  .search-input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin-bottom: 10px;
  }
  .search-input-group input {
    flex: 1;
    border-radius: 8px 0 0 8px;
    border: 1px solid #e0e0e0;
    padding: 10px 14px;
    font-size: 16px;
    color: #222;
    background: #fff;
    box-sizing: border-box;
    height: 40px;
    outline: none;
    transition: border 0.15s;
    margin: 0;
  }
  .search-input-group .search-icon {
    height: 40px;
    width: 44px;
    border-radius: 0 8px 8px 0;
    border: 1px solid #e0e0e0;
    border-left: none;
    background: #fff;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    padding: 0;
    outline: none;
    margin: 0;
    box-sizing: border-box;
    top: 20px;
  }
  .search-input-group .search-icon.pesquisando {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }
  .search-input-group .search-icon:hover,
  .search-input-group .search-icon:focus {
    background: #f5f7fa;
    color: var(--primary-color);
  }
}

@media (max-width: 991px) {
  .mobile-offcanvas-search .search-icon {
    position: relative;
  }
}

.footer-title {
    /* font-weight: bold; */
    /* color: #fff; */
    /* margin-bottom: 12px; */
    /* border-bottom: 2px solid var(--secondary-color); */
    /* display: inline-block; */
    /* padding-bottom: 2px; */
    /* font-size: 0.98rem; */
}


 .footer-logo { max-width: 170px; height: auto; }
 .footer-desc { color: #fff; font-size: 1.1rem; max-width: 260px; }
 .footer-title {
     /* font-weight: bold; */
     /* color: #fff; */
     /* font-size: 0.98rem; */
     /* margin-bottom: 10px; */
     /* border-bottom: 2px solid var(--secondary-color); */
     /* display: inline-block; */
     /* padding-bottom: 2px; */
 }
 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }
 .footer-links li {
     margin-bottom: 6px;
 }
 .footer-links a {
     color: #fff;
     text-decoration: none;
     font-size: 14px;
     transition: color 0.2s;
 }
 .footer-links a:hover {
     color: #d2b48c;
 }
 .footer-contact-block {
     color: #fff;
     font-size: 13px;
     margin-bottom: 0.5rem;
     line-height: 1.5;
 }
 .footer-contact-block a {
     color: #fff;
     text-decoration: underline;
     font-size: 13px;
 }
 .footer-bottom {
     font-size: 12px;
 }
 @media (max-width: 991px) {
     .footer-main-row > div {
         margin-bottom: 24px;
     }
 }
 .footer-logo { max-width: 170px; height: auto; }
 .footer-desc { color: #fff; font-size: 1.1rem; max-width: 260px; }
 .footer-title {font-weight: bold;color: #fff;margin-bottom: 12px;border-bottom: 2px solid var(--secondary-color);display: inline-block;padding-bottom: 2px;font-size: 0.9rem;text-transform: uppercase;}
 .footer-links-columns { display: flex; gap: 48px; }
 .footer-links.small-text { font-size: 14px; margin-bottom: 0; color: #fff; }
 .footer-links.small-text li { margin-bottom: 7px; }
 .footer-links.small-text a { color: #fff; text-decoration: none; transition: color 0.2s; }
 .footer-links.small-text a:hover { color: var(--secondary-color); }
 .footer-contacts-row-outer { margin-bottom: 0 !important; }
 .footer-contact-col { background: rgba(0,0,0,0.04); border-radius: 6px; padding: 14px 14px 8px 14px !important; font-size: 13px; min-width:220px; max-width:340px; }
 .footer-contact-title { font-weight: bold; color: #fff; font-size: 1rem; margin-bottom: 8px; }
 .footer-contact-label { font-weight: 600; color: var(--secondary-color); font-size: 0.95em; margin-top: 6px; display: flex; align-items: center; }
 .footer-contact-phones a, .footer-contact-email a { color: #fff; text-decoration: underline; font-weight: 500; font-size: 13px; }
 .footer-contact-address { color: #fff; font-size: 13px; margin-top: 2px; }
 .social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; margin-right: 8px; font-size: 20px; transition: background 0.2s, color 0.2s; }
 .social-icons a:hover { background: var(--secondary-color); color: #fff; }
 .copyright { text-align: center; color: #fff; font-size: 13px; margin-top: 32px; }
 .footer-disclaimer { max-width: 900px; margin: 0 auto; }
 @media (max-width: 991px) { .footer-contacts-row-outer { flex-direction: column !important; gap: 0; } .footer-contact-col { margin-bottom: 10px; max-width:100%; } }
 .whatsapp-float-btn {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 9999;
   background: #25d366;
   color: #fff;
   width: 56px;
   height: 56px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 2px 8px rgba(0,0,0,0.18);
   font-size: 32px;
   transition: background 0.2s, color 0.2s;
 }
 .whatsapp-float-btn:hover {
   background: #128c7e;
   color: #fff;
 }
 @media (min-width: 768px) {
   .whatsapp-float-btn { display: none !important; }
 }

.product-card-modern {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 18px 18px 16px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.product-card-modern:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.product-image-modern {
  background: var(--primary-color, #e6f0fa);
  border-radius: 8px;
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.product-image-modern img {
  max-height: 110px;
  max-width: 90%;
  object-fit: contain;
}
.product-brand {
  font-size: 13px;
  color: var(--secondary-color, #bfa14a);
  margin-bottom: 2px;
  font-weight: 600;
  text-align: center;
}
.product-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-color, #2d3e50);
  margin-bottom: 2px;
  text-align: left;
}
.product-variant {
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
  text-align: center;
}
.product-price {
  font-size: 18px;
  color: var(--secondary-color, #bfa14a);
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}
.btn-add-modern {
  background: var(--primary-color, #0066cc);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-add-modern:hover {
  background: var(--secondary-color, #bfa14a);
  color: #fff;
}


.mais-vendidos-title {
  font-size: 2rem !important;
  font-family: var(--font-family-main) !important;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.product-card-modern {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 18px 18px 16px 18px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  height: 100%;
}
.product-card-modern:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.product-image-modern {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.product-image-modern img {
  max-height: 150px;
  max-width: 95%;
  object-fit: contain;
}
.btn-add-modern {
  background: linear-gradient(90deg, var(--secondary-color, #fbbb02) 0%, #ffc310 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  width: 96%;
  max-width: 96%;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  margin: 16px auto 0 auto;
  display: block;
  text-align: center;
  box-shadow: 0 2px 8px rgba(191,161,74,0.08);
}
.btn-add-modern:hover {
  background: var(--primary-color, #0066cc);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .col-md-3 { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 600px) {
  .col-md-3 { flex: 0 0 100%; max-width: 100%; }
}
.como-importar-section {
  background: var(--background-section, #f7f9fa);
  padding-bottom: 32px;
}
.import-step-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 240px;
  transition: box-shadow 0.2s;
  font-family: var(--font-family-main);
  width: 100%;
}
.import-step-card:hover {
  box-shadow: 0 6px 24px rgba(37,97,167,0.10);
}
.import-step-circle {
  width: 48px;
  height: 48px;
  background: var(--secondary-color, #bfa14a);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  margin-top: -28px;
  box-shadow: 0 2px 8px rgba(67,176,92,0.10);
}
.import-step-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-color, #5d7042);
  margin-bottom: 6px;
  margin-top: 2px;
  font-family: var(--font-family-main);
  line-height: 1.2rem;
}
.import-step-desc {
    font-size: 0.92rem;
    color: var(--text-color, #222);
    opacity: 0.85;
    font-family: var(--font-family-main);
}
/* 5 colunas proporcionais */
.col-lg-2-4 {
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 1199px) {
  .col-lg-2-4 { flex: 0 0 25%; max-width: 25%; }
}
@media (max-width: 991px) {
  .col-lg-2-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .import-step-card { min-height: 200px; padding: 20px 10px 14px 10px; }
}
@media (max-width: 767px) {
  .col-lg-2-4 { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 575px) {
  .col-lg-2-4 { flex: 0 0 100%; max-width: 100%; }
  .import-step-card { min-height: 160px; padding: 14px 6px 10px 6px; }
  .import-step-circle { width: 36px; height: 36px; font-size: 1rem; }
}
.motivos-section {
  background: var(--background-section, #f7f9fa);
  padding: 32px 0 16px 0;
}
.motivos-title {
  color: var(--primary-color, #5d7042);
  font-family: var(--font-family-main) !important;
  font-size: 2rem !important;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: left;
  position: relative;
}
.motivos-title::before {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--secondary-color, #bfa14a);
  border-radius: 2px;
  margin-bottom: 6px;
}
.motivo-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 32px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 180px;
  transition: box-shadow 0.2s;
  font-family: var(--font-family-main);
  width: 100%;
}
.motivo-card:hover {
  box-shadow: 0 6px 24px rgba(37,97,167,0.10);
}
.motivo-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.motivo-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}
.motivo-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-color, #5d7042);
  margin-bottom: 8px;
  font-family: var(--font-family-main);
}
.motivo-desc {
  font-size: 0.95rem;
  color: var(--text-color, #222);
  opacity: 0.85;
  font-family: var(--font-family-main);
}
@media (max-width: 991px) {
  .motivos-title { font-size: 1.1rem; }
  .motivo-card { min-height: 140px; padding: 20px 10px 14px 10px; }
}
@media (max-width: 767px) {
  .motivo-card { min-height: 120px; padding: 14px 6px 10px 6px; }
  .motivo-icon, .motivo-icon svg { width: 28px; height: 28px; }
}
.faq-section { background: var(--background-section, #f7f9fa); padding: 32px 0; }
.faq-section .section-title {color: var(--primary-color, #5d7042);font-size: 2rem;font-family: var(--font-family-main);font-weight: 600;margin-bottom: 2rem;}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); margin-bottom: 18px; overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; outline: none; font-size: 1.08rem; font-family: var(--font-family-main); font-weight: 600; color: var(--primary-color, #5d7042); text-align: left; padding: 18px 24px; cursor: pointer; transition: background 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question[aria-expanded="true"] { background: var(--secondary-color, #bfa14a); color: #fff; }
.faq-answer { display: none; padding: 0 24px 18px 24px; font-size: 0.98rem; color: var(--text-color, #222); font-family: var(--font-family-main); }
.faq-item.open .faq-answer { display: block; }
.chevron {
  display: inline-flex;
  margin-left: 12px;
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}
.faq-answer ul {
  padding-left: 24px;
  padding-top: 8px;
  margin-bottom: 0;
}
@media (max-width: 600px) { .faq-section .section-title { font-size: 1.1rem; } .faq-question { font-size: 1rem; padding: 14px 12px; } .faq-answer { font-size: 0.95rem; padding: 0 12px 12px 12px; } }

.cta-cotacao-section {
  margin: 0;
  padding: 0;
}
.cta-cotacao-bg {
  background: var(--primary-color);
  background-size: cover;
  background-position: center;
  min-height: 140px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cta-cotacao-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 140px;
  width: 100%;
}
.cta-cotacao-text span {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-family-main, 'Poppins', Arial, sans-serif);
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.cta-cotacao-btn {
  background: #fff;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.15rem;
  border-radius: 8px;
  padding: 16px 32px;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(21,101,192,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-left: 32px;
  display: inline-block;
}
.cta-cotacao-btn:hover, .cta-cotacao-btn:focus {
  background: #fff;
  color: var(--primary-color);
  text-decoration: none !important;
  box-shadow: 0 8px 28px rgba(21,101,192,0.18);
}
@media (max-width: 900px) {
  .cta-cotacao-content { flex-direction: column; align-items: flex-start; min-height: 180px; }
  .cta-cotacao-btn { margin-left: 0; margin-top: 18px; }
  .cta-cotacao-text span { font-size: 1.3rem; }
}
@media (max-width: 600px) {
  .cta-cotacao-content { padding: 18px 0; }
  .cta-cotacao-text span { font-size: 1.05rem; }
  .cta-cotacao-btn { font-size: 1rem; padding: 12px 18px; }
}
.motivo-icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(93,112,66,0.13); /* cor principal suave */
  box-shadow: 0 2px 8px rgba(93,112,66,0.08);
  margin: 0 auto 16px auto;
}
.motivo-icon-bg i {
  font-size: 2rem;
  color: var(--primary-color, #5d7042) !important;
  display: inline-block;
  line-height: 1;
}
.como-importar-section {
  background: var(--background-section, #f7f9fa);
  padding-bottom: 32px;
}
.process-steps {
  width: 100%;
}
.process-step {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 32px 18px 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
  font-family: var(--font-family-main);
  width: 100%;
  position: relative;
}
.process-step:hover {
  box-shadow: 0 8px 32px rgba(37,97,167,0.13);
  transform: translateY(-4px) scale(1.03);
}
.step-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
  margin-top: -32px;
}
.step-icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(191,161,74,0.13); /* secondary color, suave */
  box-shadow: 0 2px 8px rgba(191,161,74,0.08);
  font-size: 2rem;
  color: var(--secondary-color, #bfa14a);
  margin-bottom: 4px;
}
.step-number {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color, #5d7042);
  background: #fff;
  border-radius: 50%;
  min-width: 28px;
  min-height: 28px;
  line-height: 28px;
  box-shadow: 0 1px 4px rgba(191,161,74,0.10);
  margin-top: -18px;
  margin-bottom: 2px;
  font-family: var(--font-family-main);
}
.process-step h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-color, #5d7042);
  margin-bottom: 8px;
  margin-top: 2px;
  font-family: var(--font-family-main);
  line-height: 1.3rem;
}
.process-step p {
  font-size: 0.97rem;
  color: var(--text-color, #222);
  opacity: 0.88;
  font-family: var(--font-family-main);
  margin-bottom: 0;
}
.col-lg-2-4 {
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 1199px) {
  .col-lg-2-4 { flex: 0 0 25%; max-width: 25%; }
}
@media (max-width: 991px) {
  .col-lg-2-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .process-step { min-height: 200px; padding: 20px 10px 14px 10px; }
}
@media (max-width: 767px) {
  .col-lg-2-4 { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 575px) {
  .col-lg-2-4 { flex: 0 0 100%; max-width: 100%; }
  .process-step { min-height: 160px; padding: 14px 6px 10px 6px; }
  .step-icon-bg { width: 38px; height: 38px; font-size: 1.1rem; }
  .step-number { min-width: 20px; min-height: 20px; font-size: 0.95rem; line-height: 20px; }
}
.especialista-section {
  background: #fff;
  padding: 56px 0 40px 0;
}
.especialista-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.especialista-info {
  flex: 1 1 380px;
  min-width: 320px;
  max-width: 540px;
  text-align: left;
}
.especialista-title {
  color: var(--primary-color, #5d7042);
  font-size: var(--h2-size, 2rem);
  font-weight: 700;
  font-family: var(--font-family-main, 'Poppins', Arial, sans-serif);
  margin-bottom: 18px;
}
.especialista-desc {
  color: var(--text-color, #222);
  font-size: var(--text-size, 1.08rem);
  font-family: var(--font-family-main, 'Poppins', Arial, sans-serif);
  margin-bottom: 32px;
  line-height: 1.4;
}
.especialista-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary-color, #bfa14a);
  color: #fff;
  font-weight: 600;
  font-size: var(--text-size, 1.08rem);
  border-radius: 16px;
  padding: 16px 32px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(191,161,74,0.10);
  transition: background 0.2s, color 0.2s;
  border: none;
}
.especialista-btn i {
  font-size: 1.4rem;
  color: inherit;
}
.especialista-btn:hover {
  background: var(--primary-color, #5d7042);
  color: #fff;
  text-decoration: none;
}
.especialista-img-wrap {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.especialista-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
@media (max-width: 900px) {
  .especialista-flex { flex-direction: column; gap: 32px; }
  .especialista-info, .especialista-img-wrap { max-width: 100%; }
  .especialista-title { font-size: 1.5rem; }
  .especialista-desc { font-size: 1rem; }
}  /* Estilos para a galeria de produtos */
.product-gallery {
    margin-bottom: 20px;
}

/* Container da imagem principal */
.main-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
}

/* Container para o zoom */
.img-zoom-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    overflow: hidden;
}

/* Imagem principal */
#main-product-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Efeito de zoom na imagem principal */
.img-zoom-container:hover #main-product-image {
    transform: scale(2.5);
    transform-origin: center center;
}

/* Ícone de zoom */
.zoom-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.img-zoom-container:hover .zoom-icon {
    opacity: 1;
}

/* Estilos para as miniaturas */
.thumbnail-images {
    margin-top: 15px;
}

.thumbnail {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    height: 80px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.thumbnail:hover {
    border-color: #007bff;
    opacity: 0.9;
}

.thumbnail.active {
    border: 2px solid #007bff;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sobre-nos-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-color, #5d7042);
  font-family: var(--font-family-main, 'Poppins', Arial, sans-serif);
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  line-height: 1.1;
}
.sobre-nos-title::before {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  background: #cbb89d;
  border-radius: 2px;
  margin-bottom: 7px;
}
.sobre-nos-subtitle {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-color, #5d7042);
  font-family: var(--font-family-main, 'Poppins', Arial, sans-serif);
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  line-height: 1.1;
}

.sobre-nos-subtitle::before {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  background: #cbb89d;
  border-radius: 2px;
  margin-bottom: 7px;
}
.sobre-nos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 36px;
}
.sobre-nos-col-text {
  flex: 1 1 55%;
  min-width: 300px;
}
.sobre-nos-col-img {
  flex: 1 1 40%;
  min-width: 220px;
  text-align: center;
}
@media (max-width: 991px) {
  .sobre-nos-row { flex-direction: column; gap: 0; }
  .sobre-nos-col-text, .sobre-nos-col-img { min-width: 0; width: 100%; }
}
.whatsapp-float-classic {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 60%, #60e89d 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.18), 0 0 0 4px rgba(37,211,102,0.08);
  font-size: 32px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-decoration: none !important;
  opacity: 0;
  transform: scale(0.5);
}


.privacy-content {
  line-height: 1.6;
  color: #333;
}



.privacy-content .card {
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.privacy-content .table {
  font-size: 0.9rem;
}

.privacy-content .alert {
  border-left: 4px solid #3498db;
}

.privacy-content ul, .privacy-content ol {
  padding-left: 1.5rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

.whatsapp-float-classic.show {
  opacity: 1;
  transform: scale(1);
}

.whatsapp-float-classic:hover, .whatsapp-float-classic:focus {
  background: linear-gradient(135deg, #128c7e 60%, #25d366 100%);
  color: #fff;
  box-shadow: 0 8px 28px 0 rgba(0,0,0,0.22), 0 0 0 6px rgba(37,211,102,0.13);
  text-decoration: none !important;
}

.whatsapp-float-classic i {
  text-decoration: none !important;
}

img.img-fluid.fade-in {
  max-height: 670px;
}

.import-note {
  font-size: 1.1em;
  font-weight: 500;
  color: #002060;
  text-align: center;
  margin-top: 20px;
}

.privacy-text {
  font-size: 0.97rem;
  color: var(--text-color, #222);
  opacity: 0.88;
  font-family: var(--font-family-main);
  margin-bottom: 1rem;
}

.privacy-main-title {
  font-size: 1.8rem !important;
  font-weight: 700;
  color: var(--primary-color, #5d7042);
  margin-bottom: 2rem;
}

.privacy-content h2 {
  font-size: 1.4rem !important;
  font-weight: 700;
  color: var(--primary-color, #5d7042);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-family-main);
}

.privacy-content h3 {
  font-size: 1.2rem !important;
  font-weight: 600;
  color: var(--primary-color, #5d7042);
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

.privacy-content h5 {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--primary-color, #5d7042);
  margin-bottom: 0.8rem;
}
