/* ============================================= */
/* RESET E ESTILOS GERAIS */
/* ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    padding-top: 60px; 
    width:100%;
    overflow-x:hidden;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Classes de fontes Poppins */
.poppins-thin { font-family: "Poppins", sans-serif; font-weight: 100; font-style: normal; }
.poppins-extralight { font-family: "Poppins", sans-serif; font-weight: 200; font-style: normal; }
.poppins-light { font-family: "Poppins", sans-serif; font-weight: 300; font-style: normal; }
.poppins-regular { font-family: "Poppins", sans-serif; font-weight: 400; font-style: normal; }
.poppins-medium { font-family: "Poppins", sans-serif; font-weight: 500; font-style: normal; }
.poppins-semibold { font-family: "Poppins", sans-serif; font-weight: 600; font-style: normal; }
.poppins-bold { font-family: "Poppins", sans-serif; font-weight: 700; font-style: normal; }
.poppins-extrabold { font-family: "Poppins", sans-serif; font-weight: 800; font-style: normal; }
.poppins-black { font-family: "Poppins", sans-serif; font-weight: 900; font-style: normal; }
.poppins-thin-italic { font-family: "Poppins", sans-serif; font-weight: 100; font-style: italic; }
.poppins-extralight-italic { font-family: "Poppins", sans-serif; font-weight: 200; font-style: italic; }
.poppins-light-italic { font-family: "Poppins", sans-serif; font-weight: 300; font-style: italic; }
.poppins-regular-italic { font-family: "Poppins", sans-serif; font-weight: 400; font-style: italic; }
.poppins-medium-italic { font-family: "Poppins", sans-serif; font-weight: 500; font-style: italic; }
.poppins-semibold-italic { font-family: "Poppins", sans-serif; font-weight: 600; font-style: italic; }
.poppins-bold-italic { font-family: "Poppins", sans-serif; font-weight: 700; font-style: italic; }
.poppins-extrabold-italic { font-family: "Poppins", sans-serif; font-weight: 800; font-style: italic; }
.poppins-black-italic { font-family: "Poppins", sans-serif; font-weight: 900; font-style: italic; }

/* ============================================= */
/* COMPONENTES REUTILIZÁVEIS */
/* ============================================= */
/* Botões */
.btn {
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
    font-size: 16px;
    text-align: center;
}

.btn-secondary {
    background-color: white;
    color: #4a623c;
    border: 1px solid #4a623c;
}

.btn-secondary:hover {
    background-color: #f1f4ed;
}

.btn-primary {
    background-color: #4a623c;
    color: white;
}

.btn-primary:hover {
    background-color: #3a522c;
}

.btn-checkout {
    background-color: #7cc142;
    color: white;
    flex: 1;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Cards */
.card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* ============================================= */
/* BANNER */
/* ============================================= */
.banner-container {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 0;
    margin-top: 20px;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 450px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

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

.banner-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    bottom: 50px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.185);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.banner-dot.active {
    background-color: white;
}

.banner-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.banner-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

/* Media Queries para Banner */
@media (max-width: 768px) {
    .banner-slider {
        height: 250px;
    }
    
    .banner-dots {
        bottom: 20px;
    }
    
    .banner-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 200px;
    }
    
    .banner-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .banner-dot {
        width: 10px;
        height: 10px;
    }
}

/* ============================================= */
/* HASHTAGS */
/* ============================================= */
.hashtags {
    background-color: #4a623c;
    color: white;
    padding: 10px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;
}

.hashtags::-webkit-scrollbar {
    display: none;
}

.hashtags span {
    margin: 0 15px;
    display: inline-block;
    font-size: 14px;
    transition: color 0.3s ease;
}

.hashtags span:hover {
    color: #7cc142;
}

/* Media Queries para Hashtags */
@media (max-width: 768px) {
    .hashtags {
        padding: 8px 0;
    }
    
    .hashtags span {
        margin: 0 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hashtags {
        padding: 6px 0;
    }
    
    .hashtags span {
        margin: 0 8px;
        font-size: 12px;
    }
}

/* ============================================= */
/* EXTRATOS */
/* ============================================= */
.extratos-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    width: 80%;
    overflow-x: auto;
    padding: 10px 0;
    gap: 15px;
    margin-top: 40px;
}

.extratos-card {
    padding: 10px;
    position: relative;
    height: 78px;
    background-color: #4a623c;
    border-radius: 15px;
    overflow: hidden;
    margin: 10px;
    transition: transform 0.3s;
    min-width: 200px;
    flex: 1;
}

.extratos-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #4a623c;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.extratos-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    color: #4a623c;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.extratos-card:hover {
    transform: translateY(-8px) scale(1.04);
}

/* Media Queries para Extratos */
@media (max-width: 768px) {
    .extratos-section {
        width: 95%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }
    
    .extratos-card {
        min-width: 150px;
        flex: 1 1 calc(50% - 10px);
        margin: 5px;
    }
    
    .extratos-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .extratos-section {
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
    }
    
    .extratos-card {
        width: 90%;
        max-width: 280px;
        flex: none;
        min-width: auto;
    }
}

/* ============================================= */
/* PRODUTOS */
/* ============================================= */
.produtos-section {
    margin: 30px;
    width: 80%;
}

.produtos-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.produto-card-link {
    text-decoration: none;
    color: inherit;
}

.produto-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.produto-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.produto-info {
    padding: 15px;
}

.produto-nome {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.produto-preco {
    font-size: 18px;
    font-weight: bold;
    color: #4a623c;
    margin-bottom: 15px;
}

.adicionar-btn {
    width: 100%;
    padding: 12px;
    background-color: #4a623c;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.adicionar-btn:hover {
    background-color: #3a522c;
}

.ver-todos {
    display: block;
    text-align: center;
    padding: 12px 30px;
    background-color: #4a623c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin: 20px auto;
    width: fit-content;
    transition: background-color 0.3s ease;
}

.ver-todos:hover {
    background-color: #3a522c;
}

/* Media Queries para Produtos */
@media (max-width: 768px) {
    .produtos-section {
        width: 95%;
        margin: 20px auto;
    }
    
    .produtos-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .produto-image {
        height: 180px;
    }
    
    .produto-nome {
        font-size: 15px;
    }
    
    .produto-preco {
        font-size: 16px;
    }
    
    .adicionar-btn {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .produtos-section {
        width: 98%;
        margin: 15px auto;
    }
    
    .produtos-title {
        font-size: 22px;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .produto-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .produto-image {
        height: 160px;
    }
    
    .produto-info {
        padding: 12px;
    }
    
    .produto-nome {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .produto-preco {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .adicionar-btn {
        padding: 10px 8px;
        font-size: 13px;
    }
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.produto-card {
    background-color: #efefef78;
    border-radius: 10px 10px 0px 0px;
    overflow: visible; /* Permite que o botão ultrapasse o card */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative; /* Necessário para posicionar o botão */
   margin-bottom: 40px;
}

.produto-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.produto-card-link .produto-card {
    cursor: pointer;
    transition: box-shadow 0.2s, background-color 0.5s, transform 0.2s;
}

.produto-card-link .produto-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  
}

.produto-image {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.produto-image img {
    height: 120px;
    object-fit: contain;
}

.produto-info {
}

.produto-categoria {
   padding: 10px;    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.produto-nome {
    padding: 20px 0px 0px 20px;
    font-size: 18px;
    margin-bottom: 5px;
    color: #777;
}

.produto-preco {
    padding: 0px 20px 10px 20px;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
    color: #666;
}

.adicionar-btn {
    z-index: 10;
    background-color: #7cc142;
    color: white;
    border: none;
    border-radius: 0 0 10px 10px;
    padding: 10px;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.2s, background-color 0.5s, transform 0.2s;
    position: absolute;
    left: 50%;
    bottom: -40px; /* Sai para fora do card */
    transform: translateX(-50%);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.produto-card:hover .adicionar-btn,
.adicionar-btn:hover {
    background-color: #325912;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.ver-todos {
    display: block;
    width: 200px;
    margin: 50px auto 10px ;
    text-align: center;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 25px;
    color: #dfdfdf;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.ver-todos:hover {
    background-color: #3a522c;
    color: #ffffff;
    text-decoration: none;
}

/* ============================================= */
/* CLIENTES/DEPOIMENTOS */
/* ============================================= */
.clientes-section {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    padding: 30px 0;
    width: 100%;
}

.clientes-title {
    padding: 0 20px;
}

.clientes-title h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.avaliacoes {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
}

.avaliacoes-num {
    font-size: 12px;
    font-weight: bold;
}

.avaliacoes-text {
    font-size: 12px;
    color: #666;
}

.depoimentos-outer {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #f9f9f9;
    flex-direction: column;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.depoimentos {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: #f9f9f9;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 10px 0;
    align-items: flex-start;
}

.depoimento {
    width: calc(33.333% - 20px);
    max-width: 350px;
    min-width: 280px;
    background-color: white;
    margin: 0 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    height: auto;
    min-height: 180px;
}

.depoimento-texto {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.depoimento-stars {
    color: #ffc107;
    margin-bottom: 10px;
}

.depoimento-autor {
    font-weight: bold;
    font-size: 14px;
}

.navegacao {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

.nav-btn:hover {
    background-color: #4a623c;
    color: white;
    border-color: #4a623c;
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nav-btn:disabled:hover {
    background-color: white;
    color: #ccc;
    border-color: #ccc;
}

/* Media Queries para Depoimentos */
@media (max-width: 768px) {
    .clientes-title h2 {
        font-size: 24px;
    }
    
    .depoimentos-outer {
        padding: 20px 15px;
        overflow-x: auto;
    }
    
    .depoimentos {
        gap: 10px;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        transition: none;
    }
    
    .depoimento {
        min-width: 220px;
        padding: 15px;
        margin: 0 5px;
        scroll-snap-align: start;
    }
    
    .depoimento-texto {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .depoimento-autor {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .clientes-section {
        padding: 20px 0;
    }
    
    .clientes-title h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .depoimentos-outer {
        padding: 15px 10px;
        overflow-x: visible;
    }
    
    .depoimentos {
        flex-direction: column;
        overflow-x: visible;
        gap: 15px;
        transition: none;
    }
    
    .depoimento {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .navegacao {
        display: none;
    }
}

/* ============================================= */
/* AJUDA/FAQ */
/* ============================================= */
.ajuda-section {
    width: 80%;
    padding: 30px 0;
    max-width: 1200px;
}

.ajuda-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.ajuda-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ajuda-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.ajuda-card h3 {
    margin-bottom: 10px;
    color: #4a623c;
    font-size: 18px;
}

.ajuda-card p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.fale-btn {
    background-color: #4a623c;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.fale-btn:hover {
    background-color: #3a522c;
    color: white;
    text-decoration: none;
}

.faq {
    width: 100%;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-num {
    background-color: #f5f5f5;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-size: 14px;
}

.faq-icon {
    background-color: #4a623c;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #f9f9f9;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 15px;
}

.faq-answer.active {
    max-height: 200px;
    padding: 15px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Media Queries para Ajuda/FAQ */
@media (max-width: 768px) {
    .ajuda-section {
        width: 95%;
        padding: 20px 0;
    }
    
    .ajuda-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .ajuda-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .ajuda-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .ajuda-card p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .fale-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .faq-question {
        padding: 12px;
    }
    
    .faq-num {
        width: 25px;
        height: 25px;
        font-size: 12px;
        margin-right: 8px;
    }
    
    .faq-text {
        font-size: 13px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ajuda-section {
        width: 98%;
        padding: 15px 0;
    }
    
    .ajuda-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .ajuda-container {
        gap: 15px;
    }
    
    .ajuda-card {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .ajuda-card h3 {
        font-size: 15px;
    }
    
    .ajuda-card p {
        font-size: 12px;
    }
    
    .fale-btn {
        padding: 10px;
        font-size: 13px;
    }
    
    .faq-question {
        padding: 10px;
        flex-wrap: wrap;
    }
    
    .faq-num {
        width: 22px;
        height: 22px;
        font-size: 11px;
        margin-right: 6px;
    }
    
    .faq-text {
        font-size: 12px;
        flex: 1 1 200px;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}

/* ============================================= */
/* CARRINHO */
/* ============================================= */
.cart-header {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.cart-title {
    font-size: 28px;
    font-weight: 600;
    color: #4a623c;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.cart-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #7cc142;
    border-radius: 2px;
}

.cart-content {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.cart-table-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
    padding: 15px 20px;
    background-color: #f1f4ed;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
    color: #4a623c;
}

.cart-table-header span {
    text-align: center;
}

.cart-table-header span:first-child {
    text-align: left;
}

.cart-items {
    list-style: none;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.cart-item:hover {
    background-color: #f9f9f9;
}

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

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

.product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-right: 15px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-info {
    flex: 1;
}

.product-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.product-category {
    font-size: 12px;
    color: #777;
    display: block;
}

.product-price {
    text-align: center;
    font-weight: 600;
    color: #4a623c;
}

.quantity-controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: white;
    color: #4a623c;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
}

.quantity-btn:hover {
    background-color: #4a623c;
    color: white;
    border-color: #4a623c;
}

.quantity-number {
    margin: 0 10px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.subtotal {
    text-align: center;
    font-weight: 600;
    color: #4a623c;
}

.item-actions {
    text-align: center;
}

.remove-btn {
    background-color: transparent;
    color: #ff5252;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.remove-btn:hover {
    color: #ff1744;
}

.cart-summary {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.summary-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4a623c;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.summary-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-label {
    color: #666;
}

.summary-value {
    font-weight: 600;
    color: #333;
}

.summary-total {
    font-size: 24px;
    font-weight: 700;
    color: #4a623c;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.empty-cart {
    text-align: center;
    padding: 50px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.empty-cart-icon {
    font-size: 60px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-cart-title {
    font-size: 24px;
    font-weight: 600;
    color: #4a623c;
    margin-bottom: 10px;
}

.empty-cart-text {
    color: #666;
    margin-bottom: 30px;
}

/* ============================================= */
/* MODAL */
/* ============================================= */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s forwards;
}

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

.modal-content {
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s;
    animation: scaleIn 0.3s forwards;
    width: 90%;
    max-width: 400px;
     background-color: white;
}

@keyframes scaleIn {
    from { transform: scale(0.7); }
    to { transform: scale(1); }
}

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

.success-icon svg {
    color: rgb(255, 255, 255);
    font-size: 40px;
    opacity: 0;
    animation: checkmark 0.5s 0.2s forwards;
}

@keyframes checkmark {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-message {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    background-color: white;
}

.close-btn {
    padding: 8px 20px;
    background-color: #3b5230;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cart-btn {
    padding: 8px 20px;
    background-color: rgb(0, 145, 255);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.close-btn:hover {
    background-color: #7cc142;
}

.cart-btn:hover {
    background-color: rgba(0, 145, 255, 0.5);
}

/* ============================================= */
/* BOTÃO FLUTUANTE */
/* ============================================= */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4a623c;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(74, 98, 60, 0.3);
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
    font-size: 20px;
}

.floating-button:hover {
    background-color: #3a522c;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(74, 98, 60, 0.4);
    color: white;
    text-decoration: none;
}

/* Media Queries para Floating Button */
@media (max-width: 768px) {
    .floating-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .floating-button {
        width: 50px;
        height: 50px;
        bottom: 12px;
        right: 12px;
        font-size: 16px;
    }
}

/* ============================================= */
/* RESPONSIVIDADE GERAL */
/* ============================================= */
/* Estilos gerais responsivos */
@media (max-width: 1200px) {
    .main-container {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    body {
        padding-top: 70px;
    }
    
    .main-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
        font-size: 14px;
    }
    
    .main-container {
        padding: 0 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 50px;
        font-size: 13px;
    }
    
    .main-container {
        padding: 0 5px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    h3 {
        font-size: 16px;
    }
}

/* Melhorias para dispositivos muito pequenos */
@media (max-width: 320px) {
    body {
        font-size: 12px;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    h1 {
        font-size: 18px;
    }
    
    h2 {
        font-size: 16px;
    }
    
    h3 {
        font-size: 14px;
    }
}

/* ============================================= */
/* RESPONSIVIDADE */
/* ============================================= */
@media (max-width: 1024px) {
    .banner-slider {
        height: 400px;
    }
    
    .extratos-section {
        width: 90%;
    }
    
    .produtos-section {
        width: 90%;
    }
    
    .ajuda-section {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .banner-slider {
        height: 300px;
    }
    
    .extratos-section {
        width: 95%;
    }
    
    .produtos-section {
        width: 95%;
        margin: 20px 0;
    }
    
    .ajuda-section {
        width: 95%;
    }
    
    /* Ajustes para o carrinho */
    .cart-table-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .product-details {
        grid-column: 1;
    }

    .produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

    
    .product-price {
        grid-column: 1;
        text-align: left;
        margin-left: 95px;
    }
    
    .product-price:before {
        content: 'Preço: ';
        color: #777;
        font-weight: normal;
    }
    
    .quantity-controls {
        grid-column: 1;
        justify-content: flex-start;
        margin-left: 95px;
    }
    
    .quantity-controls:before {
        content: 'Quantidade: ';
        color: #777;
        margin-right: 10px;
    }
    
    .subtotal {
        grid-column: 1;
        text-align: left;
        margin-left: 95px;
    }
    
    .subtotal:before {
        content: 'Subtotal: ';
        color: #777;
        font-weight: normal;
    }
    
    .item-actions {
        grid-column: 1;
        text-align: left;
        margin-left: 95px;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-checkout {
        max-width: 100%;
    }
    
    .modal-content {
        background-color: white;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 200px;
    }
    
    .banner-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .banner-dots {
        bottom: 10px;
    }
    
    .banner-dot {
        width: 8px;
        height: 8px;
    }
    
    .hashtags span {
        margin: 0 10px;
        font-size: 14px;
    }
    
    .produtos-title {
        font-size: 24px;
    }
    
    .clientes-title h2 {
        font-size: 24px;
    }
    
    .ajuda-title {
        font-size: 24px;
    }
    
    .cart-title {
        font-size: 24px;
    }
    
    .summary-title {
        font-size: 18px;
    }
    
    .summary-total {
        font-size: 20px;
    }
    
    .floating-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}