/* Variáveis CSS */
:root {
    --color-black: #0a0a0a;
    --color-gold-primary: #C9A84C;
    --color-gold-secondary: #D4AF37;
    --color-white: #FFFFFF;
    --color-dark-gray: #111111;
}

/* Fontes */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Estilos gerais para botões */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
    background-color: var(--color-gold-primary);
    color: var(--color-black);
    border: 2px solid var(--color-gold-primary);
}

.btn-primary:hover {
    background-color: var(--color-gold-secondary);
    border-color: var(--color-gold-secondary);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-gold-primary);
    border: 2px solid var(--color-gold-primary);
}

.btn-outline:hover {
    background-color: var(--color-gold-primary);
    color: var(--color-black);
}

.btn-buy-green {
    background-color: #1d9c28;
    color: #ffffff;
    border: 2px solid #1d9c28;
}

.btn-buy-green:hover {
    background-color: #167a1f;
    border-color: #167a1f;
    color: #ffffff;
}

.text-green {
    color: #1d9c28 !important;
}

/* Estilos para títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--color-white);
    margin-bottom: 1rem;
}

/* Container padrão */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animações de scroll (exemplo, será refinado no JS) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Ocultar foto, nome e preços do widget da Yampi, deixando apenas o botão */
.ymp-buy-button-holder .ymp-holder-item {
    display: none !important;
}

/* Centralizar os controles que sobram (quantidade e botão de compra) */
.ymp-buy-button-holder .holder-button {
    margin-top: 0 !important;
    padding: 0 !important;
    justify-content: center !important;
}

/* Ocultar ícone de carrinho antigo do topo (usando Checkout Direto Yampi) */
.cart-action {
    display: none !important;
}

/* =============================================
   SOCIAL PROOF - CARROSSEL 3D
   ============================================= */

.social-proof {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, var(--color-black) 0%, #0d0d0d 50%, var(--color-black) 100%);
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-proof-carousel {
    padding-bottom: 50px;
    overflow: visible;
}

.social-proof-carousel .swiper-slide {
    width: 320px;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.social-proof-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.social-proof-carousel .swiper-slide-active {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(201, 168, 76, 0.25), 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Setas de navegação */
.social-proof-carousel .swiper-button-next,
.social-proof-carousel .swiper-button-prev {
    color: var(--color-gold-primary);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.3);
    transition: all 0.3s ease;
}

.social-proof-carousel .swiper-button-next:hover,
.social-proof-carousel .swiper-button-prev:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--color-gold-primary);
}

.social-proof-carousel .swiper-button-next::after,
.social-proof-carousel .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Bolinhas de paginação */
.social-proof-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.social-proof-carousel .swiper-pagination-bullet-active {
    background: var(--color-gold-primary);
    width: 28px;
    border-radius: 5px;
}

/* Sombra 3D nos slides laterais */
.social-proof-carousel .swiper-slide-shadow-left,
.social-proof-carousel .swiper-slide-shadow-right {
    border-radius: 16px;
}

/* Responsivo */
@media (max-width: 768px) {
    .social-proof-carousel .swiper-slide {
        width: 260px;
        height: 350px;
    }

    .social-proof-carousel .swiper-button-next,
    .social-proof-carousel .swiper-button-prev {
        display: none;
    }

    .social-proof {
        padding: 3rem 0 4rem;
    }
}

@media (max-width: 480px) {
    .social-proof-carousel .swiper-slide {
        width: 220px;
        height: 300px;
    }
}
