/* ============================================
   Components - Beleza Marcada Admin Hotsite
   ============================================ */

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform var(--duration-fast) var(--ease-bounce),
                box-shadow var(--duration-normal) var(--ease-smooth);
}

.btn-primary {
    background: var(--gradient-pink-teal);
    background-size: 200% 100%;
    color: var(--white);
    box-shadow: var(--shadow-pink);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btn-shine 3s ease-in-out infinite;
    animation-delay: 1s;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(254, 61, 106, 0.4);
    background-position: 100% 0;
}

.btn-secondary {
    background: var(--white);
    border: 2px solid var(--white);
    color: var(--navy-primary);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--pink-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-pink);
}

.btn-dark {
    background: var(--navy-primary);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Feature Cards
   ============================================ */

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
    transition: transform var(--duration-normal) var(--ease-smooth),
                box-shadow var(--duration-normal) var(--ease-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pink-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card h3 {
    margin: var(--space-sm) 0 var(--space-xs);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   Feature Icons
   ============================================ */

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--duration-normal) var(--ease-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.icon-calendar { background: var(--gradient-sunset); }
.icon-users { background: var(--gradient-ocean); }
.icon-chart { background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-accent) 100%); }
.icon-dollar { background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%); }
.icon-clock { background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-dark) 100%); }
.icon-star { background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-primary) 100%); }

/* ============================================
   Stat Cards
   ============================================ */

.stat-card {
    text-align: center;
    padding: var(--space-md);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ============================================
   Step Cards
   ============================================ */

.step-card {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: transform var(--duration-normal) var(--ease-smooth),
                box-shadow var(--duration-normal) var(--ease-smooth);
}

.step-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-pink-teal);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.15rem;
}

.step-content p {
    font-size: 0.9rem;
}

/* ============================================
   Testimonial Cards
   ============================================ */

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-sm);
    left: var(--space-md);
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--pink-primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gray-800);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-sunset);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info strong {
    display: block;
    color: var(--navy-primary);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ============================================
   Dashboard Preview
   ============================================ */

.dashboard-preview {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.dashboard-header {
    background: var(--gray-100);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dot:nth-child(1) { background: #FF5F57; }
.dashboard-dot:nth-child(2) { background: #FFBD2E; }
.dashboard-dot:nth-child(3) { background: #28CA41; }

.dashboard-content {
    padding: var(--space-md);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-md);
    min-height: 300px;
}

.dashboard-sidebar {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
}

.sidebar-item {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    font-size: 0.85rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.sidebar-item.active {
    background: var(--pink-primary);
    color: var(--white);
}

.sidebar-item svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.dashboard-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    flex: 1;
}

.dashboard-card-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-600);
    margin-bottom: var(--space-xs);
}

.dashboard-chart {
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-pink-teal);
    border-radius: 4px 4px 0 0;
    min-height: 10px;
}

/* ============================================
   Pricing Cards
   ============================================ */

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    transition: transform var(--duration-normal) var(--ease-smooth),
                box-shadow var(--duration-normal) var(--ease-smooth),
                border-color var(--duration-normal) var(--ease-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--pink-primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-pink-teal);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: var(--space-xs);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pink-primary);
    margin-bottom: var(--space-md);
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-md);
}

.pricing-features li {
    padding: var(--space-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--gray-800);
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ============================================
   Scroll Indicator
   ============================================ */

.scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    animation: fade-in 1s ease-out 1.5s backwards;
}

.scroll-text {
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--pink-primary);
    border-bottom: 2px solid var(--pink-primary);
    transform: rotate(45deg);
    animation: scroll-bounce 2s ease-in-out infinite;
}

/* ============================================
   Animation Classes
   ============================================ */

[data-animate] {
    opacity: 0;
}

[data-animate].animated {
    opacity: 1;
}

[data-animate="fade-up"].animated {
    animation: fade-up 0.8s var(--ease-out-expo) both;
}

[data-animate="fade-in"].animated {
    animation: fade-in 0.6s var(--ease-smooth) both;
}

[data-animate="scale-in"].animated {
    animation: scale-in 0.6s var(--ease-bounce) both;
}

[data-animate="slide-left"].animated {
    animation: slide-in-left 0.8s var(--ease-out-expo) both;
}

[data-animate="slide-right"].animated {
    animation: slide-in-right 0.8s var(--ease-out-expo) both;
}

/* Staggered delays */
[data-delay="100"].animated { animation-delay: 0.1s; }
[data-delay="200"].animated { animation-delay: 0.2s; }
[data-delay="300"].animated { animation-delay: 0.3s; }
[data-delay="400"].animated { animation-delay: 0.4s; }
[data-delay="500"].animated { animation-delay: 0.5s; }
[data-delay="600"].animated { animation-delay: 0.6s; }
