/* WEBSOFT - Estilos Principais */

:root {
    /* Cores Principais - Design Moderno e Profissional */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-lighter: #a5b4fc;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    
    /* Cores Neutras */
    --dark-color: #0f172a;
    --dark-secondary: #1e293b;
    --light-color: #ffffff;
    --light-bg: #f8fafc;
    --light-bg-secondary: #f1f5f9;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --text-color: #1e293b;
    --text-secondary: #475569;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    
    /* Sombras Profissionais */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-2xl: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    --shadow-colored: 0 10px 30px -5px rgba(99, 102, 241, 0.3);
    --shadow-colored-lg: 0 20px 40px -10px rgba(99, 102, 241, 0.4);
    
    /* Gradientes Modernos */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-primary-vibrant: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Transições Suaves */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Bordas */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a, a:visited, a:hover, a:active, a:focus {
    text-decoration: none;
}

a:link {
    text-decoration: none;
}

/* Remove sublinhados vermelhos de validação de formulário */
input:invalid, textarea:invalid, select:invalid {
    text-decoration: none;
    box-shadow: none;
}

input:invalid:focus, textarea:invalid:focus, select:invalid:focus {
    text-decoration: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}

/* Animação de entrada suave */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Remove sublinhados vermelhos de verificação ortográfica */
* {
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

::spelling-error {
    text-decoration: none !important;
    text-decoration-line: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Header - Glassmorphism Moderno */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.header-content {
    position: relative;
    z-index: 1001;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    color: var(--dark-color);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
    position: relative;
    mix-blend-mode: multiply;
    background: transparent;
}

.logo-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.logo a:hover .logo-img {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.5));
    animation: logoGlow 2s ease-in-out infinite;
}

.logo a:hover {
    transform: scale(1.02);
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.5));
    }
    50% {
        filter: drop-shadow(0 6px 12px rgba(37, 99, 235, 0.8));
    }
}

.logo a span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Menu Mobile - Inicialmente oculto em telas pequenas */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 0;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        transition: left 0.3s ease;
        z-index: 998;
        overflow-y: auto;
        gap: 0;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav a {
        width: 100%;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
        display: block;
        text-align: left;
        font-size: 1rem;
    }
    
    .nav a::after {
        display: none;
    }
    
    .nav a:hover,
    .nav a:active {
        background: var(--light-color);
        border-left: 4px solid var(--primary-color);
        padding-left: calc(2rem - 4px);
    }
    
    .nav a.btn-primary {
        margin: 1rem 2rem;
        text-align: center;
        border-radius: 8px;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        color: var(--dark-color);
        font-size: 1.5rem;
        z-index: 1001;
        padding: 0.5rem;
        cursor: pointer;
        transition: color 0.3s;
        background: none;
        border: none;
    }
    
    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:focus {
        color: var(--primary-color);
        outline: none;
    }
    
    /* Overlay escuro quando menu está aberto */
    .nav.active::before {
        content: '';
        position: fixed;
        top: 70px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.5);
        z-index: 997;
        animation: fadeIn 0.3s ease;
    }
}

@media (min-width: 769px) {
    .nav {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary-vibrant);
    color: white;
    padding: 0.875rem 2.25rem;
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.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::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-colored-lg);
    background: var(--gradient-primary-vibrant);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #475569;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Carousel Section */
.carousel-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    background-size: 100% 100%;
    animation: backgroundShift 10s ease-in-out infinite;
    z-index: 0;
}

.carousel-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: backgroundFloat 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, -20px) scale(1.1);
    }
}

.carousel-container {
    width: 100%;
    position: relative;
    min-height: 600px;
}

.carousel-slide {
    display: none;
    width: 100%;
    min-height: 600px;
    padding: 4rem 2rem;
    animation: fadeIn 1s ease-in-out;
}

.carousel-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: white;
    position: relative;
    z-index: 1;
}

.carousel-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

.carousel-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: imageBackgroundGlow 5s ease-in-out infinite;
}

@keyframes imageBackgroundGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.carousel-image i {
    color: white;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.carousel-main-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
    animation: floatImage 4s ease-in-out infinite, imagePulse 3s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
    background: transparent !important;
}

.carousel-main-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: imageGlow 3s ease-in-out infinite;
}

.carousel-main-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    z-index: -2;
    animation: imageBorder 4s ease-in-out infinite;
}

.carousel-main-image:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)) brightness(1.1);
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

@keyframes imagePulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes imageGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes imageBorder {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.carousel-tech-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.carousel-tech-icons i {
    font-size: 3rem;
    opacity: 0.8;
    transition: all var(--transition-smooth);
    animation: pulse 2s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-tech-icons i:hover {
    transform: scale(1.2) translateY(-5px);
    opacity: 1;
    color: white;
    text-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

.carousel-tech-icons i:nth-child(2) {
    animation-delay: 0.2s;
}

.carousel-tech-icons i:nth-child(3) {
    animation-delay: 0.4s;
}

.carousel-tech-icons i:nth-child(4) {
    animation-delay: 0.6s;
}

.carousel-tech-icons i:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.carousel-tech-icons i:hover {
    transform: scale(1.2);
    opacity: 1;
}

.carousel-text {
    padding: 2rem;
}

.carousel-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255,255,255,0.3);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.8);
}

.carousel-indicators .indicator.active {
    background: white;
    transform: scale(1.3);
}

.carousel-indicators .indicator:hover {
    background: rgba(255,255,255,0.8);
}

/* Hero Section (mantido para compatibilidade) */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 4rem;
    color: var(--dark-color);
    font-weight: 800;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary-vibrant);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-colored);
    animation: slideInRight 0.8s ease-out 0.3s backwards;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.75rem;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
    border-radius: 20px;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Services */
.services-preview {
    padding: 6rem 0;
    background: var(--light-bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* Personagens e Máquinas nos Cards de Serviços */
.service-character {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
}

.service-character-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary-vibrant);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-colored);
    transition: all var(--transition-smooth);
}

.service-card:hover .service-character-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-colored-lg);
}

.service-machines-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-machines-icons i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all var(--transition-base);
    animation: floatMachine 3s ease-in-out infinite;
}

.service-machines-icons i:nth-child(1) {
    animation-delay: 0s;
    color: #6366f1;
}

.service-machines-icons i:nth-child(2) {
    animation-delay: 0.5s;
    color: #8b5cf6;
}

.service-machines-icons i:nth-child(3) {
    animation-delay: 1s;
    color: #ec4899;
}

.service-card:hover .service-machines-icons i {
    transform: scale(1.2);
}

.service-card .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    pointer-events: none;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 0;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-colored-lg);
    border-color: rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.service-price {
    margin: 1rem 0;
}

.price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.service-meta {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.service-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    position: relative;
    z-index: 10;
}

.service-card-footer .btn {
    width: 100%;
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.text-center {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: 700;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-left-width: 6px;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.admin-response {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(226, 232, 240, 0.8);
    color: var(--text-light);
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

.admin-response strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(255,255,255,0.3));
    transition: all 0.3s;
    animation: footerLogoFloat 4s ease-in-out infinite;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255,255,255,0.5));
}

@keyframes footerLogoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(10px);
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a,
.social-links a:visited,
.social-links a:hover,
.social-links a:active,
.social-links a:focus {
    text-decoration: none !important;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    border-color: rgba(255,255,255,0.3);
    text-decoration: none !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Avatares Anônimos - Personagens */
.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.avatar:hover::before {
    opacity: 1;
}

.avatar:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.avatar span {
    position: relative;
    z-index: 1;
}

/* Tamanhos de Avatares */
.avatar-sm {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
}

.avatar-md {
    width: 48px;
    height: 48px;
    font-size: 0.875rem;
}

.avatar-lg {
    width: 64px;
    height: 64px;
    font-size: 1.125rem;
}

.avatar-xl {
    width: 96px;
    height: 96px;
    font-size: 1.75rem;
    border-width: 3px;
}

/* Avatares em Contextos Específicos */
.welcome-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.welcome-avatar {
    animation: fadeInUp 0.6s ease-out;
}

.welcome-text {
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.profile-avatar {
    animation: fadeInUp 0.6s ease-out;
}

.profile-info-header h2 {
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.profile-email {
    color: var(--text-light);
    font-size: 1rem;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.message-avatar {
    margin: 0 0.75rem;
    animation: fadeInUp 0.4s ease-out;
}

.chat-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-user-info .avatar {
    box-shadow: var(--shadow-colored);
}

.chat-list-avatar {
    position: relative;
    flex-shrink: 0;
}

.chat-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.chat-list-item:hover {
    background: var(--light-bg);
}

.chat-list-item.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
}

.message-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.4s ease-out;
}

.message-item.message-sent {
    flex-direction: row-reverse;
}

.message-item.message-sent .message-content-wrapper {
    text-align: right;
}

.message-content-wrapper {
    flex: 1;
}

.message-sender-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.4s ease-out;
}

.chat-message.message-sent {
    flex-direction: row-reverse;
}

.chat-message.message-sent .message-content {
    background: var(--gradient-primary-vibrant);
    color: white;
}

.chat-message.message-received .message-content {
    background: var(--light-bg);
    color: var(--text-color);
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    max-width: 70%;
    box-shadow: var(--shadow-sm);
}

.message-sender-name {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--text-secondary);
}

.chat-message.message-sent .message-sender-name {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .welcome-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .avatar-xl {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .message-content {
        max-width: 85%;
    }
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    border-left: 4px solid;
    animation: slideInDown 0.3s ease;
    backdrop-filter: blur(10px);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-left-color: #10b981;
}

.alert-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-left-color: #ef4444;
}

/* Forms */
.form-section {
    padding: 2rem 0;
}

.form-container, .auth-container {
    max-width: 600px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.auth-card, .form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out;
}

.auth-card:hover, .form-container:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-2px);
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.auth-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-logo-img {
    height: 90px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.4));
    animation: authLogoFloat 3s ease-in-out infinite;
    background: transparent;
    transition: all 0.3s;
}

.auth-logo:hover .auth-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(37, 99, 235, 0.6));
}

@keyframes authLogoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.auth-logo h2 {
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.auth-card h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-smooth);
    background: white;
    color: var(--text-color);
    font-family: inherit;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--primary-lighter);
    box-shadow: var(--shadow-sm);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), var(--shadow-md);
    transform: translateY(-2px);
    background: #fafbff;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-password:hover {
    text-decoration: none;
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: none;
}

/* Dashboard */
.dashboard {
    padding: 2rem 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.dashboard-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dashboard-nav a {
    padding: 0.875rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 12px;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.dashboard-nav a:last-child {
    margin-bottom: 0;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.badge {
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: auto;
    box-shadow: 0 2px 4px rgba(245, 87, 108, 0.3);
    min-width: 20px;
    text-align: center;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all var(--transition-base);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all var(--transition-base);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-icon.blue { background: var(--primary-color); }
.stat-icon.green { background: var(--success-color); }
.stat-icon.purple { background: #8b5cf6; }
.stat-icon.orange { background: var(--warning-color); }

.stat-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.stat-info p {
    color: var(--text-light);
    font-size: 0.9375rem;
    font-weight: 500;
}

.stat-info small {
    display: block;
    color: var(--text-light);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.section-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all var(--transition-base);
}

.section-card:hover {
    box-shadow: var(--shadow-lg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    color: var(--dark-color);
}

/* Orders */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.order-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
    border-left-width: 6px;
}

.order-info h4 {
    margin-bottom: 0.5rem;
}

.order-info h4 a {
    color: var(--dark-color);
    text-decoration: none;
}

.order-info h4 a:hover {
    color: var(--primary-color);
}

.order-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.status-badge {
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.status-orange { background: #fed7aa; color: #9a3412; }
.status-blue { background: #bfdbfe; color: #1e3a8a; }
.status-purple { background: #e9d5ff; color: #6b21a8; }
.status-green { background: #bbf7d0; color: #14532d; }
.status-red { background: #fecaca; color: #991b1b; }

.order-price {
    font-weight: bold;
    color: var(--primary-color);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-state i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--border-color);
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

.empty-state p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Order Details */
.order-details {
    padding: 2rem 0;
}

.order-details-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.order-description {
    margin-top: 2rem;
}

.order-description h3 {
    margin-bottom: 1rem;
}

/* Messages */
.messages-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
}

.message-item {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

.message-sent {
    background: #dbeafe;
    margin-left: 2rem;
}

.message-received {
    background: white;
    margin-right: 2rem;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.message-time {
    color: var(--text-light);
    font-size: 0.875rem;
}

.message-form {
    margin-top: 1rem;
}

/* Rating */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input .star-label {
    font-size: 2rem;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input .star-label:hover,
.rating-input .star-label:hover ~ .star-label {
    color: #fbbf24;
}

/* Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

table thead {
    background: var(--gradient-primary);
    color: white;
}

table thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

table th, table td {
    padding: 1rem;
    text-align: left;
}

table tbody tr {
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all var(--transition-fast);
}

table tbody tr:last-child {
    border-bottom: none;
}

table tbody tr:hover {
    background: rgba(37, 99, 235, 0.03);
    transform: scale(1.01);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.page-header > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Service Cards */
.service-card-detailed {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all var(--transition-base);
}

.service-card-detailed:hover {
    box-shadow: var(--shadow-colored-lg);
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.service-header h3 {
    font-size: 1.5rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-body {
    padding: 2rem;
}

.service-examples {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 6px;
}

.service-footer {
    padding: 1.5rem 2rem;
    background: var(--light-color);
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

.service-footer .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.services-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Reviews */
.reviews-list-admin {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card-admin {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all var(--transition-base);
}

.review-card-admin:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.review-rating {
    color: #fbbf24;
}

.review-response {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.review-response-form {
    margin-top: 1rem;
}

/* Action Buttons Group */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.action-buttons .btn {
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    /* Estilos do menu mobile já definidos acima na linha 130 */
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        position: static;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .order-status {
        align-items: flex-start;
        width: 100%;
    }
    
    table {
        font-size: 0.875rem;
    }
    
    table th, table td {
        padding: 0.5rem;
    }
    
    .page-header > .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-header > .container .btn {
        width: 100%;
    }
    
    .carousel-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .carousel-main-image {
        max-width: 200px;
    }
    
    .carousel-main-image::before,
    .carousel-main-image::after {
        display: none;
    }
    
    .logo-img {
        filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.4));
    }
    
    .auth-logo-img {
        height: 70px;
    }
    
    .auth-logo h2 {
        font-size: 1.75rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .carousel-text h1 {
        font-size: 2rem;
    }
    
    .carousel-text p {
        font-size: 1rem;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-prev {
        left: 1rem;
    }
    
    .carousel-next {
        right: 1rem;
    }
    
    .carousel-section {
        min-height: 500px;
    }
    
    .carousel-slide {
        min-height: 500px;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons a {
        width: 100%;
    }
}

/* Chat Widget Flutuante */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: inherit;
}

.chat-widget-button {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: all var(--transition-base);
    position: relative;
    border: none;
    font-size: 1.5rem;
}

.chat-widget-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid white;
}

.chat-widget-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-widget-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-widget-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-widget-header-info h4 {
    color: white;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.chat-status-text {
    font-size: 0.75rem;
    opacity: 0.9;
}

.chat-widget-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.chat-widget-close:hover {
    background: rgba(255,255,255,0.3);
}

.chat-widget-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-widget-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.chat-widget-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.chat-widget-message {
    max-width: 80%;
    animation: slideInMessage 0.3s ease;
}

@keyframes slideInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-widget-message.message-sent {
    align-self: flex-end;
}

.chat-widget-message.message-received {
    align-self: flex-start;
}

.chat-widget-message-content {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.chat-widget-message.message-sent .chat-widget-message-content {
    background: var(--gradient-primary);
    color: white;
}

.chat-widget-message.message-received .chat-widget-message-content {
    background: white;
    border: 1px solid var(--border-color);
}

.chat-widget-message-content p {
    margin: 0 0 0.25rem 0;
    font-size: 0.875rem;
    word-wrap: break-word;
}

.chat-widget-message-time {
    font-size: 0.7rem;
    opacity: 0.7;
    display: block;
}

.chat-widget-input {
    padding: 1rem;
    background: white;
    border-top: 1px solid var(--border-color);
}

.chat-widget-input form {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}

.chat-widget-input textarea {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.875rem;
    font-family: inherit;
    resize: none;
    transition: all var(--transition-base);
    max-height: 100px;
}

.chat-widget-input textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.chat-widget-send {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    font-size: 1rem;
}

.chat-widget-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.chat-widget-send:active {
    transform: translateY(0);
}

.ai-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ai-message {
    border-left: 3px solid var(--primary-color);
}

@media (max-width: 480px) {
    .chat-widget-container {
        width: calc(100vw - 40px);
        right: -20px;
        bottom: 80px;
        height: calc(100vh - 150px);
        max-height: 550px;
    }
    
    .chat-widget-button {
        width: 56px;
        height: 56px;
        bottom: 15px;
        right: 15px;
    }
    
    .chat-widget-message .message-avatar {
        width: 28px;
        height: 28px;
    }
    
    .chat-widget-message .message-content {
        max-width: 85%;
    }
}

/* Estilos para avatares no chat widget */
.chat-widget-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.chat-widget-message.message-sent {
    flex-direction: row-reverse;
}

.chat-widget-message .message-avatar {
    flex-shrink: 0;
    margin: 0;
}

.chat-widget-message .message-content {
    display: flex;
    flex-direction: column;
}

.chat-widget-message .message-sender-name {
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    color: var(--text-secondary);
}

.chat-widget-message.message-sent .message-sender-name {
    color: rgba(255, 255, 255, 0.9);
}

.profile-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-primary-vibrant);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-sm);
}

/* Seção de Personagens e Máquinas */
.people-machines-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.people-machines-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.people-machines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.character-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.character-card:nth-child(1) { animation-delay: 0.1s; }
.character-card:nth-child(2) { animation-delay: 0.2s; }
.character-card:nth-child(3) { animation-delay: 0.3s; }
.character-card:nth-child(4) { animation-delay: 0.4s; }

.character-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary-vibrant);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
    transform-origin: left;
}

.character-card:hover::before {
    transform: scaleX(1);
}

.character-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.character-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary-vibrant);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-colored);
    position: relative;
    transition: all var(--transition-smooth);
}

.character-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary-vibrant);
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
    transition: all var(--transition-smooth);
}

.character-card:hover .character-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-colored-lg);
}

.character-card:hover .character-icon::before {
    opacity: 0.5;
    transform: scale(1.2);
}

.character-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.character-machines {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: var(--radius-lg);
}

.character-machines i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all var(--transition-base);
    animation: floatMachine 3s ease-in-out infinite;
}

.character-machines i:nth-child(1) {
    animation-delay: 0s;
    color: #6366f1;
}

.character-machines i:nth-child(2) {
    animation-delay: 0.5s;
    color: #8b5cf6;
}

.character-machines i:nth-child(3) {
    animation-delay: 1s;
    color: #ec4899;
}

@keyframes floatMachine {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.character-card:hover .character-machines i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.character-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .people-machines-section {
        padding: 4rem 0;
    }
    
    .people-machines-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .character-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .character-card h3 {
        font-size: 1.25rem;
    }
    
    .character-machines {
        gap: 1rem;
    }
    
    .character-machines i {
        font-size: 1.5rem;
    }
}