:root {
    --primary-color: #B8860B; /* Goldenrod */
    --secondary-color: #DAA520; /* Goldenrod darker */
    --text-dark: #333; /* Dark gray for main text */
    --text-light: #666; /* Medium gray for secondary text */
    --background-light: #F8F8F8; /* Light gray for sections */
    --background-white: #FFFFFF;
    --gradient: linear-gradient(to right, #DAA520, #B8860B); /* Gold gradient */
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
    --border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 5px;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Header Styles */
.header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0.5rem 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 20px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-shrink: 0;
        }

        .logo-img {
            height: 45px;
            width: auto;
            border-radius: 50%;
            object-fit: cover;
        }

        .logo-text {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            color: var(--primary-color);
            white-space: nowrap;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
            flex-grow: 1;
            justify-content: flex-end;
        }

        .nav-link, .nav-menu li a {
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
            font-size: 0.95rem;
        }

        .nav-link:hover, .nav-link.active, .nav-menu li a.active {
            color: var(--ouro-dark);
        }

        .nav-link.active::after, .nav-menu li a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--ouro-dark);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 5px;
            transition: var(--transition);
        }

/* Logo Brand Styles */
.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px; /* Increased gap */
  text-decoration: none;
}


/* Estilo dos botões */
.cta-button {
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

/* Botão de Finalizar Compra (WhatsApp) */
.whatsapp-btn {
  background-color: #25d366;
  color: white;
  border: 2px solid #25d366;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  border-color: #128c7e;
}

/* Botão de Continuar Comprando */
.continue-btn {
  background-color: #f0f0f0;
  color: #333;
  border: 2px solid #ccc;
}

.continue-btn:hover {
  background-color: #e0e0e0;
  border-color: #bbb;
}

/* Ícones dentro dos botões */
.cta-button .fa-whatsapp,
.cta-button .fa-arrow-left {
  margin-right: 8px;
}
.cart-icon {
    position: fixed;
    bottom: 2rem;
    right: 7rem;
    width: 60px;
    height: 60px;
    background-color: var(--prata-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s;
}


.cart-icon-img {
    width: 30px; /* Ajuste conforme necessário */
    height: auto;
}

.cart-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid var(--background-white);
}


.floating-buttons-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column; /* Coloca os botões um acima do outro */
    align-items: center; /* Centraliza os botões horizontalmente */
    gap: 1rem; /* Adiciona espaçamento vertical entre os botões */
    z-index: 1000;
}

.logo-img {
  width: 45px; /* Slightly larger logo */
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo-text {
font-family: 'Playfair Display', serif;
  font-size: 1.8rem; /* Larger font size */
  color: var(--primary-color);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 1px; /* Added letter spacing */
  transition: color 0.3s ease;

}

.nav-menu {
  display: flex;
  gap: 2.5rem; /* Increased gap for better spacing */
  list-style: none;
}

.nav-link {
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.bar {
  display: block;
  width: 28px; /* Slightly larger bar */
  height: 3px;
  margin: 6px auto; /* Adjusted margin */
  background-color: var(--text-dark);
  transition: all 0.3s ease-in-out;
}

.modal-product-image {
    display: flex;
    flex-direction: column; /* Organiza a imagem e o botão verticalmente */
    align-items: center;
    justify-content: center;
    padding: 2rem; /* Garante um bom espaçamento interno */
}

/* 2. Remove a regra de hover que fazia o botão aparecer (pode apagar este bloco) */
.modal-product-image:hover .btn-zoom {
    /* Esta regra não é mais necessária, pode ser removida */
    bottom: initial;
    opacity: initial;
}

/* 3. Novo estilo do botão "Analisar com Zoom" */
.btn-zoom {
    /* Remove o posicionamento absoluto para que o botão fique no fluxo normal */
    position: static;
    transform: none;
    opacity: 1; /* Garante que o botão esteja sempre visível */

    /* Estilos visuais */
    width: 90%;
    max-width: 300px; /* Limita a largura máxima do botão */
    padding: 0.8rem;
    margin-top: 1rem; /* Espaçamento entre a imagem e o botão */
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-zoom:hover {
    background-color: #555;
}

.btn-zoom .fa-search-plus {
    margin-right: 8px;
}

/* --- Pop-up de Zoom (Tela Cheia) --- */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000; /* Garante que fique acima de tudo */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Classe que ativa o pop-up */
.zoom-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Container da Imagem (para manipulação de zoom) */
.zoom-image-container {
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Essencial para o zoom funcionar bem */
}

/* A Imagem Ampliada */
.zoom-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
    transition: transform 0.3s ease;
    cursor: grab;
}

.zoom-image:active {
    cursor: grabbing;
}

/* Botão de Fechar (X) */
.close-zoom {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    line-height: 1;
}

/* --- Correção de Responsividade --- */
/* Garante que o container da imagem no modal não quebre o layout do botão */
@media (max-width: 992px) {
    .modal-product-image {
        display: flex;
        flex-direction: column; /* Organiza a imagem e o botão verticalmente */
        align-items: center;
        justify-content: center;
    }
}



/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../images/background.jpg') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Produtos em Destaque */
.produtos {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.produto-card {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-10px);
}

.produto-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.produto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.produto-overlay button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.produto-overlay button:hover {
    background: var(--secondary-color);
}

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

.produto-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.produto-info .produto-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.produto-info .produto-preco {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Configurador */
.configurador {
    padding: 80px 0;
    background-color: var(--background-white);
}

.configurador-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.configurador-preview {
    flex: 1;
    text-align: center;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.configurador-preview img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.preco-estimado {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.configurador-opcoes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.opcao-grupo label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.opcao-grupo select,
.opcao-grupo input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.opcao-grupo small {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
    display: block;
}

.configurador-opcoes .cta-button {
    width: 100%;
    margin-top: 20px;
}

/* Carrinho de Compras */
.carrinho {
    padding: 80px 0;
    background-color: var(--background-light);
}

.carrinho-total {
    text-align: right;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.carrinho-total h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.carrinho-total .cta-button {
    width: auto;
    padding: 15px 30px;
}

/* Sobre */
.sobre {
    padding: 80px 0;
    background-color: var(--background-white);
}

.sobre-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.sobre-text {
    flex: 1;
}

.sobre-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.sobre-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.sobre-features .feature {
    text-align: center;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.sobre-features .feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-button whatsapp-btn{
    padding-left: 29px;
}

.sobre-features .feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.sobre-features .feature p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.sobre-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Depoimentos */
.depoimentos {
    padding: 80px 0;
    background-color: var(--background-light);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
}

.depoimento .stars {
    color: gold;
    margin-bottom: 15px;
}

.depoimento p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.depoimento h4 {
    font-weight: 600;
    color: var(--primary-color);
}

/* Contato */
.contato {
    padding: 80px 0;
    background-color: var(--background-white);
}

.contato-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contato-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.info-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
}

.contato-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.contato-form .cta-button {
    width: auto;
    align-self: flex-start;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-section h3 i {
    margin-right: 10px;
}

.footer-section p,
.footer-section li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

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

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Float Button */




.bg-light {
    background-color: var(--background-light);
}

.btn-add-cart {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.btn-detalhes {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

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



.categoria-card {
    display: flex;
    align-items: center;
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    overflow: hidden;
}

.categoria-card.reverse {
    flex-direction: row-reverse;
}

.categoria-content {
    flex: 1;
    padding: 40px;
}


/* --- Responsividade --- */
/* Estilos para telas menores que 992px (tablets e mobiles) */
@media (max-width: 992px) {
    .logo-text { 
        font-size: 1.3rem; 
    }
}

/* Estilos para telas menores que 768px (smartphones) */
@media (max-width: 768px) {
    
    .nav-container { 
        padding: 1rem 20px; 
    }
    .hamburger {
                display: flex;
                z-index: 1001;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.3s ease-in-out;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                gap: 2rem;
            }
            .nav-menu.active {
                right: 0;
            }

    /* Layout Geral */
    .hero .container, 
    .sobre-content, 
    .contato-content, 
    .configurador-container, 
    .cuidados-content { 
        flex-direction: column; 
        text-align: center; 
    }
    .hero-content, 
    .hero-image, 
    .sobre-text, 
    .sobre-image, 
    .contato-info, 
    .contato-form, 
    .configurador-preview, 
    .configurador-opcoes { 
        flex: none; 
        width: 100%; 
    }
    .hero-title { 
        font-size: 2.5rem; 
    }
    .section-title { 
        font-size: 2rem; 
    }
    .logo-text { 
        font-size: 1.1rem; 
    }
    .logo-img { 
        width: 35px; 
        height: 35px; 
    }
    .footer-content { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .social-links { 
        margin-top: 20px; 
    }
    .social-links a { 
        margin: 0 10px; 
    }

    /* Botões flutuantes */
    .whatsapp-float, 
    .cart-icon {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    .cart-icon {
        bottom: 80px; /* Acima do botão do WhatsApp */
    }
    .cart-icon img { 
        max-width: 50%; 
    }
    .cart-counter {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    /* Estilos do Carrinho */
    .carrinho-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .carrinho-item-img {
        margin-bottom: 1rem;
        width: 80px;
        height: 80px;
    }
    .carrinho-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .carrinho-buttons {
        width: 100%;
        flex-direction: column;
    }
    .carrinho-buttons .cta-button {
        width: 100%;
        text-align: center;
    }
    .carrinho-item-info h3 {
        white-space: normal;
    }
}

/* Estilos para telas menores que 576px */
@media (max-width: 576px) {
    .logo-text { 
        display: none; 
    }
    .logo-img { 
        width: 40px; 
        height: 40px; 
    }
    .hero-title { 
        font-size: 2rem; 
    }
    .hero-subtitle { 
        font-size: 1rem; 
    }
    .section-title { 
        font-size: 1.8rem; 
    }
    .produtos-grid { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    .depoimentos-grid { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
}

.categoria-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.categoria-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.categoria-image {
    flex: 1;
}

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

.categorias {
    padding: 80px 0;
    background-color: var(--background-light);
}

.dev-credit {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 10px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--background-white);
    box-shadow: var(--shadow);
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
    min-width: 180px;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: var(--background-light);
}

.fa-chevron-down {
    font-size: 0.8rem;
    margin-left: 5px;
}

.fab,
.fas {
    margin-right: 8px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-buttons .cta-button.secondary {
    background: none;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-buttons .cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-info {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.reverse {
    flex-direction: row-reverse;
}

.secondary {
    background-color: #DAA520; /* Goldenrod darker */
}

/* Icon styles (Font Awesome) */
.fa-crown, .fa-gem, .fa-heart, .fa-shipping-fast, .fa-shield-alt, .fa-star, .fa-phone, .fa-envelope, .fa-map-marker-alt, .fa-instagram, .fa-whatsapp, .fa-shopping-cart {
    color: var(--primary-color);
}

.fa-star {
    color: gold;
}



.hero-prata {
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 50%, #a0a0a0 100%);
    color: #333;
}

.vantagens-prata {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

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

.vantagem-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.vantagem-icon {
    font-size: 2.5rem;
    color: #a0a0a0;
    margin-bottom: 1rem;
}

.configurador-prata {
    background-color: #f9f9f9;
}

.depoimentos-prata {
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 50%, #a0a0a0 100%);
}

.cuidados-prata {
    padding: 4rem 0;
}

.cuidados-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cuidados-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.cuidados-text li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.cuidados-text i {
    color: #a0a0a0;
}

.ver-todos-container {
    text-align: center;
    margin-top: 3rem;
}

.outras-categorias {
    padding: 4rem 0;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.categoria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.depoimento-verificado {
    color: #a0a0a0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
}



/* Estilos para o carrinho */
.carrinho-page {
    padding: 2rem 0;
}

.carrinho-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.carrinho-item-img {
    width: 80px; /* Reduzindo o tamanho da imagem */
    height: 80px;
    margin-right: 1rem;
    flex-shrink: 0;
}

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

.carrinho-item-info {
    flex-grow: 1;
}

.carrinho-item-info h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.carrinho-item-info p {
    font-size: 0.9rem;
    color: #666;
}

.carrinho-item-quantidade {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.carrinho-item-quantidade button {
    background: #f0f0f0;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    cursor: pointer;
}

.carrinho-item-quantidade span {
    margin: 0 0.8rem;
    min-width: 20px;
    text-align: center;
}

.carrinho-item-remover {
    margin-left: 1rem;
}

.carrinho-item-remover button {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
}

.carrinho-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.carrinho-total h3 {
    font-size: 1.3rem;
    color: #333;
}

.carrinho-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.cart-empty {
    text-align: center;
    padding: 2rem;
    color: #666;
}


/* Botão do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Ícone do Carrinho (com Imagem) */
.cart-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px; /* Posição acima do botão do WhatsApp */
    right: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cart-icon:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}
.cart-icon img {
    width: 50%; /* Controla o tamanho da imagem */
    height: auto;
    display: block;
    filter: brightness(0) invert(1); /* Deixa a imagem branca para combinar */
}
.cart-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid white;
}

/* Estilos para o carrinho */
.carrinho-page {
    padding: 2rem 0;
}

.carrinho-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.carrinho-item-img {
    width: 60px; /* Reduzi ainda mais o tamanho */
    height: 60px;
    margin-right: 1rem;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

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

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

.carrinho-item-info {
    flex-grow: 1;
    min-width: 0; /* Permite que o texto quebre corretamente */
}

.carrinho-item-info h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carrinho-item-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.carrinho-item-quantidade {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.carrinho-item-quantidade button {
    background: #f0f0f0;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carrinho-item-quantidade button:hover {
    background: #e0e0e0;
}

.carrinho-item-quantidade span {
    margin: 0 0.8rem;
    min-width: 20px;
    text-align: center;
}

.carrinho-item-remover {
    margin-left: 1rem;
}

.carrinho-item-remover button {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    transition: color 0.3s ease;
}

.carrinho-item-remover button:hover {
    color: #c0392b;
}

.carrinho-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.carrinho-total h3 {
    font-size: 1.3rem;
    color: #333;
}

.carrinho-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.cart-empty {
    text-align: center;
    padding: 2rem;
    color: #666;
}


/* Estilos do Carrinho */
.carrinho-container {
    margin-top: 2rem;
}

.carrinho-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.carrinho-item img {
    width: 100%;
    border-radius: 8px;
}

.quantidade-controle {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.quantidade-controle button {
    width: 30px;
    height: 30px;
    background: var(--background-light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.quantidade-controle span {
    margin: 0 1rem;
    min-width: 20px;
    text-align: center;
}

.item-preco {
    font-weight: bold;
    color: var(--secondary-color);
    text-align: right;
}

.item-preco button {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    margin-left: 1rem;
}

.carrinho-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.carrinho-total {
    text-align: right;
    margin-bottom: 2rem;
}

.carrinho-total h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.carrinho-total span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.carrinho-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.carrinho-buttons .cta-button {
    flex: 1;
    min-width: 200px;
}

.cart-empty {
    text-align: center;
    padding: 3rem 0;
}

.cart-empty i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cart-empty h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}



/* Notificações do Carrinho */
.notificacao-carrinho {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #4CAF50;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
}

.notificacao-carrinho.mostrar {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}