/* CSS Base - Tailwind-like com variáveis do seu código */
:root {
    /* Core dark palette */
    --background: 0 0% 2%;
    --foreground: 0 0% 98%;

    --card: 0 0% 4%;
    --card-foreground: 0 0% 98%;

    --popover: 0 0% 4%;
    --popover-foreground: 0 0% 98%;

    --primary: 0 0% 98%;
    --primary-foreground: 0 0% 2%;

    --secondary: 0 0% 8%;
    --secondary-foreground: 0 0% 98%;

    --muted: 0 0% 12%;
    --muted-foreground: 0 0% 55%;

    --accent: 0 0% 15%;
    --accent-foreground: 0 0% 98%;

    --destructive: 0 62% 50%;
    --destructive-foreground: 0 0% 98%;

    --border: 0 0% 12%;
    --input: 0 0% 12%;
    --ring: 0 0% 40%;

    --radius: 0.75rem;

    /* Grid colors */
    --grid-line: 0 0% 8%;
    --grid-dot: 0 0% 15%;
}

/* Funções para converter HSL */
.hsl-background { background-color: hsl(var(--background)); }
.hsl-foreground { background-color: hsl(var(--foreground)); }
.hsl-card { background-color: hsl(var(--card)); }
.hsl-border { border-color: hsl(var(--border)); }
.hsl-muted-foreground { color: hsl(var(--muted-foreground)); }
.bg-foreground\/5 { background-color: hsl(var(--foreground) / 0.05); }
.bg-foreground\/20 { background-color: hsl(var(--foreground) / 0.2); }
.bg-background\/50 { background-color: hsl(var(--background) / 0.5); }
.bg-background\/80 { background-color: hsl(var(--background) / 0.8); }
.bg-card\/50 { background-color: hsl(var(--card) / 0.5); }
.border-muted-foreground\/30 { border-color: hsl(var(--muted-foreground) / 0.3); }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: hsl(var(--border));
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Grid Background */
.grid-background {
    background-image: 
        linear-gradient(hsl(var(--grid-line)) 1px, transparent 1px),
        linear-gradient(90deg, hsl(var(--grid-line)) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
}

.grid-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, hsl(var(--background)) 70%);
    pointer-events: none;
}

.grid-animate {
    animation: gridPulse 8s ease-in-out infinite;
}

/* Team card styles */
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card) / 0.5);
    backdrop-filter: blur(4px);
    transition: all 0.5s ease-out;
    cursor: pointer;
    min-width: 300px;
    padding: 1.75rem;
    width: 100%;
}

.team-card:hover {
    border-color: hsl(var(--muted-foreground) / 0.3);
    background-color: hsl(var(--card));
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px hsl(0 0% 0% / 0.5);
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(0 0% 100% / 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Glow text effect */
.text-glow {
    text-shadow: 0 0 40px hsl(0 0% 100% / 0.1);
}

/* Social icon style */
.social-icon {
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease-out;
}

.social-icon:hover {
    border-color: hsl(var(--foreground) / 0.5);
    background-color: hsl(var(--foreground) / 0.05);
}

/* Layout e Utilidades */
.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.pointer-events-none {
    pointer-events: none;
}

.overflow-hidden {
    overflow: hidden;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-30 {
    z-index: 30;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mt-20 {
    margin-top: 5rem;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.h-1 {
    height: 0.25rem;
}

.h-4 {
    height: 1rem;
}

.h-10 {
    height: 2.5rem;
}

.h-24 {
    height: 6rem;
}

.h-full {
    height: 100%;
}

.w-1 {
    width: 0.25rem;
}

.w-4 {
    width: 1rem;
}

.w-10 {
    width: 2.5rem;
}

.w-24 {
    width: 6rem;
}

.w-full {
    width: 100%;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-lg {
    max-width: 32rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-xl {
    border-radius: var(--radius);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.border {
    border-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.bg-transparent {
    background-color: transparent;
}

.object-cover {
    object-fit: cover;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.text-foreground {
    color: hsl(var(--foreground));
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.grayscale {
    filter: grayscale(100%);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.hover\:grayscale-0:hover {
    filter: grayscale(0%);
}

.hover\:border-foreground\/50:hover {
    border-color: hsl(var(--foreground) / 0.5);
}

.hover\:bg-foreground\/5:hover {
    background-color: hsl(var(--foreground) / 0.05);
}

.hover\:text-foreground:hover {
    color: hsl(var(--foreground));
}

/* Badge EM DESENVOLVIMENTO */
.badge {
    display: inline-block;
    background: linear-gradient(90deg, hsl(0 0% 23%) 0%, hsl(0 0% 10%) 100%);
    color: hsl(0 0% 67%);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 1rem;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    border: 1px solid hsl(var(--border));
    text-transform: uppercase;
}

/* Logo */
.logo {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, hsl(var(--foreground)) 0%, hsl(var(--muted-foreground)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtítulo */
.subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 36rem;
    padding: 0 1rem;
}

/* Botão */
.notify-btn {
    background-color: hsl(var(--foreground));
    color: hsl(var(--background));
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
    margin-bottom: 5rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px hsl(var(--foreground) / 0.1);
}

/* Seção Equipe */
.section-title {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 1px;
    background-color: hsl(var(--border));
}

/* Grid da equipe */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Footer */
.footer {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid hsl(var(--border));
    width: 100%;
    max-width: 56rem;
}

.copyright {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: hsl(var(--foreground));
}

/* Vignette overlay */
.bg-gradient-radial {
    background: radial-gradient(ellipse at center, transparent 0%, hsl(var(--background) / 0.8) 100%);
}

/* Link para instagram nos cards */
.instagram-link {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.6rem 1.25rem;
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    background: hsl(var(--card) / 0.3);
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: hsl(var(--foreground));
    border-color: hsl(var(--foreground) / 0.5);
    background: hsl(var(--card));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Container principal */
.main-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

/* Animações */
@keyframes gridPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Estilos para os perfis da equipe dinâmicos */
#teamProfiles {
    position: relative;
    min-height: 300px;
}

.loading-team {
    text-align: center;
    padding: 3rem;
    color: hsl(var(--muted-foreground));
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid hsl(var(--border));
    border-top-color: hsl(var(--foreground));
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.error-message {
    text-align: center;
    padding: 2rem;
    color: hsl(var(--destructive));
    background: hsl(var(--destructive) / 0.1);
    border-radius: var(--radius);
    border: 1px solid hsl(var(--destructive) / 0.3);
}

/* Avatar do Discord com status */
.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.75rem;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid hsl(var(--card));
}

.status-ring {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid hsl(var(--card));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cards de perfil aprimorados */
.team-card .discord-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-card .discord-username {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.75rem;
    font-family: 'Consolas', 'Monaco', monospace;
}

.team-card .role {
    font-size: 1.05rem;
    color: hsl(var(--foreground));
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: inline-block;
    padding: 0.35rem 1.25rem;
    background: hsl(var(--muted));
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
}

/* Badges do Discord - CORRIGIDO */
.discord-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    transition: transform 0.2s ease;
    filter: grayscale(0.3);
    object-fit: contain;
    padding: 3px;
    background: hsl(var(--muted) / 0.3);
    border: 1px solid hsl(var(--border) / 0.5);
}

.badge-icon:hover {
    transform: scale(1.2);
    filter: grayscale(0);
    border-color: hsl(var(--foreground) / 0.5);
}

.badge-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 20;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: hsl(var(--card)) transparent transparent transparent;
}

.badge-icon:hover + .badge-tooltip {
    opacity: 1;
}

/* Status do Discord */
.discord-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-online {
    background-color: #3ba55c;
}

.status-idle {
    background-color: #faa81a;
}

.status-dnd {
    background-color: #ed4245;
}

.status-offline {
    background-color: #737f8d;
}

/* Modal para mais informações */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: hsl(var(--card));
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    padding: 2rem;
    max-width: 520px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: hsl(var(--muted-foreground));
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
}

.modal-close:hover {
    color: hsl(var(--foreground));
    background: hsl(var(--muted));
}

/* Cabeçalho do modal */
.modal-header {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid hsl(var(--border) / 0.3);
    flex-shrink: 0;
}

.modal-avatar-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
}

.modal-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid hsl(var(--card));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.modal-status-ring {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid hsl(var(--card));
    background-color: #3ba55c;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: hsl(var(--foreground));
}

.modal-subtitle {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    font-family: 'Consolas', 'Monaco', monospace;
}

/* Container do status + Instagram lado a lado */
.status-instagram-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid hsl(var(--border) / 0.3);
    flex-wrap: wrap;
}

/* Status do Discord no modal */
.modal-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    flex-shrink: 0;
}

.modal-status.online {
    background: hsla(142, 47%, 45%, 0.1);
    border: 1px solid hsla(142, 47%, 45%, 0.3);
    color: #3ba55c;
}

.modal-status.idle {
    background: hsla(38, 95%, 54%, 0.1);
    border: 1px solid hsla(38, 95%, 54%, 0.3);
    color: #faa81a;
}

.modal-status.dnd {
    background: hsla(359, 82%, 59%, 0.1);
    border: 1px solid hsla(359, 82%, 59%, 0.3);
    color: #ed4245;
}

.modal-status.offline {
    background: hsla(214, 9%, 51%, 0.1);
    border: 1px solid hsla(214, 9%, 51%, 0.3);
    color: #737f8d;
}

/* Botão Instagram - ao lado do status */
.modal-instagram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
    border: none;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.2);
}

.modal-instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.modal-instagram-button i {
    font-size: 1.1rem;
}

/* Cargo no modal */
.modal-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, hsl(var(--muted)) 0%, hsl(var(--accent)) 100%);
    border-radius: 2rem;
    border: 1px solid hsl(var(--border));
    display: inline-block;
    margin-top: 1rem;
}

/* Seções do modal */
.modal-section {
    margin-bottom: 0;
    background: hsl(var(--card) / 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid hsl(var(--border) / 0.3);
    backdrop-filter: blur(10px);
}

.modal-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    color: hsl(var(--accent-foreground));
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid hsl(var(--border) / 0.3);
}

.modal-section-title i {
    font-size: 1rem;
    color: hsl(var(--accent-foreground));
}

/* Informações do perfil */
.profile-info-grid {
    display: grid;
    gap: 1.25rem;
}

.profile-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-info-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: hsl(var(--foreground) / 0.9);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.profile-info-label i {
    font-size: 0.8rem;
    color: hsl(var(--accent-foreground));
    width: 16px;
    text-align: center;
}

.profile-info-content {
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
    padding-left: 1.75rem;
}

/* Bio */
.bio-content {
    white-space: pre-line;
    word-break: break-word;
    background: hsl(var(--muted) / 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid hsl(var(--border) / 0.3);
    font-size: 0.9rem;
    line-height: 1.6;
    max-height: 200px;
    overflow-y: auto;
}

.color-preview-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1.75rem;
}

.color-preview {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 2px solid hsl(var(--border));
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.color-preview:hover {
    transform: scale(1.1);
}

.color-hex {
    font-size: 0.9rem;
    font-family: 'Consolas', 'Monaco', monospace;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
}

/* Badges do Discord - CORRIGIDO E MELHORADO */
.badges-section {
    margin-top: 1rem;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 15px;
    margin-top: 1rem;
}

.badge-modal-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.badge-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    transition: all 0.2s ease;
    filter: grayscale(0.3);
    cursor: pointer;
    border: 2px solid hsl(var(--border) / 0.5);
    background: hsl(var(--muted) / 0.3);
    padding: 8px;
    object-fit: contain;
}

.badge-modal-icon:hover {
    transform: scale(1.1) translateY(-3px);
    filter: grayscale(0);
    border-color: hsl(var(--accent-foreground) / 0.5);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.badge-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    text-align: center;
}

.badge-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: hsl(var(--card)) transparent transparent transparent;
}

.badge-modal-icon:hover + .badge-tooltip {
    opacity: 1;
}

.badge-name {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    text-align: center;
    margin-top: 0.25rem;
    line-height: 1.2;
    max-width: 60px;
    word-break: break-word;
    font-weight: 500;
}

/* Atividades */
.activities-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: hsl(var(--muted) / 0.5);
    border-radius: 12px;
    border: 1px solid hsl(var(--border) / 0.3);
    transition: all 0.2s ease;
}

.activity-item:hover {
    background: hsl(var(--muted));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.activity-icon-large {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid hsl(var(--border));
    background: linear-gradient(135deg, hsl(var(--muted)) 0%, hsl(var(--accent)) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: hsl(var(--foreground));
}

.activity-icon-large.fallback {
    font-size: 1.2rem;
}

.activity-details {
    flex: 1;
    min-width: 0;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.activity-name {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.activity-type-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    background: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-description {
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.activity-state {
    font-size: 0.8rem;
    color: hsl(var(--muted-foreground) / 0.8);
    font-style: italic;
}

.activity-time {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground) / 0.6);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-time i {
    font-size: 0.7rem;
}

.no-activities {
    text-align: center;
    padding: 2rem;
    color: hsl(var(--muted-foreground));
}

.no-activities i {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-activities p {
    font-size: 0.9rem;
}

/* Estilo para badges com erro - CORRIGIDO */
.badge-error {
    width: 60px;
    height: 60px;
    background: hsl(var(--destructive) / 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--destructive-foreground));
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid hsl(var(--border));
    font-family: monospace;
}

.badge-error-small {
    width: 28px;
    height: 28px;
    background: hsl(var(--destructive) / 0.2);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--destructive-foreground));
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid hsl(var(--border));
    font-family: monospace;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: hsl(var(--background));
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--muted));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--muted-foreground) / 0.5);
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: hsl(var(--border));
    border-radius: 3px;
}

/* Seleção de texto personalizada */
::selection {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

/* Estilo para avatares fallback */
.avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsl(var(--muted)) 0%, hsl(var(--accent)) 100%);
    color: hsl(var(--foreground));
    font-weight: bold;
    font-size: 2rem;
    border-radius: 50%;
}

/* Animações para entrada do modal */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content {
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Seção Sobre a Ayla */
.about-section {
    width: 100%;
    max-width: 1400px;
    margin: 4rem auto 5rem;
    padding: 0 1.5rem;
}

.about-container {
    background: hsl(var(--card) / 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.about-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(var(--foreground) / 0.3), transparent);
}

.about-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(var(--foreground));
    text-align: center;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.about-title i {
    color: hsl(var(--accent-foreground));
    font-size: 2rem;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, hsl(var(--accent-foreground)), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: hsl(var(--card) / 0.7);
    border-radius: 18px;
    padding: 2.2rem;
    border: 1px solid hsl(var(--border) / 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, hsl(var(--accent-foreground)), hsl(var(--foreground) / 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, hsl(var(--foreground) / 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: hsl(var(--foreground) / 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover::after {
    opacity: 1;
}

.about-card.highlight {
    border: 2px solid hsl(var(--accent-foreground) / 0.4);
    background: linear-gradient(135deg, hsl(var(--card) / 0.9), hsl(var(--accent) / 0.15));
    position: relative;
    overflow: hidden;
}

.about-card.highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        hsl(var(--accent-foreground) / 0.1) 50%, 
        transparent 70%);
    animation: shine 3s infinite linear;
    opacity: 0.5;
}

@keyframes shine {
    0% { transform: rotate(0deg) translate(-10%, -10%); }
    100% { transform: rotate(360deg) translate(-10%, -10%); }
}

.about-card.highlight .about-icon {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--muted)));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: hsl(var(--accent-foreground));
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.about-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.about-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.about-card.highlight p {
    color: hsl(var(--foreground) / 0.95);
    font-weight: 500;
}

.about-card.highlight h3 {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Grid de funcionalidades */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: hsl(var(--background) / 0.6);
    border-radius: 16px;
    border: 1px solid hsl(var(--border) / 0.4);
    position: relative;
    overflow: hidden;
}

.features-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, hsl(var(--foreground) / 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: hsl(var(--card) / 0.4);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid hsl(var(--border) / 0.3);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, hsl(var(--foreground) / 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover {
    background: hsl(var(--card) / 0.8);
    border-color: hsl(var(--foreground) / 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item i {
    color: hsl(var(--accent-foreground));
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
}

.feature-item span {
    color: hsl(var(--muted-foreground));
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-item:hover span {
    color: hsl(var(--foreground));
}

/* CTA Section */
.cta-container {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, hsl(var(--card) / 0.9), hsl(var(--background) / 0.7));
    border-radius: 20px;
    border: 1px solid hsl(var(--border) / 0.6);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, hsl(var(--accent-foreground) / 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-text {
    font-size: 1.5rem;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: linear-gradient(135deg, hsl(var(--foreground)), hsl(var(--muted-foreground)));
    color: hsl(var(--background));
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 2.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px hsl(var(--foreground) / 0.3);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, hsl(var(--background) / 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px hsl(var(--foreground) / 0.4);
    background: linear-gradient(135deg, hsl(var(--foreground) / 0.9), hsl(var(--muted-foreground) / 0.9));
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button i {
    font-size: 1.2rem;
}

.trial-note {
    color: hsl(var(--accent-foreground));
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: hsl(var(--accent) / 0.25);
    border-radius: 1.5rem;
    border: 1px solid hsl(var(--accent-foreground) / 0.4);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.trial-note i {
    color: #ffa726;
    font-size: 1.2rem;
}

.trial-note strong {
    color: hsl(var(--foreground));
    font-weight: 700;
}

/* Modal de pré-registro */
#preRegisterModal .modal-content {
    max-width: 500px;
    background: hsl(var(--card));
}

.pre-register-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    color: hsl(var(--foreground));
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-group label i {
    color: hsl(var(--accent-foreground));
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: 10px;
    padding: 1rem 1.2rem;
    color: hsl(var(--foreground));
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: hsl(var(--accent-foreground));
    box-shadow: 0 0 0 3px hsl(var(--accent-foreground) / 0.15);
    background: hsl(var(--background) / 0.9);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: hsl(var(--background) / 0.5);
    border-radius: 10px;
    border: 1px solid hsl(var(--border) / 0.5);
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    accent-color: hsl(var(--accent-foreground));
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
    font-weight: 500;
}

.form-submit {
    background: linear-gradient(135deg, hsl(var(--foreground)), hsl(var(--muted-foreground)));
    color: hsl(var(--background));
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px hsl(var(--foreground) / 0.3);
    background: linear-gradient(135deg, hsl(var(--foreground) / 0.9), hsl(var(--muted-foreground) / 0.9));
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
    animation: successPulse 1.5s infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.form-success h3 {
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.form-success p {
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.form-success .trial-note {
    margin-top: 2rem;
}

/* Responsividade */
@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 48rem;
    }
}

@media (max-width: 992px) {
    .about-section {
        margin: 3rem auto 4rem;
    }
    
    .about-container {
        padding: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 0 1rem;
        margin: 2.5rem auto 3.5rem;
    }
    
    .about-container {
        padding: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-title {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
    }
    
    .about-card {
        padding: 1.8rem;
    }
    
    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .feature-item {
        padding: 0.9rem 1.2rem;
    }
    
    .cta-container {
        padding: 2rem;
    }
    
    .cta-text {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        gap: 1.5rem;
    }
    
    .team-card {
        min-width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
    
    .logo {
        font-size: 3rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 2rem;
    }
    
    .notify-btn {
        margin-bottom: 4rem;
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .footer {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .modal-content {
        padding: 1.25rem;
        max-height: 90vh;
        width: 95%;
    }
    
    .modal-section {
        padding: 1rem;
    }
    
    .badges-grid {
        grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
        gap: 10px;
    }
    
    .badge-modal-icon {
        width: 45px;
        height: 45px;
    }
    
    .activity-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .activity-icon-large {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .activity-details {
        width: 100%;
    }
    
    .badge-name {
        font-size: 0.7rem;
        max-width: 45px;
    }
}

@media (max-width: 576px) {
    .about-container {
        padding: 1.5rem;
    }
    
    .about-title {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .about-title i {
        font-size: 1.6rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem;
    }
    
    .trial-note {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .checkbox-group input[type="checkbox"] {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .about-card h3 {
        font-size: 1.2rem;
    }
    
    .about-card p {
        font-size: 0.95rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}