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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0c0c0c;
    color: #e5e5e5;
    overflow-x: hidden;
    /* Use Inter as default */
    font-family: 'Inter', sans-serif;
}

/* Custom Typography */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-sans {
    font-family: 'Inter', sans-serif;
}

/* Gradients and Gold accents */
.text-gradient-gold {
    background: linear-gradient(135deg, #FFF0BA 0%, #D4AF37 50%, #9A7736 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */
}

.bg-gradient-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B58B24 100%);
}

.bg-dark-section {
    background-color: #121214;
}

.bg-card {
    background-color: #1a1a1f;
    border: 1px solid #2a2a30;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, #D4AF37, #A88120);
    color: #0a0a0c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
    border: 1px solid #D4AF37;
    color: #D4AF37;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

/* Slide Styles */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Large on screen */
    height: 60vh;
    min-height: 400px;
    max-height: 800px;
    display: flex;
    align-items: center;
    background-color: #0c0c0c;
    /* Matches body */
}

/* Fading edges for the slider */
.slider-container::before,
.slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 10vw;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(to right, #0c0c0c 0%, rgba(12, 12, 12, 0) 100%);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to left, #0c0c0c 0%, rgba(12, 12, 12, 0) 100%);
}

.slider-track {
    display: flex;
    height: 100%;
    width: max-content;
}

.slider-track img {
    height: 100%;
    width: auto;
    object-fit: contain;
    /* Prevents distortion */
    padding-right: 0;
    /* Removido o espaço entre as imagens */
    will-change: transform;
    flex-shrink: 0;
    /* Garante que as fotos não se espremam sob nenhuma condição */
}

/* Setas de navegação (apenas desktop) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #D4AF37;
    color: #D4AF37;
    display: none;
    /* Hidden by default, shown on md:flex */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #D4AF37;
    color: #0c0c0c;
}

/* Form Elements */
.input-premium {
    background-color: #1a1a1f;
    border: 1px solid #2a2a30;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-premium:focus {
    border-color: #D4AF37;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

@media (min-width: 768px) {
    .slider-arrow {
        display: flex;
    }
}



/* Floating WhatsApp button */
.whatsapp-floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    z-index: 50;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-floating:hover {
    transform: scale(1.1);
    background-color: #1EBE5D;
}

.whatsapp-floating svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}