/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f0eb;
    color: #2c2c2c;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ===== HEADER ===== */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 60px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 50%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.hero-content { position: relative; z-index: 2; }

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #d4af37;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.logo span {
    font-style: italic;
    font-weight: 400;
    color: #f0e6d3;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #c9b896;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1rem;
    color: #a89070;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gold-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 20px auto;
}

/* ===== NAV ===== */
.nav-bar {
    background: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: wrap;
}

.nav-bar a {
    color: #555;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
    padding: 10px 0;
}

.nav-bar a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

.nav-bar a:hover { color: #d4af37; }
.nav-bar a:hover::after { width: 100%; }

/* ===== DROPDOWN CORRIGIDO ===== */
.nav-dropdown {
    position: relative;
    padding: 10px 0;
}

.nav-dropdown > a {
    padding: 10px 0;
}

.nav-dropdown > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

.nav-dropdown:hover > a { color: #d4af37; }
.nav-dropdown:hover > a::after { width: 100%; }

/* Área invisível que conecta o link ao submenu */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 220px;
    margin-top: 0;
    z-index: 200;
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all 0.3s;
    color: #555;
}

.dropdown-menu a:hover {
    background: #f5f0eb;
    color: #d4af37;
}

.dropdown-menu a::after {
    display: none !important;
}

/* ===== SECTIONS ===== */
.section-title {
    text-align: center;
    padding: 60px 20px 40px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.section-title p {
    color: #888;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.section-divider .line {
    width: 60px;
    height: 1px;
    background: #d4af37;
}

.section-divider .diamond {
    width: 8px;
    height: 8px;
    background: #d4af37;
    transform: rotate(45deg);
}

/* ===== PERFUME CARDS ===== */
.catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 60px;
}

.perfume-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    transition: transform 0.4s, box-shadow 0.4s;
}

.perfume-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

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

.perfume-image {
    flex: 0 0 380px;
    height: 420px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f9f4ef, #f0e8dd);
}

.perfume-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.perfume-row:hover .perfume-image img { transform: scale(1.05); }

.perfume-image .badge {
    position: absolute;
    top: 20px; left: 20px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
}

.badge-masculino {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
}

.badge-feminino {
    background: linear-gradient(135deg, #c06c84, #f67280);
}

.badge-pronta {
    position: absolute;
    top: 20px; right: 20px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #28a745, #20c997);
    z-index: 2;
}

.perfume-info {
    flex: 1;
    padding: 40px 50px;
}

.perfume-contratipo {
    font-size: 0.75rem;
    color: #d4af37;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.perfume-brand {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
}

.perfume-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.perfume-notes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.note-tag {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #f5f0eb;
    color: #555;
    border: 1px solid #e8e0d8;
}

.perfume-description {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.7;
    margin-bottom: 20px;
}

.perfume-similar {
    background: linear-gradient(135deg, #f9f4ef, #f0e8dd);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #555;
    border-left: 3px solid #d4af37;
    margin-bottom: 20px;
}

.perfume-similar strong { color: #d4af37; }

.perfume-price {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
}

.price-old {
    font-size: 1rem;
    color: #bbb;
    text-decoration: line-through;
}

.btn-comprar {
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4af37, #c49b2a);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-comprar:hover {
    background: linear-gradient(135deg, #c49b2a, #b08a20);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

/* ===== HOME PAGE ===== */
.home-features {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover { transform: translateY(-8px); }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.feature-card p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
}

.categories {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.category-card {
    position: relative;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.category-card:hover { transform: scale(1.02); }

.category-masculino {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
}

.category-feminino {
    background: linear-gradient(135deg, #c06c84, #f67280);
}

.category-card .content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 30px;
}

.category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-category {
    padding: 12px 35px;
    background: rgba(255,255,255,0.2);
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-category:hover {
    background: #fff;
    color: #1a1a2e;
}

.highlight-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 80px 30px;
    text-align: center;
    color: #f0e6d3;
}

.highlight-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.highlight-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    color: #c9b896;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #c9b896;
    text-align: center;
    padding: 50px 20px;
}

footer .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 15px;
}

footer p {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #a89070;
}

footer .social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

footer .social-links a {
    color: #d4af37;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

footer .social-links a:hover { color: #f0e6d3; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .logo { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.85rem; letter-spacing: 4px; }
    .perfume-row, .perfume-row.reverse { flex-direction: column; }
    .perfume-image { flex: none; width: 100%; height: 300px; }
    .perfume-info { padding: 30px 25px; }
    .perfume-name { font-size: 1.5rem; }
    .nav-bar { gap: 15px; }
    .section-title h2 { font-size: 1.8rem; }
    .categories { grid-template-columns: 1fr; }
    .category-card h3 { font-size: 1.8rem; }
    .home-features { grid-template-columns: 1fr; }
}

/* ===== BOTÃO WHATSAPP ===== */
.btn-whatsapp {
    display: inline-block;
    padding: 12px 30px;
    background: #25D366; /* Cor oficial do WhatsApp */
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ===== SEÇÃO PERFUME SOB ENCOMENDA ===== */
.encomenda-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 60px 30px;
    text-align: center;
    margin: 40px 0;
}

.encomenda-content {
    max-width: 700px;
    margin: 0 auto;
}

.encomenda-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.encomenda-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.encomenda-texto {
    font-size: 1.1rem;
    color: #f0e6d3;
    line-height: 1.8;
    margin-bottom: 30px;
}

.encomenda-texto strong {
    color: #d4af37;
    font-weight: 700;
}

.btn-encomenda {
    display: inline-block;
    padding: 15px 40px;
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-encomenda:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

/* ===== SEPARAR RODAPÉ DA SEÇÃO ANTERIOR ===== */
.highlight-section {
    position: relative;
    padding-bottom: 80px; /* Aumenta o espaçamento inferior */
}

.highlight-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

footer {
    background: linear-gradient(135deg, #0d0d1a 0%, #111128 100%) !important; /* Mais escuro que a seção anterior */
    padding-top: 60px;
    position: relative;
}

/* ===== SEÇÃO DEPOIMENTOS ===== */
.depoimentos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.depoimento-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.depoimento-card:hover {
    transform: translateY(-8px);
}

.depoimento-foto {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d4af37;
}

.depoimento-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-estrelas {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.depoimento-texto {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.depoimento-autor {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.depoimento-autor strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1a1a2e;
}

.depoimento-autor span {
    font-size: 0.8rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsivo */
@media (max-width: 768px) {
    .depoimentos-container {
        grid-template-columns: 1fr;
    }
}
