:root {
    --rosa-principal: #ff6b9e;
    --rosa-claro: #ffc0d5;
    --branco: #ffffff;
    --cinza: #f5f5f5;
    --texto: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--branco);
    color: var(--texto);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--branco);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    /* Estas propriedades são gerenciadas pelo .container agora */
    /* display: flex; */
    /* justify-content: space-between; */
    align-items: center; 
}

header .container {
    display: flex; /* Garante que os itens dentro do container sejam flex */
    justify-content: space-between; /* Distribui logo e nav nas extremidades */
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    /* Remover text-align: center; se existir, pois agora é flex */
}

.logo a {
    color: var(--rosa-principal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #e0558a;
}

/* Navigation Bar Styles */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: var(--texto);
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: var(--rosa-principal);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--rosa-principal);
}

nav ul li a:hover::after {
    width: 100%;
    left: 0;
    background: var(--rosa-principal);
}

/* NOVO ESTILO: Botão do Carrinho Flutuante */
.btn-ver-carrinho {
    position: fixed; /* Isso faz com que ele acompanhe a tela */
    bottom: 30px; /* Distância do fundo */
    right: 30px; /* Distância da direita */
    background-color: var(--rosa-principal);
    color: white;
    border: none;
    width: 60px; /* Tamanho do círculo */
    height: 60px; /* Tamanho do círculo */
    border-radius: 50%; /* Faz o botão ser um círculo */
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Sombra para destacá-lo */
    z-index: 999; /* Garante que ele fique acima de outros elementos */
    transition: all 0.3s ease;
}

.btn-ver-carrinho:hover {
    background-color: #e0558a;
    transform: translateY(-5px); /* Efeito de leve elevação */
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.cart-item-count {
    position: absolute;
    top: -5px; /* Ajuste para posicionar a bolinha */
    right: -5px; /* Ajuste para posicionar a bolinha */
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 4px 8px; /* Ajustado para um círculo melhor */
    font-size: 12px;
    font-weight: bold;
    line-height: 1; /* Garante que o texto fique centralizado */
    min-width: 20px; /* Garante tamanho mínimo para bolinha */
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, var(--rosa-claro) 0%, var(--branco) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--rosa-principal);
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* NOVOS ESTILOS PARA O HERO */
.hero-promocao {
    background-color: var(--rosa-principal);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-preco {
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: bold;
    color: var(--rosa-principal);
}

.hero-preco-original {
    text-decoration: line-through;
    color: #999;
    font-size: 28px;
    margin-right: 15px;
}

.hero-preco-atual {
    color: var(--rosa-principal);
    font-size: 48px;
}

.hero-parcelamento {
    font-size: 22px;
    color: var(--texto);
    margin-top: 15px;
    margin-bottom: 30px;
}

/* Ajustar o botão de compra no hero */
#btn-comprar-agora-hero {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 24px;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

#btn-comprar-agora-hero:hover {
    background-color: #45a049;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.5);
}

.produto {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 60px 0;
}

.produto-imagem {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
}

.produto-imagem img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255,107,158,0.2);
    transition: transform 0.3s ease;
}

.produto-imagem:hover img {
    transform: scale(1.03);
}

.produto-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.produto-info h2 {
    font-size: 32px;
    color: var(--rosa-principal);
    margin-bottom: 20px;
}

.produto-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.produto-info ul li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
}

.produto-info ul li:before {
    content: "✓";
    color: var(--rosa-principal);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.preco {
    font-size: 28px;
    font-weight: bold;
    color: var(--rosa-principal);
    margin: 30px 0;
}

.preco-original {
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
    margin-right: 10px;
}

.promocao {
    background-color: var(--rosa-principal);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 20px;
}

.contador {
    font-size: 18px;
    margin: 20px 0;
    color: var(--rosa-principal);
}

.contador .fas {
    margin-right: 8px;
}

.btn-comprar {
    background-color: var(--rosa-principal);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 15px auto; /* Adjusted margin here */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-comprar:hover {
    background-color: #e0558a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,107,158,0.4);
}

.btn-add-carrinho {
    background-color: var(--rosa-claro);
    color: var(--texto);
    border: 1px solid var(--rosa-principal);
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 15px auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-add-carrinho:hover {
    background-color: var(--rosa-principal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,107,158,0.4);
}

.parcelamento-info {
    font-size: 18px;
    color: var(--texto);
    text-align: center;
    margin-top: 10px; /* Adjust margin to be closer to buttons */
}


/* New Section Styles for Description Pages */
.section-description {
    padding: 60px 0;
    background-color: var(--cinza);
    text-align: center;
    margin-top: 40px;
}

.section-description:nth-of-type(even) {
    background-color: var(--branco);
}

.section-description h2 {
    font-size: 36px;
    color: var(--rosa-principal);
    margin-bottom: 30px;
}

.section-description p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}

.section-description h3 {
    font-size: 28px;
    color: var(--texto);
    margin-top: 40px;
    margin-bottom: 20px;
}

.section-description ul {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 0 auto 30px;
}

.section-description ul li {
    background-color: var(--branco);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 4px solid var(--rosa-principal);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 17px;
}

.section-description ul li strong {
    color: var(--rosa-principal);
}


.garantia {
    text-align: center;
    padding: 30px 0;
    background-color: var(--cinza);
    margin-top: 40px;
}

.depoimentos {
    padding: 60px 0;
    text-align: center;
}

.depoimentos h2 {
    font-size: 32px;
    color: var(--rosa-principal);
    margin-bottom: 40px;
}

.depoimentos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.depoimento {
    background-color: var(--branco);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 350px;
    transition: transform 0.3s ease;
}

.depoimento:hover {
    transform: translateY(-10px);
}

.depoimento img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.depoimento p {
    font-style: italic;
    margin-bottom: 20px;
}

.depoimento .nome {
    font-weight: bold;
    color: var(--rosa-principal);
}

footer {
    background-color: var(--rosa-principal);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

footer p {
    margin-bottom: 5px;
}

/* Carrinho Styles */
.carrinho-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.carrinho-overlay.active {
    opacity: 1;
    visibility: visible;
}

.carrinho-content {
    background-color: var(--branco);
    width: 100%;
    max-width: 400px;
    height: 100%;
    padding: 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.carrinho-overlay.active .carrinho-content {
    transform: translateX(0);
}

.carrinho-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--cinza);
}

.carrinho-header h2 {
    color: var(--rosa-principal);
    font-size: 28px;
    margin: 0;
}

.fechar-carrinho {
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.fechar-carrinho:hover {
    color: var(--rosa-principal);
}

.carrinho-items {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.carrinho-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed var(--rosa-claro);
}

.carrinho-item:last-child {
    border-bottom: none;
}

.carrinho-item-details {
    flex-grow: 1;
}

.carrinho-item-details h4 {
    margin: 0;
    color: var(--texto);
    font-size: 18px;
}

.carrinho-item-details p {
    margin: 5px 0 0;
    color: #666;
    font-size: 15px;
}

.carrinho-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.carrinho-item-actions input {
    width: 50px;
    text-align: center;
    padding: 5px;
    border: 1px solid var(--cinza);
    border-radius: 5px;
    font-size: 16px;
}

.carrinho-item-actions button {
    background: none;
    border: none;
    color: var(--rosa-principal);
    cursor: pointer;
    font-size: 20px;
    transition: color 0.3s ease;
}

.carrinho-item-actions button:hover {
    color: #e0558a;
}

.carrinho-total {
    font-size: 24px;
    font-weight: bold;
    color: var(--rosa-principal);
    margin-top: 20px;
    border-top: 2px solid var(--rosa-claro);
    padding-top: 20px;
    text-align: right;
}

.btn-checkout {
    background-color: var(--rosa-principal);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    width: 100%;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-checkout:hover {
    background-color: #e0558a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,107,158,0.4);
}


@media (max-width: 768px) {
    header .container {
        flex-direction: column; /* Coloca os itens em coluna */
        gap: 15px; /* Espaçamento entre os itens da coluna */
        justify-content: center; /* Centraliza horizontalmente */
    }

    /* Ajustes nos Media Queries para os novos elementos no hero */
    .hero-promocao {
        font-size: 18px;
        padding: 6px 20px;
    }
    .hero-preco {
        font-size: 32px;
    }
    .hero-preco-original {
        font-size: 24px;
    }
    .hero-preco-atual {
        font-size: 40px;
    }
    .hero-parcelamento {
        font-size: 18px;
    }
    #btn-comprar-agora-hero {
        font-size: 20px;
        padding: 15px 40px;
    }

    .produto {
        flex-direction: column;
        align-items: center;
    }

    .produto-imagem,
    .produto-info {
        max-width: 90%;
    }

    .section-description h2 {
        font-size: 28px;
    }
    /* Ajustes para o botão flutuante em telas menores */
    .btn-ver-carrinho {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
    .cart-item-count {
        padding: 3px 6px;
        font-size: 10px;
        top: -3px;
        right: -3px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }
    nav ul li a {
        font-size: 16px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
    /* Ajustes nos Media Queries para os novos elementos no hero */
    .hero-promocao {
        font-size: 16px;
        padding: 5px 15px;
    }
    .hero-preco {
        font-size: 28px;
    }
    .hero-preco-original {
        font-size: 20px;
    }
    .hero-preco-atual {
        font-size: 36px;
    }
    .hero-parcelamento {
        font-size: 16px;
    }
    #btn-comprar-agora-hero {
        font-size: 18px;
        padding: 12px 30px;
    }

    .produto-info h2 {
        font-size: 28px;
    }
    .preco {
        font-size: 24px;
    }
    .btn-comprar {
        font-size: 16px;
        padding: 12px 30px;
    }
    .btn-add-carrinho {
        font-size: 16px;
        padding: 12px 30px;
    }
    .parcelamento-info {
        font-size: 16px;
    }
    .section-description h2 {
        font-size: 24px;
    }
    .section-description p {
        font-size: 16px;
    }
    .carrinho-content {
        max-width: 100%;
        padding: 20px;
    }
    /* Ajustes para o botão flutuante em telas muito pequenas */
    .btn-ver-carrinho {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
    .cart-item-count {
        padding: 2px 5px;
        font-size: 9px;
        top: -2px;
        right: -2px;
    }
}
 .hero-vertical-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-text-above {
    text-align: center;
    max-width: 800px;
    margin-bottom: 20px;
}

.hero-text-above h1 {
    color: #ff4081;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.hero-text-above p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
}

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    max-height: 610px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hero-promo-below {
    text-align: center;
    max-width: 500px;
    padding: 30px;
    background: linear-gradient(135deg, #ff4081, #e91e63);
    border-radius: 15px;
    color: white;
    box-shadow: 0 5px 20px rgba(255,64,129,0.3);
}