/* SERVICES.CSS - Classes utilitárias Tailwind exato do Vite */

/* Layout da seção */
.py-24 { padding-top: 3rem; padding-bottom: 3rem; }
.bg-background { background-color: hsl(var(--background)); }

/* Container e spacing */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

@media (min-width: 640px) {
    .py-24 { padding-top: 4.5rem; padding-bottom: 4.5rem; }
}

@media (min-width: 768px) {
    .py-24 { padding-top: 6rem; padding-bottom: 6rem; }
}
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.text-center { text-align: center; }
.mb-20 { margin-bottom: 3rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

@media (min-width: 640px) {
    .mb-20 { margin-bottom: 4rem; }
}

@media (min-width: 768px) {
    .mb-20 { margin-bottom: 5rem; }
}

/* Typography - Header */
.text-4xl { font-size: 1.875rem; line-height: 2.25rem; }
.md\:text-6xl { font-size: 1.875rem; line-height: 2.25rem; }

@media (min-width: 640px) {
    .text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-6xl { font-size: 2.5rem; line-height: 1; }
}

@media (min-width: 768px) {
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
}
.mb-8 { margin-bottom: 2rem; }
.text-foreground { color: hsl(var(--foreground)); }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.md\:text-xl { font-size: 1.125rem; line-height: 1.75rem; }
.leading-relaxed { line-height: 1.625; }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }

/* Grid */
.grid { display: grid; }
.md\:grid-cols-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.lg\:grid-cols-3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-8 { gap: 2rem; }

/* Card styles - Exato do shadcn/ui */
.rounded-lg { border-radius: var(--radius); }
.border { border-width: 1px; border-color: hsl(var(--border)); }
.bg-card { background-color: hsl(var(--card)); }
.text-card-foreground { color: hsl(var(--card-foreground)); }
.shadow-sm { box-shadow: 0 1px 2px 0 hsl(0 0% 0% / 0.05); }
.hover\:luxury-shadow:hover { box-shadow: var(--shadow-luxury); }
.transition-all { transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.duration-500 { transition-duration: 500ms; }
.border-border\/50 { border-color: hsl(var(--border) / 0.5); }
.hover\:border-primary\/30:hover { border-color: hsl(var(--primary) / 0.3); }
.bg-card\/80 { background-color: hsl(var(--card) / 0.8); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.hover\:transform:hover { transform: translateX(0); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* Prioridade: bg-card/80 sobrescreve bg-card quando aplicadas juntas */
.bg-card.bg-card\/80 { background-color: hsl(var(--card) / 0.8); }

/* Card content */
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.flex { display: flex; }
.justify-center { justify-content: center; }

/* Icon container */
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.rounded-full { border-radius: 9999px; }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.group:hover .p-5 { 
    background-color: hsl(var(--primary) / 0.2);
    transform: scale(1.1);
}
.duration-300 { transition-duration: 300ms; }

/* Icon styling */
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.text-primary { color: hsl(var(--primary)); }
.p-5 svg { color: hsl(var(--primary)); stroke: hsl(var(--primary)); }

/* Card title */
.font-semibold { font-weight: 600; }
.tracking-tight { letter-spacing: -0.025em; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.mb-4 { margin-bottom: 1rem; }
.group:hover h3 { color: hsl(var(--primary)); }
.transition-colors { transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

/* Card text */
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
/* New: base body size for service descriptions (matching React default 1rem) */
.text-base { font-size: 1rem; line-height: 1.5rem; }

/* Override specifically inside service cards: promote description to base size */
.rounded-lg .elegant-text.text-muted-foreground.leading-relaxed.text-sm {
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA section */
.mt-20 { margin-top: 5rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* CTA button - exato do Vite */
.gold-gradient { background: var(--gradient-gold); }
.text-secondary { color: hsl(var(--secondary)); }
.font-semibold { font-weight: 600; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.rounded-lg { border-radius: calc(var(--radius) - 2px); }
.elegant-shadow { box-shadow: var(--shadow-elegant); }
.hover\:scale-105:hover button { transform: scale(1.05); }
.transition-transform { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

/* Button base styling - shadcn/ui base + Vite específico */
button {
    /* shadcn/ui base classes */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Focus styles */
    outline: none;
}

/* Focus visible */
button:focus-visible {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

/* Disabled state */
button:disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* Responsive */
@media (min-width: 768px) {
    .container { max-width: 768px; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .container { max-width: 1024px; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1400px) {
    .container { max-width: 1400px; }
}
