/* S7 Soluções Financeiras - Estilos Customizados */

:root {
    --color-graphite: #0B0B0D;
    --color-gold: #D4AF37;
    --color-copper: #C27A45;
    --color-card-dark: #111315;
    --color-card-med: #1A1C1F;
    --color-card-light: #2B2E33;
    --color-text-base: #EAEAEA;
    --color-text-secondary: #B8BDC7;
    --color-accent: #D4AF37;
    --color-bg-primary: #0B0B0D;
    --color-bg-secondary: #111315;
    --color-border: rgba(212, 175, 55, 0.2);
}

/* Custom Tailwind Configuration */
.gold-border {
    border: 1px solid var(--color-gold);
}

.gradient-bg {
    background-image: linear-gradient(to right, #C27A45, #D4AF37);
}

.gold-icon {
    fill: var(--color-gold);
    stroke: var(--color-gold);
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Body padding to compensate for fixed header */
body {
    padding-top: 0;
}

/* Testimonial carousel styles */
.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .carousel-container {
        scroll-snap-type: none;
        overflow-x: hidden;
    }
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
        scroll-snap-align: none;
    }
}

/* Custom style for the subtle copper background sections */
.copper-section {
    background-color: rgba(194, 122, 69, 0.1); /* Subtle transparency */
    position: relative;
    overflow: hidden;
}

/* Efeito abstrato para a seção "Simples, técnico e ágil" */
.copper-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(194, 122, 69, 0.09) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.copper-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(194, 122, 69, 0.04) 50%, transparent 70%);
    animation: shimmer 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Animação flutuante */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

/* Animação shimmer */
@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.6;
        transform: translateX(100%);
    }
}

/* Garantir que o conteúdo fique acima do efeito */
.copper-section > * {
    position: relative;
    z-index: 1;
}

/* Otimizações para o vídeo de fundo */
#hero-video {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Estilos para o logo S7 */
.logo-s7 {
    width: 143px;
    height: 143px;
    max-width: 143px;
    max-height: 143px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.logo-s7:hover {
    transform: scale(1.05);
}

/* Garantir consistência entre navegadores */
.logo-s7,
.bank-logo-img {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Otimizações de performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Lazy loading para imagens */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}


/* Fallback para quando o vídeo não carrega */
#hero {
    background-image: linear-gradient(135deg, #0B0B0D 0%, #111315 50%, #0B0B0D 100%);
}

#hero-video[style*="display: none"] + .absolute {
    background: linear-gradient(135deg, #0B0B0D 0%, #111315 50%, #0B0B0D 100%);
}

/* Estilos para as setas do carrossel */
#carousel-prev, #carousel-next {
    transition: all 0.3s ease;
}

#carousel-prev:hover, #carousel-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Responsividade das setas */
@media (max-width: 768px) {
    #carousel-prev {
        left: -1rem;
    }
    
    #carousel-next {
        right: -1rem;
    }
    
    #carousel-prev, #carousel-next {
        width: 3rem; /* 48px - touch-friendly */
        height: 3rem; /* 48px - touch-friendly */
        min-width: 3rem;
        min-height: 3rem;
    }
    
    /* Ícones das setas mobile */
    #carousel-prev svg, #carousel-next svg {
        width: 1.25rem; /* 20px */
        height: 1.25rem; /* 20px */
    }
    
    /* Hover effect mobile mais sutil */
    #carousel-prev:hover, #carousel-next:hover {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    }
}

/* Button Styles - CashBrokers Inspired with Subtle Animations */
.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-graphite);
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-gold);
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    background-color: rgba(212, 175, 55, 0.9);
    box-shadow: 0 15px 25px -5px rgba(212, 175, 55, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0);
    transition: transform 0.1s;
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-graphite);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(212, 175, 55, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:active {
    transform: translateY(0);
    transition: transform 0.1s;
}

.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.btn-cta {
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover {
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-cta:hover::after {
    width: 300px;
    height: 300px;
}

.btn-cta:active {
    transform: translateY(0);
    transition: transform 0.1s;
}

.btn-cta:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-base);
    border: 1px solid var(--color-text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-decoration: none;
    position: relative;
    transform: translateY(0);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--color-gold);
    border-radius: 0.375rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-1px);
    box-shadow: 0 8px 15px -5px rgba(212, 175, 55, 0.2);
}

.btn-outline:hover::before {
    opacity: 1;
}

.btn-outline:active {
    transform: translateY(0);
    transition: transform 0.1s;
}

.btn-outline:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Card Styles - CashBrokers Inspired */
.card {
    background-color: var(--color-card-med);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-border);
    background: linear-gradient(135deg, var(--color-card-med) 0%, var(--color-card-dark) 100%);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(194, 122, 69, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(212, 175, 55, 0.1);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-copper) 100%);
    color: var(--color-graphite);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.4;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.card:hover .card-title {
    transform: translateY(-2px);
}

.card-description {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.625;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.card:hover .card-description {
    transform: translateY(-1px);
}

.card-link {
    color: var(--color-gold);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-copper);
    transition: width 0.3s ease;
}

.card-link:hover {
    color: var(--color-copper);
    transform: translateY(-1px);
}

.card-link:hover::after {
    width: 100%;
}

/* Testimonial Cards with Enhanced Animations */
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(194, 122, 69, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Feature Cards */
.feature-card {
    background-color: var(--color-card-med);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    background: linear-gradient(135deg, var(--color-card-med) 0%, var(--color-card-dark) 100%);
}

.feature-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-copper) 100%);
    color: var(--color-graphite);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.625;
}

/* Form Styles */
.form-input-styled {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    background-color: var(--color-card-med);
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    color: var(--color-text-base);
    transition: all 0.3s ease;
}

.form-input-styled::placeholder {
    color: var(--color-text-secondary);
}

.form-input-styled:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px var(--color-gold);
    border-color: transparent;
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in-up.delay-200 {
    animation-delay: 0.2s;
}

.animate-fade-in-up.delay-300 {
    animation-delay: 0.3s;
}

.animate-fade-in-up.delay-400 {
    animation-delay: 0.4s;
}

.animate-fade-in-up.delay-500 {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Styles with Enhanced Animations */
.faq-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(212, 175, 55, 0.1);
}

.faq-item:hover::before {
    left: 100%;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.faq-item:hover .faq-icon {
    transform: rotate(45deg) scale(1.1);
    color: var(--color-gold);
}

.faq-content {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
}

/* Mobile Menu Styles */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Header Styles */
#header {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transform: translateY(0); /* Always visible */
    opacity: 1;
}

/* Header fixed state with enhanced animations */
#header.header-fixed {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: headerSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header scroll animation */
#header.header-scrolling {
    animation: headerScrollEffect 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Keyframes for header animations */
@keyframes headerSlideIn {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes headerScrollEffect {
    0% {
        transform: translateY(-8px);
        opacity: 0.9;
    }
    50% {
        transform: translateY(1px);
        opacity: 0.95;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Smooth transitions for header elements */
#header * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Back to Top Button Styles */
.back-to-top-btn {
    background-color: var(--color-gold) !important;
    color: var(--color-graphite) !important;
    border: 2px solid var(--color-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    /* Alinhamento vertical com o botão WhatsApp */
    bottom: 7rem !important; /* 112px - posiciona com mais espaçamento acima do WhatsApp */
    right: 1.5rem !important; /* 24px - mesmo alinhamento horizontal */
}

.back-to-top-btn:hover {
    background-color: var(--color-graphite) !important;
    color: var(--color-gold) !important;
    border-color: var(--color-gold);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.back-to-top-btn.show {
    opacity: 1 !important;
    pointer-events: auto !important;
    animation: backToTopSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top-btn.hide {
    opacity: 0 !important;
    pointer-events: none !important;
    animation: backToTopSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes backToTopSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes backToTopSlideOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
}

/* WhatsApp Button Styles with Enhanced Animations */
.whatsapp-float {
    background-color: #25D366 !important;
    animation: whatsapp-pulse 2s infinite, whatsapp-float 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.whatsapp-float:hover {
    background-color: #128C7E !important;
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(37, 211, 102, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.whatsapp-float:hover::before {
    transform: translateX(100%);
}

.whatsapp-float:active {
    transform: scale(1.05);
    transition: transform 0.1s;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes whatsapp-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* How it Works Section - Enhanced Styles */
.tech-line {
    background: linear-gradient(180deg, 
        rgba(212, 175, 55, 0.8) 0%, 
        rgba(212, 175, 55, 0.6) 25%, 
        rgba(212, 175, 55, 0.4) 50%, 
        rgba(212, 175, 55, 0.6) 75%, 
        rgba(212, 175, 55, 0.8) 100%);
    animation: tech-line-glow 3s ease-in-out infinite alternate;
}

@keyframes tech-line-glow {
    0% {
        opacity: 0.4;
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }
    100% {
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    }
}

/* Timeline Vertical Styles */
.timeline-item {
    opacity: 0;
    transform: translateY(30px);
    animation: step-fade-in 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }
.timeline-item:nth-child(5) { animation-delay: 0.9s; }


@keyframes step-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-dot {
    animation: step-dot-pulse 2s ease-in-out infinite;
}

.step-dot-inner {
    animation: step-dot-inner-pulse 2s ease-in-out infinite;
}

@keyframes step-dot-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
}

@keyframes step-dot-inner-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.8);
    }
}

.step-number {
    animation: step-number-glow 2s ease-in-out infinite alternate;
    top: -3rem !important;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

@keyframes step-number-glow {
    0% {
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
    100% {
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    }
}

.step-content {
    position: relative;
    overflow: hidden;
}


.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.step-content:hover::before {
    left: 100%;
}

.step-icon {
    transition: all 0.3s ease;
    animation: step-icon-float 3s ease-in-out infinite;
}

@keyframes step-icon-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.step-content:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Responsive adjustments for timeline */
@media (max-width: 768px) {
    .timeline-item {
        animation-delay: 0s !important;
        transform: none !important;
    }
    
    .step-content {
        padding: 1.5rem !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        width: 100% !important;
    }
    
    /* Reset padding específico em mobile */
    .step-card:nth-child(1) .step-content,
    .step-card:nth-child(2) .step-content,
    .step-card:nth-child(3) .step-content,
    .step-card:nth-child(4) .step-content,
    .step-card:nth-child(5) .step-content {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .step-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .step-number {
        font-size: 0.75rem;
        top: -2.5rem !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .btn-cta {
        @apply w-full text-center;
    }
    
    .card {
        @apply p-6;
    }
    
    .form-input-styled {
        @apply pl-10;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success States */
.success {
    @apply text-green-400;
}

/* Error States */
.error {
    @apply text-red-400;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-card-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-copper);
}

/* Print Styles */
@media print {
    .whatsapp-float,
    #mobile-menu,
    .btn-primary,
    .btn-secondary,
    .btn-cta {
        display: none !important;
    }
}

/* Additional utility classes used in HTML */
.shadow-soft-glow {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.rotate-45 {
    transform: rotate(45deg);
}

.hidden {
    display: none;
}

/* WhatsApp floating button specific styles */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    background-color: var(--color-gold);
    color: var(--color-graphite);
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

/* CashBrokers Inspired Layout Styles */

/* Header Styles */
.header-modern {
    @apply fixed top-0 left-0 right-0 z-40 transition-all duration-300;
    background: rgba(11, 11, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.header-modern.scrolled {
    background: rgba(11, 11, 13, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-modern {
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    margin-top: 0; /* Remove qualquer margem superior */
    padding-top: 0; /* Remove padding superior */
    margin-bottom: 0; /* Remove margem inferior */
}

/* Garantir que o Hero comece exatamente na base do header */
#hero {
    margin-top: 0;
    padding-top: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-base);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-base);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--color-card-med) 0%, var(--color-card-dark) 100%);
    border: 1px solid var(--color-border);
}

.stat-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Grid Layouts */
.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2x2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.grid-3x2 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-3x2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .grid-3x2 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Centralizar o último card quando há 6 cards */
.grid-3x2 .card:nth-child(6) {
    grid-column: 2;
    justify-self: center;
}

@media (max-width: 1023px) {
    .grid-3x2 .card:nth-child(6) {
        grid-column: auto;
        justify-self: auto;
    }
}

/* Grid 4x3 - 4 cards na primeira linha, 3 na segunda */
.grid-4x3 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-4x3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .grid-4x3 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Centralizar os 3 cards da segunda linha */
.grid-4x3 .card:nth-child(5),
.grid-4x3 .card:nth-child(6),
.grid-4x3 .card:nth-child(7) {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .grid-4x3 .card:nth-child(5) {
        grid-column: 1;
    }
    .grid-4x3 .card:nth-child(6) {
        grid-column: 2;
    }
    .grid-4x3 .card:nth-child(7) {
        grid-column: 3;
    }
    
    /* Centralizar os 3 cards da segunda linha */
    .grid-4x3 .card:nth-child(5) {
        grid-column: 1;
        justify-self: center;
    }
    .grid-4x3 .card:nth-child(6) {
        grid-column: 2;
        justify-self: center;
    }
    .grid-4x3 .card:nth-child(7) {
        grid-column: 3;
        justify-self: center;
    }
}

/* Form Styles Modern */
.form-modern {
    background-color: var(--color-card-dark);
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--color-border);
    background: linear-gradient(135deg, var(--color-card-dark) 0%, var(--color-card-med) 100%);
}

@media (min-width: 768px) {
    .form-modern {
        padding: 3rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 0.5rem;
    display: block;
}

.form-input-modern {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-card-med);
    border: 1px solid #4b5563;
    border-radius: 0.375rem;
    color: var(--color-text-base);
    transition: all 0.3s ease;
}

.form-input-modern::placeholder {
    color: var(--color-text-secondary);
}

.form-input-modern:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px var(--color-gold);
    border-color: transparent;
    background: var(--color-card-light);
    transform: translateY(-1px);
}

/* Form Section Styles */
.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(212, 175, 55, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.form-section:hover {
    background-color: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.form-section h3 {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Enhanced form input styles */
.form-input-modern:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background-color: var(--color-card-light);
}

/* Select styling */
.form-input-modern select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Textarea styling */
.form-input-modern textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox styling */
input[type="checkbox"] {
    accent-color: var(--color-gold);
}

/* Form validation states */
.form-input-modern:invalid {
    border-color: #4D4D4D;
}

.form-input-modern:valid {
    border-color: rgba(34, 197, 94, 0.5);
}

/* Textarea validation states */
.form-input-modern textarea:invalid {
    border-color: #4D4D4D;
}

.form-input-modern textarea:valid {
    border-color: #4D4D4D;
}

/* Optional textarea - always gray border */
.form-input-modern textarea[placeholder*="opcional"],
.form-input-modern textarea#message,
.form-input-modern textarea[placeholder*="Conte-nos mais sobre sua"] {
    border-color: #4D4D4D !important;
}

/* Override valid state for optional message field */
.form-input-modern textarea#message:valid,
.form-input-modern textarea[placeholder*="Conte-nos mais sobre sua"]:valid {
    border-color: #4D4D4D !important;
}

/* Override invalid state for optional message field */
.form-input-modern textarea#message:invalid,
.form-input-modern textarea[placeholder*="Conte-nos mais sobre sua"]:invalid {
    border-color: #4D4D4D !important;
}

/* Footer Modern */
.footer-modern {
    background-color: var(--color-card-dark);
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, var(--color-card-dark) 0%, var(--color-bg-primary) 100%);
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: start;
    }
}

/* Mobile Footer Optimization */
@media (max-width: 768px) {
    .footer-modern {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .footer-grid {
        gap: 2.5rem;
    }
    
    /* Reorganizar seções do footer para mobile */
    .footer-section:first-child {
        order: 1;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-section:nth-child(2) {
        order: 2;
    }
    
    .footer-section:nth-child(3) {
        order: 3;
    }
    
    .footer-section:last-child {
        order: 4;
    }
    
    /* Logo e descrição centralizados no mobile */
    .footer-section:first-child .logo-s7 {
        margin: 0 auto 1.5rem auto;
        display: block;
    }
    
    .footer-section:first-child p {
        text-align: center;
        max-width: 300px;
        margin: 0 auto 1.5rem auto;
        line-height: 1.6;
    }
    
    /* Redes sociais centralizadas */
    .footer-section:first-child .flex {
        justify-content: center;
        margin-top: 1rem;
    }
    
    /* Títulos das seções com melhor espaçamento */
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        text-align: center;
        position: relative;
        padding-bottom: 0.5rem;
    }
    
    .footer-section h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background: var(--color-gold);
        border-radius: 1px;
    }
    
    /* Listas centralizadas e com melhor espaçamento */
    .footer-section ul {
        text-align: center;
        gap: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    /* Newsletter otimizada para mobile */
    .footer-section:last-child .mt-8 {
        margin-top: 2rem;
        text-align: center;
    }
    
    .footer-section:last-child form {
        flex-direction: column;
        gap: 1rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-section:last-child input {
        border-radius: 0.5rem;
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    
    .footer-section:last-child button {
        border-radius: 0.5rem;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Copyright section otimizada */
    .footer-modern .mt-12 {
        margin-top: 3rem;
        padding-top: 2rem;
        text-align: center;
    }
    
    .footer-modern .mt-12 p {
        margin-bottom: 0.75rem;
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .footer-modern .mt-12 p:last-child {
        margin-bottom: 0;
        margin-top: 1rem;
    }
}

/* Footer Mobile - Dispositivos muito pequenos */
@media (max-width: 480px) {
    .footer-modern {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    /* Logo maior em dispositivos muito pequenos */
    .footer-section:first-child .logo-s7 {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }
    
    /* Descrição mais compacta */
    .footer-section:first-child p {
        max-width: 280px;
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    /* Redes sociais menores */
    .footer-section:first-child .flex a {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .footer-section:first-child .flex svg {
        width: 1rem;
        height: 1rem;
    }
    
    /* Títulos menores */
    .footer-section h4 {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    /* Listas mais compactas */
    .footer-section ul {
        gap: 0.75rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.25rem;
    }
    
    .footer-section ul li a {
        font-size: 0.875rem;
    }
    
    /* Newsletter mais compacta */
    .footer-section:last-child form {
        max-width: 260px;
        gap: 0.875rem;
    }
    
    .footer-section:last-child input {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .footer-section:last-child button {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    /* Copyright mais compacto */
    .footer-modern .mt-12 {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }
    
    .footer-modern .mt-12 p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
}

.footer-section h4 {
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section a {
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-gold);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Missing Classes Fix */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in-up.delay-200 {
    animation-delay: 0.2s;
}

.animate-fade-in-up.delay-300 {
    animation-delay: 0.3s;
}

.animate-fade-in-up.delay-400 {
    animation-delay: 0.4s;
}

.animate-fade-in-up.delay-500 {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fix for Tailwind classes that might not be working */
.mt-20 {
    margin-top: 5rem;
}

.pt-24 {
    padding-top: 6rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-12 {
    padding: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.w-4 {
    width: 1rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-16 {
    width: 4rem;
}

.w-24 {
    width: 6rem;
}

.h-4 {
    height: 1rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.h-24 {
    height: 6rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.leading-relaxed {
    line-height: 1.625;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-t {
    border-top-width: 1px;
}

.border-gray-600 {
    border-color: #4b5563;
}

.border-gray-700 {
    border-color: #374151;
}

.border-transparent {
    border-color: transparent;
}

.bg-graphite {
    background-color: var(--color-graphite);
}

.bg-card-dark {
    background-color: var(--color-card-dark);
}

.bg-card-med {
    background-color: var(--color-card-med);
}

.bg-card-light {
    background-color: var(--color-card-light);
}

.bg-gold {
    background-color: var(--color-gold);
}

.bg-white {
    background-color: #ffffff;
}

.bg-black {
    background-color: #000000;
}

.bg-gray-200 {
    background-color: #e5e7eb;
}

.bg-gray-700 {
    background-color: #374151;
}

.bg-opacity-90 {
    background-color: rgba(0, 0, 0, 0.9);
}

.text-graphite {
    color: var(--color-graphite);
}

.text-gold {
    color: var(--color-gold);
}

.text-copper {
    color: var(--color-copper);
}

.text-text-base {
    color: var(--color-text-base);
}

.text-text-secondary {
    color: var(--color-text-secondary);
}

.text-white {
    color: #ffffff;
}

.text-black {
    color: #000000;
}

.text-green-400 {
    color: #4ade80;
}

.text-red-400 {
    color: #f87171;
}

.placeholder-text-secondary::placeholder {
    color: var(--color-text-secondary);
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px var(--color-gold);
}

.focus\:ring-gold:focus {
    box-shadow: 0 0 0 2px var(--color-gold);
}

.focus\:border-transparent:focus {
    border-color: transparent;
}

.hover\:text-gold:hover {
    color: var(--color-gold);
}

.hover\:text-copper:hover {
    color: var(--color-copper);
}

.hover\:bg-gold:hover {
    background-color: var(--color-gold);
}

.hover\:bg-opacity-90:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.hover\:bg-black:hover {
    background-color: #000000;
}

.hover\:bg-gray-200:hover {
    background-color: #e5e7eb;
}

.hover\:border-gold:hover {
    border-color: var(--color-gold);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:underline:hover {
    text-decoration: underline;
}

/* Ícones sociais - texto preto no hover */
.hover\:text-graphite:hover {
    color: var(--color-graphite) !important;
}

/* Regra mais específica para ícones sociais */
.footer-section a.hover\:text-graphite:hover {
    color: var(--color-graphite) !important;
}

/* Cor padrão dos ícones sociais */
.footer-section a.hover\:text-graphite {
    color: var(--color-text-secondary) !important;
}

/* Mensagens do formulário */
.form-message.success {
    color: var(--color-gold);
}

.form-message.error {
    color: #ef4444;
}

/* Mensagens da newsletter */
#newsletter-message.success {
    color: var(--color-gold);
}

#newsletter-message.error {
    color: #ef4444;
}

#newsletter-message.loading {
    color: var(--color-text-secondary);
    font-style: italic;
}

/* Estilos para o botão da newsletter */
#newsletter-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #9ca3af !important;
}

#newsletter-form button:disabled:hover {
    background-color: #9ca3af !important;
    transform: none;
}

/* Estilos para os logos dos bancos */
.bank-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
}


.bank-logo-img {
    width: 160px;
    height: 80px;
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
    display: block;
    -webkit-filter: brightness(0) invert(1) !important;
    background: transparent !important;
}

.bank-logo:hover .bank-logo-img {
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
    -webkit-filter: brightness(0) invert(1) !important;
    transform: scale(1.10);
    background: transparent !important;
}

/* Responsividade dos logos */
@media (max-width: 768px) {
    .bank-logo-img {
        width: 130px;
        height: 65px;
        max-width: 130px;
        max-height: 65px;
        transition: all 0.3s ease;
        filter: grayscale(0.3) brightness(0.9);
    }
    
    .bank-logo-img:hover {
        filter: grayscale(0) brightness(1);
        transform: scale(1.05);
    }
    
    /* Carrossel mobile melhorado */
    .carousel-container {
        padding: 1rem 0;
        scroll-behavior: smooth;
    }
    
    .bank-logo {
        padding: 0.75rem;
        border-radius: 0.75rem;
        background: rgba(26, 28, 31, 0.5);
        border: 1px solid rgba(212, 175, 55, 0.1);
        transition: all 0.3s ease;
    }
    
    .bank-logo:hover {
        background: rgba(26, 28, 31, 0.8);
        border-color: rgba(212, 175, 55, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
}

/* Responsividade adicional para dispositivos muito pequenos */
@media (max-width: 480px) {
    .logo-s7 {
        width: 140px; /* Aumentado de 100px para 140px */
        height: 140px; /* Aumentado de 100px para 140px */
        max-width: 140px;
        max-height: 140px;
    }
    
    .bank-logo-img {
        width: 110px;
        height: 55px;
        max-width: 110px;
        max-height: 55px;
    }
    
    .bank-logo {
        padding: 0.5rem;
    }
    
    /* Setas do carrossel para telas muito pequenas */
    #carousel-prev, #carousel-next {
        width: 2.5rem; /* 40px */
        height: 2.5rem; /* 40px */
        min-width: 2.5rem;
        min-height: 2.5rem;
    }
    
    #carousel-prev {
        left: -0.5rem;
    }
    
    #carousel-next {
        right: -0.5rem;
    }
    
    /* Ícones das setas para telas muito pequenas */
    #carousel-prev svg, #carousel-next svg {
        width: 1rem; /* 16px */
        height: 1rem; /* 16px */
    }
}

/* ===== MELHORIAS ESTÉTICAS MOBILE ===== */

/* Header Mobile Melhorado */
@media (max-width: 768px) {
    /* Header mais compacto e elegante */
    .header {
        padding: 0.75rem 1rem;
        backdrop-filter: blur(10px);
        background: rgba(11, 11, 13, 0.95);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    /* Logo mobile otimizado - MUITO MAIOR para mobile */
    .logo-s7 {
        width: 120px; /* Aumentado de 80px para 120px */
        height: 120px; /* Aumentado de 80px para 120px */
        transition: transform 0.3s ease;
    }
    
    .logo-s7:hover {
        transform: scale(1.05);
    }
    
    /* Botão hamburger mais elegante */
    #menu-toggle {
        padding: 0.5rem;
        border-radius: 0.5rem;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.3s ease;
    }
    
    #menu-toggle:hover {
        background: rgba(212, 175, 55, 0.2);
        transform: scale(1.05);
    }
    
    #menu-toggle:active {
        transform: scale(0.95);
    }
    
    /* Menu mobile melhorado */
    #mobile-menu {
        background: rgba(11, 11, 13, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        animation: slideDown 0.3s ease-out;
    }
    
    #mobile-menu a {
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        margin: 0.25rem 0;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    #mobile-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    #mobile-menu a:hover::before {
        left: 100%;
    }
    
    #mobile-menu a:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: translateX(0.25rem);
    }
}

/* Hero Section Mobile Melhorado */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }
    
    /* Botões mobile mais touch-friendly */
    .btn-primary,
    .btn-secondary,
    .btn-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 0.75rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        transition: all 0.3s ease;
    }
    
    .btn-primary:active,
    .btn-secondary:active,
    .btn-cta:active {
        transform: translateY(1px);
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    }
}

/* Formulários Mobile Melhorados */
@media (max-width: 768px) {
    .form-modern {
        padding: 1.5rem;
        border-radius: 1rem;
        background: rgba(26, 28, 31, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(212, 175, 55, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .form-input-modern {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 0.75rem;
        border: 2px solid rgba(212, 175, 55, 0.2);
        background: rgba(43, 46, 51, 0.5);
        transition: all 0.3s ease;
        min-height: 48px;
    }
    
    .form-input-modern:focus {
        border-color: var(--color-gold);
        background: rgba(43, 46, 51, 0.8);
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        transform: translateY(-1px);
    }
    
    .form-label {
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--color-gold);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    /* Select mobile melhorado */
    select.form-input-modern {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 0.75rem center;
        background-repeat: no-repeat;
        background-size: 1rem;
        padding-right: 2.5rem;
    }
    
    /* Textarea mobile melhorado */
    textarea.form-input-modern {
        resize: vertical;
        min-height: 120px;
        line-height: 1.5;
    }
    
    /* Checkbox mobile melhorado */
    input[type="checkbox"] {
        width: 1.25rem;
        height: 1.25rem;
        accent-color: var(--color-gold);
        border-radius: 0.25rem;
    }
}

/* Cards Mobile Melhorados */
@media (max-width: 768px) {
    .card {
        padding: 1.5rem;
        border-radius: 1rem;
        background: rgba(26, 28, 31, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(212, 175, 55, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border-color: rgba(212, 175, 55, 0.3);
    }
    
    /* Grid mobile otimizado */
    .grid {
        gap: 1rem;
    }
    
    .grid-cols-1 {
        gap: 1rem;
    }
    
    .grid-cols-2 {
        gap: 1rem;
    }
}

/* Seções Mobile Melhoradas */
@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        text-align: center;
        opacity: 0.9;
    }
}

/* Animações Mobile Otimizadas */
@media (max-width: 768px) {
    /* Reduzir animações em mobile para melhor performance */
    .animate-fade-in-up {
        animation-duration: 0.6s;
    }
    
    .animate-fade-in {
        animation-duration: 0.5s;
    }
    
    /* Animação do menu mobile */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Animação de hover mais sutil em mobile */
    .hover\:scale-105:hover {
        transform: scale(1.02);
    }
}

/* Melhorias para dispositivos muito pequenos */
@media (max-width: 480px) {
    /* Ajustes finos para telas muito pequenas */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .form-modern {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    section {
        padding: 2rem 0.5rem;
    }
    
    /* Botões ainda mais touch-friendly */
    .btn-primary,
    .btn-secondary,
    .btn-cta {
        padding: 1.25rem 1rem;
        font-size: 1.125rem;
        min-height: 52px;
    }
}

/* Melhorias para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-modern {
        padding: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
}

/* Melhorias para vídeo de fundo em mobile */
@media (max-width: 768px) {
    /* Otimizar vídeo para mobile */
    video {
        object-fit: cover;
        object-position: center;
    }
    
    /* Overlay mais claro em mobile para mostrar mais o vídeo */
    .hero::before {
        background: rgba(11, 11, 13, 0.5);
    }
    
    /* Texto do hero sem sombra */
    .hero-content {
        /* text-shadow removido */
    }
    
    .hero-title {
        /* text-shadow removido */
    }
}

/* Melhorias para scroll suave em mobile */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Melhorar scroll de seções */
    section {
        scroll-margin-top: 2rem;
    }
}

/* Melhorias para touch targets em mobile */
@media (max-width: 768px) {
    /* Garantir que todos os elementos clicáveis tenham pelo menos 44px */
    a, button, input[type="submit"], input[type="button"] {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Links de navegação mobile */
    nav a {
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }
    
    nav a:hover {
        background: rgba(212, 175, 55, 0.1);
    }
}

/* Melhorias para acessibilidade em mobile */
@media (max-width: 768px) {
    /* Melhorar contraste */
    .text-text-secondary {
        color: #C8CDD6;
    }
    
    /* Melhorar foco visível */
    *:focus {
        outline: 2px solid var(--color-gold);
        outline-offset: 2px;
    }
    
    /* Melhorar legibilidade de textos pequenos */
    .text-sm {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .text-xs {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* Responsividade para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .bank-logo-img {
        width: 140px;
        height: 70px;
        max-width: 140px;
        max-height: 70px;
    }
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.flex {
    display: flex;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.flex-col {
    flex-direction: column;
}

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

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-1 {
    flex: 1 1 0%;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.bottom-6 {
    bottom: 1.5rem;
}

.right-6 {
    right: 1.5rem;
}

.top-1\/2 {
    top: 50%;
}

.left-1\/2 {
    left: 50%;
}

.-translate-y-1\/2 {
    transform: translateY(-50%);
}

.-ml-2 {
    margin-left: -0.5rem;
}

.z-10 {
    z-index: 10;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
    
    .md\:flex {
        display: flex;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .md\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:items-start {
        align-items: flex-start;
    }
    
    .md\:justify-start {
        justify-content: flex-start;
    }
    
    .md\:space-x-6 > * + * {
        margin-left: 1.5rem;
    }
    
    .md\:space-x-8 > * + * {
        margin-left: 2rem;
    }
    
    .md\:space-y-0 > * + * {
        margin-top: 0;
    }
    
    .md\:text-left {
        text-align: left;
    }
    
    .md\:text-center {
        text-align: center;
    }
    
    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .md\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }
    
    .md\:py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    
    .md\:p-12 {
        padding: 3rem;
    }
    
    .md\:w-1\/2 {
        width: 50%;
    }
    
    .md\:w-auto {
        width: auto;
    }
    
    .md\:w-full {
        width: 100%;
    }
    
    .md\:gap-4 {
        gap: 1rem;
    }
    
    .md\:gap-6 {
        gap: 1.5rem;
    }
    
    .md\:gap-8 {
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

/* Additional utility classes */
.appearance-none {
    appearance: none;
}

.pointer-events-none {
    pointer-events: none;
}

.cursor-pointer {
    cursor: pointer;
}

.select-none {
    user-select: none;
}

.resize-none {
    resize: none;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.break-words {
    overflow-wrap: break-word;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-90 {
    opacity: 0.9;
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

.backdrop-blur-10 {
    backdrop-filter: blur(10px);
}

.fill-current {
    fill: currentColor;
}

.stroke-current {
    stroke: currentColor;
}

.stroke-width-1\.5 {
    stroke-width: 1.5;
}

.stroke-width-2 {
    stroke-width: 2;
}

.stroke-linecap-round {
    stroke-linecap: round;
}

.stroke-linejoin-round {
    stroke-linejoin: round;
}

.text-anchor-middle {
    text-anchor: middle;
}

.dominant-baseline-middle {
    dominant-baseline: middle;
}

.rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
}

/* Form specific styles */
input[type="checkbox"] {
    accent-color: var(--color-gold);
}

input[type="checkbox"]:checked {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-card-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-copper);
}
