/* ================================
   AURORA SPA - PREMIUM LANDING PAGE
   Vibrant Pastels & Tropical Vibes
   ================================ */

/* === ROOT VARIABLES === */
:root {
    /* Color Palette - Aurora Spa Real Colors */
    --color-primary: #DAA520;        /* Gold Lotus - Logo Primary */
    --color-secondary: #6B8E23;      /* Tropical Green - From Nature */
    --color-accent: #FFA07A;         /* Sunset Coral - Beach Vibes */
    --color-tertiary: #D8BFD8;       /* Sunset Purple - Evening Sky */
    --color-coral: #FFA07A;          /* Coral Sunset */
    --color-mint: #4682B4;           /* Ocean Blue - Peaceful Waters */
    --color-peach: #F5DEB3;          /* Sandy Beige - Natural Warmth */
    
    --color-dark: #2F4F4F;           /* Deep Forest - Logo Background */
    --color-text: #556B2F;           /* Natural Text - Earthy Tone */
    --color-light: #FFFFFF;          /* Pure White - Clean & Elegant */
    --color-white: #FFFFFF;
    --color-success: #58D68D;        /* Verde vibrante */
    --color-error: #EC7063;          /* Vermelho suave */
    --color-whatsapp: #25D366;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-colored: 0 8px 32px rgba(255, 182, 193, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-text);
    background: linear-gradient(135deg, #F5DEB3 0%, #FFFFFF 30%, #D8BFD8 70%, #4682B4 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* === HERO SLIDESHOW BACKGROUND === */
.hero-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.hero-slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 182, 193, 0.7) 0%,
        rgba(152, 216, 200, 0.6) 50%,
        rgba(247, 220, 111, 0.5) 100%
    );
    z-index: 2;
    backdrop-filter: blur(2px);
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

/* === MAIN CONTAINER === */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    z-index: 3;
}

/* === BRAND SECTION === */
.brand-section {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    animation: fadeInDown 0.8s ease;
}

.logo-container {
    width: 160px;
    height: 160px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: var(--radius-full);
    position: relative;
    overflow: visible;
    padding: 0;
    filter: drop-shadow(0 12px 40px rgba(255, 182, 193, 0.4));
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.2) 0%, 
        rgba(152, 216, 200, 0.2) 50%, 
        rgba(187, 143, 206, 0.2) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    animation: float-logo 6s ease-in-out infinite;
}

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

.logo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-container i {
    font-size: 3.5rem;
    color: var(--color-white);
    z-index: 1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    background: linear-gradient(135deg, 
        #D4AF37 0%,
        #F4E4C1 25%,
        #D4AF37 50%,
        #F4E4C1 75%,
        #D4AF37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
    animation: shimmer-text 3s linear infinite;
    position: relative;
}

.brand-name::after {
    content: 'AURORA SPA';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    z-index: -1;
    filter: blur(8px);
}

@keyframes shimmer-text {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.brand-tagline {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: var(--spacing-sm);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 100%);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: var(--spacing-sm);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid rgba(255, 182, 193, 0.3);
    transition: all var(--transition-normal);
}

.rating-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 182, 193, 0.3);
    border-color: var(--color-primary);
}

.rating-badge .stars {
    color: #FFD700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* === HERO SECTION === */
.hero-section {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease 0.2s both;
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-primary), var(--color-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.subheadline {
    font-size: clamp(1.05rem, 3vw, 1.2rem);
    line-height: 1.8;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
}

.subheadline strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* === CARD SECTIONS === */
.card-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                      linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-tertiary));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 182, 193, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s;
}

.card-section:hover::before {
    animation: card-shimmer 2s ease infinite;
}

@keyframes card-shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.card-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 182, 193, 0.2);
}

/* === EMAIL CAPTURE SECTION === */
.email-capture-section {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 400;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.section-title i {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.email-form {
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
}

.form-group input[type="email"] {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    font-family: var(--font-body);
    font-size: 1.05rem;
    border: 3px solid var(--color-primary);
    border-radius: var(--radius-full);
    background: var(--color-white);
    color: var(--color-text);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.1);
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 6px rgba(152, 216, 200, 0.2), 0 8px 24px rgba(152, 216, 200, 0.3);
    transform: translateY(-2px);
    background: linear-gradient(to right, #FFFFFF, rgba(152, 216, 200, 0.05));
}

.form-group input[type="email"]::placeholder {
    color: rgba(52, 73, 94, 0.5);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    width: 100%;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, 
        var(--color-primary) 0%, 
        var(--color-secondary) 50%,
        var(--color-tertiary) 100%);
    background-size: 200% auto;
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(255, 182, 193, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 182, 193, 0.5);
    background-position: right center;
}

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

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    background-size: 200% auto;
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
    background-position: right center;
}

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

/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-float 2s infinite;
    cursor: pointer;
    border: 3px solid #FFF;
    transition: all 0.3s ease;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: -1;
}

@keyframes ping {
    75%, 100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 48px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* === REVIEWS SECTION === */
.reviews-section {
    animation: fadeInUp 0.8s ease 0.5s both;
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.review-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 248, 240, 0.95) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid transparent;
    border-image: linear-gradient(135deg, var(--color-primary), var(--color-secondary)) 1;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--color-primary);
    opacity: 0.1;
    z-index: 0;
}

.review-card:hover {
    transform: translateX(8px) translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 182, 193, 0.2);
    border-image: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary)) 1;
}

.review-card > * {
    position: relative;
    z-index: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-mint));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(152, 216, 200, 0.4);
    border: 3px solid var(--color-white);
    position: relative;
}

.review-avatar::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    border: 2px solid var(--color-white);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.review-info h4 {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 0.2rem;
}

.review-location {
    font-size: 0.85rem;
    color: var(--color-text);
    opacity: 0.8;
}

.review-stars {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
    font-style: italic;
}

/* === WHATSAPP SECTION === */
.whatsapp-section {
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* === FOOTER === */
.footer {
    text-align: center;
    padding: var(--spacing-xl) 0;
    color: var(--color-text);
    animation: fadeIn 1s ease 0.8s both;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
}

.social-links {
    margin-bottom: var(--spacing-md);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    font-size: 1.1rem;
}

.social-icon:hover {
    color: var(--color-secondary);
    transform: translateY(-2px);
}

/* === SUCCESS MODAL === */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.9);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    animation: fadeIn var(--transition-normal);
}

.modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    max-width: 450px;
    margin: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: scaleIn var(--transition-normal);
    border: 3px solid var(--color-primary);
}

.modal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-success) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-full);
    border: 4px solid var(--color-white);
    box-shadow: var(--shadow-colored);
}

.modal-icon i {
    font-size: 3rem;
    color: var(--color-white);
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.modal-content p {
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* === RESPONSIVE DESIGN === */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .form-group {
        flex-direction: row;
    }
    
    .form-group input[type="email"] {
        flex: 1;
    }
    
    .form-group button {
        width: auto;
        min-width: 200px;
    }
    
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: 900px;
        padding: var(--spacing-xxl) var(--spacing-md);
    }
    
    .logo-container {
        width: 140px;
        height: 140px;
    }
    
    .card-section {
        padding: var(--spacing-xxl);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 1000px;
    }
    
    .reviews-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Form Message */
.form-message {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    text-align: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    font-weight: 600;
}

.form-message.show {
    opacity: 1;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(88, 214, 141, 0.2), rgba(152, 216, 200, 0.2));
    color: var(--color-success);
    border: 2px solid var(--color-success);
}

.form-message.error {
    background: rgba(236, 112, 99, 0.2);
    color: var(--color-error);
    border: 2px solid var(--color-error);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loader {
    display: inline-flex;
}
