/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores refinada baseada no design do Canva */
    --blue-dark: #1E3A8A;
    --blue-medium: #2563EB;
    --blue-light: #3B82F6;
    --blue-canva: #1E40AF;
    --yellow-vibrant: #FACC15;
    --yellow-soft: #FBBF24;
    --yellow-light: #FDE047;
    --green-whatsapp: #25D366;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Gradientes profissionais baseados no design do Canva */
    --gradient-primary: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #3B82F6 100%);
    --gradient-secondary: linear-gradient(135deg, var(--blue-medium) 0%);
    --gradient-accent: linear-gradient(135deg, var(--yellow-vibrant), var(--yellow-soft));
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(255, 255, 255, 0.979) 100%);
    --gradient-hero: linear-gradient(135deg, #1E40AF 0%, #2563EB 40%, #60A5FA 100%);
    
    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
    
    /* Espaçamentos */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    --section-padding-mobile: 80px 0;
    
    /* Sombras profissionais */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Bordas */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--gray-800);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Tipografia refinada */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

/* Botões profissionais com efeitos aprimorados */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--gray-800);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--yellow-light), var(--yellow-vibrant));
}

.btn-whatsapp {
    background: var(--green-whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Hero Section com gradiente do Canva */
.hero-section {
    background: var(--gradient-hero);
    padding: var(--section-padding);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.company-info {
    margin-bottom: 20px;
    opacity: 0.9;
}

.company-info h4 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-headline {
    margin-bottom: 24px;
    color: #fff; /* branco puro */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Comparativo Visual */
.comparison-section {
    padding: var(--section-padding);
    background: var(--gray-50);
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-item {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.comparison-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.comparison-problem::before {
    background: linear-gradient(90deg, #EF4444, #DC2626);
}

.comparison-solution::before {
    background: linear-gradient(90deg, #10B981, #059669);
}

.comparison-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.comparison-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.comparison-problem .comparison-icon {
    color: #EF4444;
}

.comparison-solution .comparison-icon {
    color: #10B981;
}

.comparison-item h3 {
    margin-bottom: 20px;
    color: var(--gray-800);
}

.comparison-status {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 24px 0;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.comparison-status.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.comparison-status.positive {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.comparison-list {
    list-style: none;
    text-align: left;
    margin-top: 30px;
}

.comparison-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    color: var(--gray-600);
}

.comparison-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blue-medium);
    font-size: 1.5rem;
    line-height: 1;
}

/* Prova Social com animações aprimoradas */
.social-proof-section {
    padding: var(--section-padding);
    background: white;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--gray-800);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-xl);
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    display: inline-block;
}

.stat-plus, .stat-unit, .stat-prefix {
    font-size: 2rem;
    font-weight: 800;
    display: inline-block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Animação de pulso para CTAs */
.cta-pulse {
    animation: ctaPulse 1s ease-in-out;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-item {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--blue-medium);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.testimonial-content {
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    font-size: 3.5rem;
    color: var(--blue-medium);
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--gray-800);
    font-size: 1.1rem;
}

.author-info span {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* Formulário de Simulação com gradiente do Canva */
.simulation-section {
    padding: var(--section-padding);
    background: var(--gradient-hero);
    color: white;
    position: relative;
}

.simulation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 1;
}

.simulation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.simulation-info h2 {
    margin-bottom: 24px;
}

.simulation-info p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.simulation-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.benefit-item i {
    color: var(--yellow-vibrant);
    font-size: 1.3rem;
}

.simulation-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.simulation-form h3 {
    color: var(--gray-800);
    margin-bottom: 40px;
    text-align: center;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: var(--gray-800);
}

.form-group input:focus {
    outline: none;
    border-color: var(--blue-medium);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input:valid {
    border-color: var(--green-whatsapp);
}

.form-group input.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: all 0.3s ease;
    background: white url('data:image/svg+xml;charset=US-ASCII,<svg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m5 7.5 5 5 5-5" stroke="%2364748B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>' ) no-repeat right 20px center;
    background-size: 16px;
    color: var(--gray-800);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--blue-medium);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group select.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Garante que a cor do texto da opção selecionada não seja cinza */
.form-group select:required:invalid {
  color: var(--gray-500);
}
.form-group option {
  color: var(--gray-800);
}

.field-error {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Explicação do Financiamento */
.financing-section {
    padding: var(--section-padding);
    background: white;
}

.financing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.step-item {
    text-align: center;
    padding: 50px 30px;
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-item:hover::before {
    opacity: 1;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.step-item h3 {
    margin-bottom: 20px;
    color: var(--gray-800);
    position: relative;
    z-index: 2;
}

.step-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Seção de Urgência */
.urgency-section {
    padding: var(--section-padding);
    background: var(--gradient-secondary);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255,255,255,0.15) 0%, transparent 50%);
    z-index: 1;
}

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

.urgency-headline {
    margin-bottom: 24px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.urgency-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.urgency-buttons {
    margin-bottom: 40px;
}

.urgency-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
}

.urgency-guarantee i {
    font-size: 1.8rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    color: var(--yellow-vibrant);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-location {
    color: var(--yellow-soft);
    font-weight: 600;
}

.footer-contact h4,
.footer-social h4 {
    margin-bottom: 25px;
    color: var(--yellow-vibrant);
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--yellow-soft);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-700);
    opacity: 0.7;
}

/* Animações de entrada */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .simulation-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .simulation-form-container {
        padding: 40px 30px;
    }
    
    .financing-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .btn-large {
        padding: 18px 36px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-item,
    .simulation-form-container,
    .step-item,
    .testimonial-item {
        padding: 30px 25px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-image {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Efeitos de ripple para botões */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn {
    position: relative;
    overflow: hidden;
}

/* Otimizações de performance */
* {
    will-change: auto;
}

.btn:hover,
.stat-item:hover,
.testimonial-item:hover,
.step-item:hover,
.comparison-item:hover {
    will-change: transform;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states para acessibilidade */
.btn:focus,
input:focus {
    outline: 2px solid var(--blue-medium);
    outline-offset: 2px;
}

/* Estados de loading */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: var(--shadow-lg);
}






