/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: #0F172A;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.02em;
}

/* ===== TIPOGRAFIA ===== */
.font-serif-display {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.08em;
}

.font-serif-body {
    font-family: 'Cormorant Garamond', serif;
}

.font-sans-light {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
}

/* ===== LOGOTIPO ===== */
.brand-logo {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 0.25em;
    font-size: 1.1rem;
    color: #0F172A;
    position: relative;
    padding: 0.25rem 0;
}

.brand-logo::before,
.brand-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C5A059, transparent);
}

.brand-logo::before {
    left: -28px;
}

.brand-logo::after {
    right: -28px;
}

@media (max-width: 640px) {
    .brand-logo {
        font-size: 0.9rem;
        letter-spacing: 0.18em;
    }
    .brand-logo::before,
    .brand-logo::after {
        width: 12px;
    }
    .brand-logo::before {
        left: -18px;
    }
    .brand-logo::after {
        right: -18px;
    }
}

/* ===== CABEÇALHO ===== */
.header-sticky {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    transition: all 0.4s ease;
}

.header-sticky.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 20px rgba(15, 23, 42, 0.04);
}

.cart-icon-wrapper {
    position: relative;
    padding: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cart-icon-wrapper:hover {
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #C5A059;
    color: white;
    font-size: 0.65rem;
    font-weight: 500;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0;
    box-shadow: 0 2px 6px rgba(197, 160, 89, 0.4);
    animation: badgePop 0.4s ease;
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }
    60% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    height: 100%;
    min-height: 680px;
    overflow: hidden;
    background: #0a0f1c;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(10, 15, 28, 0.55) 0%, rgba(10, 15, 28, 0.25) 50%, rgba(10, 15, 28, 0.65) 100%), url('https://images.unsplash.com/photo-1602751584552-8ba73aad10e1?w=1920&q=90');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.hero-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, rgba(197, 160, 89, 0.08), rgba(255, 255, 255, 0.15), rgba(197, 160, 89, 0.08), transparent );
    animation: heroShine 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroShine {
    0% {
        left: -100%;
    }
    50% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: #C5A059;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.2rem, 6vw, 4.75rem);
    line-height: 1.1;
    margin: 0;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.6s forwards;
}

.hero-title em {
    font-style: italic;
    color: #C5A059;
    font-weight: 400;
}

.hero-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #C5A059, transparent);
    margin: 2.5rem auto;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== BOTÕES ===== */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2.75rem;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #C5A059;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #C5A059;
    transform: translateX(-101%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-luxury:hover::before {
    transform: translateX(0);
}

.btn-luxury:hover {
    color: #FFFFFF;
    border-color: #C5A059;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.btn-gold {
    background: linear-gradient(135deg, #C5A059 0%, #D4B574 50%, #C5A059 100%);
    background-size: 200% 100%;
    color: #FFFFFF;
    border: none;
    padding: 1.1rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    background-position: 100% 0;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
    transform: translateY(-2px);
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-gold:hover::after {
    left: 150%;
}

/* ===== CABEÇALHOS DE SEÇÃO ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: #C5A059;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.2;
    color: #0F172A;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.01em;
}

.section-title em {
    font-style: italic;
    color: #C5A059;
}

.section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: rgba(15, 23, 42, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.section-ornament .line {
    width: 40px;
    height: 1px;
    background: #C5A059;
}

.section-ornament .diamond {
    width: 6px;
    height: 6px;
    background: #C5A059;
    transform: rotate(45deg);
}

/* ===== GRADE DE PRODUTOS ===== */
.product-card {
    position: relative;
    background: #FAFAF7;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f5f3ee;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

/* Efeito de brilho */
.product-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient( 100deg, transparent 20%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.15) 60%, transparent 80% );
    transform: skewX(-25deg);
    z-index: 2;
    transition: left 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.product-card:hover .product-card-image::before {
    left: 125%;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.75rem 1.5rem;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-top: none;
}

.product-category {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: #C5A059;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #0F172A;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.02em;
}

.product-price {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #0F172A;
    margin-bottom: 1.25rem;
}

.product-price span {
    color: #C5A059;
    font-weight: 500;
}

.btn-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.85rem 1rem;
    background: transparent;
    border: 1px solid rgba(15, 23, 42, 0.15);
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: #0F172A;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-add-cart:hover {
    background: #0F172A;
    color: #FFFFFF;
    border-color: #0F172A;
}

.btn-add-cart.added {
    background: #C5A059;
    color: #FFFFFF;
    border-color: #C5A059;
}

.btn-add-cart i {
    width: 14px;
    height: 14px;
}

/* ===== BARRA DE RECURSOS ===== */
.features-bar {
    background: #0F172A;
    color: #FFFFFF;
    padding: 3rem 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.feature-item i {
    width: 28px;
    height: 28px;
    color: #C5A059;
    stroke-width: 1.25;
}

.feature-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    margin: 0;
    font-weight: 500;
}

.feature-item p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 0.05em;
}

/* ===== FORMULÁRIO DE CONTATO ===== */
.contact-section {
    background: linear-gradient(180deg, #FAFAF7 0%, #FFFFFF 100%);
    padding: 6rem 1.5rem;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #C5A059);
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: #0F172A;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.9rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #0F172A;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: #C5A059;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(15, 23, 42, 0.35);
    font-weight: 300;
}

.form-textarea {
    resize: none;
    min-height: 100px;
    font-family: 'Raleway', sans-serif;
}

.form-success {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), rgba(197, 160, 89, 0.15));
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 1.25rem;
    text-align: center;
    color: #8B7340;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 1.5rem;
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-success.show {
    display: block;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 100;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.4s ease;
    text-decoration: none;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}

/* ===== GAVETA DO CARRINHO ===== */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -20px 0 60px rgba(15, 23, 42, 0.15);
    z-index: 200;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 150;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: 1.75rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    margin: 0;
    color: #0F172A;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #0F172A;
    padding: 0.25rem;
    transition: transform 0.3s ease;
}

.cart-close:hover {
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 1.75rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(15, 23, 42, 0.5);
}

.cart-empty i {
    width: 48px;
    height: 48px;
    stroke-width: 1;
    margin-bottom: 1rem;
    color: #C5A059;
    opacity: 0.6;
}

.cart-empty p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    margin: 0;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-image {
    width: 70px;
    height: 90px;
    object-fit: cover;
    background: #f5f3ee;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: #0F172A;
    margin: 0 0 0.25rem 0;
}

.cart-item-price {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    color: #C5A059;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.cart-item-remove {
    background: none;
    border: none;
    color: rgba(15, 23, 42, 0.4);
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: left;
    padding: 0;
    transition: color 0.3s ease;
}

.cart-item-remove:hover {
    color: #C5A059;
}

.cart-footer {
    padding: 1.5rem 1.75rem;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    background: #FAFAF7;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.cart-total-label {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: #0F172A;
}

.cart-total-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #C5A059;
    font-weight: 500;
}

/* ===== RODAPÉ ===== */
.footer {
    background: #0F172A;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 1.5rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 0.25em;
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #C5A059;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #C5A059;
}

.footer-divider {
    width: 60%;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.4), transparent);
    margin: 0 auto 2rem;
}

.footer-copyright {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
}

/* Notificação Toast */
.toast {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #0F172A;
    color: #FFFFFF;
    padding: 1rem 2rem;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    border-left: 3px solid #C5A059;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
    z-index: 300;
    opacity: 0;
    transition: all 0.4s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Rolagem suave */
html {
    scroll-behavior: smooth;
}

/* Barra de rolagem personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FAFAF7;
}

::-webkit-scrollbar-thumb {
    background: #C5A059;
    border-radius: 4px;
}

body {
    box-sizing: border-box;
}

