/* --- Variáveis de Cores (Baseado na Imagem) --- */
:root {
    --bg-pink: #FFF0F3;       /* Fundo rosa claro */
    --text-dark: #2F3E32;     /* Verde escuro quase preto para textos */
    --green-btn: #709266;     /* Verde "Sálvia" dos botões */
    --green-btn-hover: #5A7A50;
    --card-bg: #F4F9F4;       /* Fundo esverdeado bem claro dos cards */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-pink);
    font-family: var(--font-sans);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Header --- */
header {
    /* --- Posicionamento (Para ficar em cima da imagem) --- */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;

    /* --- Layout (O que estava faltando para arrumar a bagunça) --- */
    display: flex;               /* Faz os itens ficarem lado a lado */
    justify-content: space-between; /* Espalha: Logo na esq, Menu no meio, Ícones na dir */
    align-items: center;         /* Centraliza na altura */
    padding: 20px 5%;            /* Espaçamento das bordas */
}
.welcome-text {
    /* A fonte "chique" é a Playfair Display */
    font-family: 'Playfair Display', serif; 
    font-style: italic;       /* Deixa itálico para ficar mais elegante */
    font-size: 1.5rem;        /* Tamanho da letra */
    color: var(--text-dark);  /* Cor escura */
    margin-bottom: 10px;
    font-weight: 400;
}

/* Ajuste na cor dos links do menu se o fundo da imagem for escuro */
nav a {
    color: var(--text-dark); /* Mude para #fff se sua imagem de fundo for escura */
    font-weight: 500;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: #b58d8d; /* Tom rosado do logo */
}

.logo-img {
    border-radius: 50%;
    width: 90px;
}

nav ul {
    display: flex;
    gap: 30px;
}



nav a:hover, nav a.active {
    color: var(--text-dark);
    font-weight: 600;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    color: #555;
}

.cart-icon {
    position: relative;
}

.badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #ff8fa3;
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle {
    display: none; /* Escondido no desktop */
}

/* --- Botões Gerais --- */
.btn-primary {
    background-color: var(--green-btn);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: var(--green-btn-hover);
}

.btn-secondary {
    background-color: var(--green-btn);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: inline-block;
    opacity: 0.9;
    transition: 0.3s;
}

.btn-secondary:hover {
    opacity: 1;
}

/* --- Hero Section --- */
/* --- HERO SECTION COM BACKGROUND --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa 100% da altura da tela */
    /* INSIRA AQUI A URL DA SUA IMAGEM DE FUNDO GRANDE */
    background-image: url('hero-img.png');
    background-size: cover; /* Faz a imagem cobrir tudo */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: flex-start; /* Alinha texto à esquerda (use 'center' para centralizar) */
    padding: 0 10%; /* Espaçamento lateral */
    margin-top: 0; /* Remove margens antigas */
}

/* Efeito opcional: Overlay para melhorar leitura do texto */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,240,243,0.8), rgba(255,255,255,0)); /* Gradiente suave */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Texto acima do overlay */
    max-width: 600px; /* Limita largura do texto */
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}
/* --- Bestsellers --- */
.bestsellers {
    padding: 60px 5%;
    background: linear-gradient(to bottom, var(--bg-pink), #fff); /* Degradê suave */
}

.bestsellers h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--card-bg);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.card-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    mix-blend-mode: multiply; /* Ajuda a tirar o fundo branco da imagem se ela não for PNG */
}

.product-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* --- Promo Section --- */
.promo {
    display: flex;
    align-items: center;
    padding: 60px 5%;
    gap: 40px;
}

.promo-image {
    flex: 1;
}

.promo-image img {
    max-width: 100%;
    border-radius: 20px;
}

.promo-content {
    flex: 1;
    text-align: left;
}

.promo-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.promo-content p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

/* --- Responsividade (Mobile) --- */
@media (max-width: 768px) {
    nav {
        display: none; /* Esconde menu no mobile por enquanto */
    }
    
    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .promo {
        flex-direction: column-reverse;
        text-align: center;
    }

    .promo-content {
        text-align: center;
    }
}
/* --- ESTILOS DA PÁGINA DE LOGIN --- */

.login-container {
    display: flex;
    min-height: 100vh; /* Garante altura mínima, mas deixa crescer se precisar */
    width: 100%;
    background-color: #fff;
    /* Removemos o overflow: hidden para permitir rolagem se a tela for pequena */
}

/* Lado da Imagem */
.login-image-side {
    flex: 1; /* Ocupa 50% da tela */
    background-color: var(--bg-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-height: 100vh; /* Garante que a cor de fundo vá até o final */
}

.login-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha tudo sem distorcer */
    opacity: 0.9;
}

/* Lado do Formulário */
.login-form-side {
    flex: 1; /* Ocupa os outros 50% */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #fff;
}

.form-wrapper {
    width: 100%;
    max-width: 400px; /* Largura máxima do formulário para não ficar esticado */
}

/* Cabeçalho do Login */
/* --- Ajuste do Logo no Login e Cadastro --- */
.logo-login {
    display: flex;
    flex-direction: column; /* Coloca a imagem em cima e o texto embaixo */
    align-items: center;    /* Centraliza tudo horizontalmente */
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

/* Controla o tamanho da imagem do logo especificamente no login */
.logo-login img {
    width: 100px; /* Tamanho bem menor (ajuste esse número se quiser) */
    height: auto;
    border-radius: 50%; /* Garante que fique redondinho se for o logo circular */
}

/* Opcional: Se quiser diminuir o texto "Floral Boutique" abaixo do logo */
.logo-login span {
    font-size: 1.2rem;
    color: #b58d8d;
}

.login-form-side h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.subtitle {
    color: #888;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

/* Inputs */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px; /* Bordas arredondadas suaves */
    font-family: var(--font-sans);
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: var(--green-btn);
    background-color: #f9fff9;
}

/* Opções (Lembrar / Esqueci senha) */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.remember-me {
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.forgot-pass {
    color: var(--green-btn);
    font-weight: 500;
}

/* Botões do Login */
.full-width {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
}

.btn-google {
    width: 100%;
    padding: 12px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    color: #555;
    cursor: pointer;
    transition: 0.3s;
}

.btn-google:hover {
    background-color: #f5f5f5;
}

/* Rodapé do Form */
.signup-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.signup-link a {
    color: var(--green-btn);
    font-weight: 600;
}

.back-home {
    margin-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

.back-home a {
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.back-home a:hover {
    color: var(--text-dark);
}

/* --- Responsividade do Login --- */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-image-side {
        display: none; /* Esconde a imagem no celular para focar no login */
    }

    .login-form-side {
        padding: 20px;
    }
}
/* --- PÁGINA DO CARRINHO --- */

.cart-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5%;
    min-height: 80vh;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2 partes para itens, 1 para resumo */
    gap: 40px;
    align-items: start;
}

/* Tabela de Itens */
.cart-items {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    font-weight: 600;
    color: #888;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Detalhes do Item */
.item-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.item-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.item-details h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.item-details p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
}

.remove-btn {
    font-size: 0.8rem;
    color: #e57373;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.remove-btn:hover {
    color: #d32f2f;
    text-decoration: underline;
}

/* Inputs e Preços */
.item-price, .item-total {
    font-weight: 500;
    color: var(--text-dark);
}

.item-quantity input {
    width: 60px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    font-family: var(--font-sans);
}

/* --- Resumo do Carrinho (Sidebar) --- */
.cart-summary {
    background-color: var(--card-bg); /* Fundo verdinho claro */
    padding: 30px;
    border-radius: 10px;
    position: sticky;
    top: 20px; /* Segue ao rolar a página */
}

.cart-summary h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.summary-divider {
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    margin: 20px 0;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.security-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* --- Responsividade do Carrinho --- */
@media (max-width: 768px) {
    .cart-container {
        grid-template-columns: 1fr; /* Empilha tudo */
    }

    .cart-header {
        display: none; /* Esconde cabeçalho da tabela no mobile */
    }

    .cart-item {
        grid-template-columns: 1fr; /* Item ocupa linha toda */
        text-align: center;
        gap: 15px;
        position: relative;
    }

    .item-info {
        flex-direction: column;
    }

    .item-img img {
        width: 100px;
        height: 100px;
    }

    /* Ajustes para alinhar inputs no centro no mobile */
    .item-price, .item-quantity, .item-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }
    
    /* Adiciona labels antes dos valores no mobile */
    .item-price::before { content: "Price:"; color: #888; font-size: 0.9rem; }
    .item-quantity::before { content: "Quantity:"; color: #888; font-size: 0.9rem; }
    .item-total::before { content: "Total:"; color: #888; font-size: 0.9rem; font-weight: 600; }
}
/* --- SEÇÃO DE CATEGORIAS E GRADE 4x3 --- */
.shop-categories {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
}

/* Botões de Categoria (Cat 1, Cat 2...) */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cat-btn {
    background: none;
    border: none;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px 20px;
    color: #888;
    position: relative;
    transition: 0.3s;
}

.cat-btn:hover, .cat-btn.active {
    color: var(--text-dark);
}

/* Linha embaixo do botão ativo */
.cat-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--green-btn);
}

/* Grade de Produtos (4 por linha) */
.products-grid-full {
    display: grid;
    /* Cria 4 colunas de tamanho igual */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
}

/* Estilo do Card individual na grade */
.products-grid-full .product-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
    text-align: center;
}

.products-grid-full .product-card:hover {
    transform: translateY(-5px);
}

.products-grid-full img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
    mix-blend-mode: multiply;
}

.price {
    display: block;
    margin-top: 5px;
    font-weight: 600;
    color: var(--green-btn);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .products-grid-full {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em tablets */
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .products-grid-full {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em celular */
        gap: 15px;
    }

    .hero {
        justify-content: center;
        text-align: center;
        background-position: center;
    }
}
/* --- PÁGINA DE DETALHES DO PRODUTO --- */

.product-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Metade Imagem, Metade Texto */
    gap: 60px;
    align-items: start;
}

/* Galeria de Imagens */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image img {
    width: 100%;
    border-radius: 10px;
    background-color: var(--card-bg);
    object-fit: cover;
}

.thumbnail-list {
    display: flex;
    gap: 15px;
}

.thumbnail-list img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
    border: 1px solid transparent;
}

.thumbnail-list img:hover {
    opacity: 1;
    border-color: var(--green-btn);
}

/* Informações do Produto */
.product-info .breadcrumb {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.product-info h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.price-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--green-btn);
}

.rating {
    color: #ffc107; /* Cor amarela das estrelas */
    font-size: 0.9rem;
}

.rating span {
    color: #888;
    margin-left: 5px;
}

.description {
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Opções (Tamanho, Qtd) */
.product-options {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.option-group select, .option-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-sans);
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

/* Ajuste no botão secundário (Coração) */
.btn-secondary i {
    font-size: 1.2rem;
}

.meta-info p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.meta-info strong {
    color: var(--text-dark);
}

/* Responsividade Produto */
@media (max-width: 768px) {
    .product-details-container {
        grid-template-columns: 1fr; /* Um embaixo do outro */
        gap: 30px;
        padding-top: 20px;
    }

    .main-image img {
        width: 100%;
    }
}

/* --- ESTILOS DO PERFIL (PROFILE) --- */
.profile-container {
    max-width: 1000px;
    margin: 120px auto 60px; /* Margem superior grande por causa do header absolute */
    padding: 0 5%;
    display: flex;
    gap: 40px;
}

.profile-sidebar {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: fit-content;
    text-align: center;
}

.user-avatar {
    width: 100px;
    height: 100px;
    background-color: var(--bg-pink);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--green-btn);
}

.profile-menu button {
    display: block;
    width: 100%;
    padding: 15px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    color: #666;
    transition: 0.3s;
}

.profile-menu button:hover, .profile-menu button.active {
    color: var(--green-btn);
    font-weight: 600;
    background-color: #f9f9f9;
}

.profile-content {
    flex: 3;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.profile-content h2 {
    font-family: var(--font-serif);
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* --- ESTILOS DO CHECKOUT --- */
.checkout-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 5%;
}

.checkout-form-section, .checkout-summary-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .input-group {
    flex: 1;
}

/* Cartão de Crédito Fake */
.card-mock {
    background: linear-gradient(135deg, #2F3E32, #1a241d);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.card-number {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 20px 0;
}

.card-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* --- Responsividade e Menu Mobile --- */
@media (max-width: 768px) {
    /* 1. Regras existentes (Perfil e Checkout) */
    .profile-container, .checkout-wrapper {
        flex-direction: column;
        grid-template-columns: 1fr;
        margin-top: 100px;
    }

    /* 2. Mostra o ícone do menu (Hambúrguer) */
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--text-dark);
    }

    /* 3. Estilo do Menu Mobile (Gaveta) */
    nav {
        display: none; /* Escondido por padrão */
        position: absolute;
        top: 100%; /* Cola logo abaixo do cabeçalho */
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
        animation: slideDown 0.3s ease;
        padding-bottom: 20px;
    }

    /* Classe que o JS adiciona para abrir o menu */
    nav.active {
        display: block;
    }

    /* Organiza os links em coluna */
    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav li {
        width: 100%;
        text-align: center;
    }

    nav a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    /* Ajustes visuais extras para mobile */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .promo {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/* Animação suave para o menu */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- NOTIFICAÇÕES TOAST (CUSTOM ALERT) --- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: var(--green-btn);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 250px;
    
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.error {
    background-color: #e57373;
}

.toast i {
    font-size: 1.2rem;
}