/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: 0 0% 0%;
    --foreground: 0 0% 100%;
    --card: 0 0% 6%;
    --card-foreground: 0 0% 100%;
    --popover: 0 0% 6%;
    --popover-foreground: 0 0% 100%;
    --primary: 142 72% 42%;
    --primary-foreground: 0 0% 100%;
    --primary-glow: 142 72% 55%;
    --primary-dark: 142 72% 32%;
    --secondary: 0 0% 10%;
    --secondary-foreground: 0 0% 100%;
    --muted: 0 0% 15%;
    --muted-foreground: 0 0% 65%;
    --accent: 142 72% 10%;
    --accent-foreground: 142 72% 42%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --success: 142 72% 42%;
    --success-foreground: 0 0% 100%;
    --border: 0 0% 18%;
    --input: 0 0% 18%;
    --ring: 142 72% 42%;
    --radius: 0.75rem;
    --gradient-hero: linear-gradient(135deg, hsl(142 72% 42%) 0%, hsl(175 60% 35%) 100%);
    --gradient-hero-hover: linear-gradient(135deg, hsl(142 72% 52%) 0%, hsl(175 60% 45%) 100%);
    --gradient-subtle: linear-gradient(180deg, hsl(0 0% 0%) 0%, hsl(0 0% 3%) 50%, hsl(0 0% 0%) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    --gradient-dark: linear-gradient(180deg, hsl(0 0% 2%) 0%, hsl(0 0% 8%) 50%, hsl(0 0% 2%) 100%);
    --gradient-glow: radial-gradient(ellipse at center, hsl(142 72% 42% / .15) 0%, transparent 70%);
    --gradient-shine: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    --shadow-soft: 0 8px 32px -8px hsl(142 72% 42% / .25);
    --shadow-glow: 0 0 80px hsl(142 72% 42% / .4), 0 0 40px hsl(142 72% 42% / .3);
    --shadow-card: 0 10px 50px -15px hsl(0 0% 0% / .6);
    --shadow-elevated: 0 25px 70px -20px hsl(0 0% 0% / .7);
    --shadow-intense: 0 0 100px hsl(142 72% 42% / .5), 0 0 50px hsl(142 72% 42% / .4), 0 0 25px hsl(142 72% 42% / .3);
    --sidebar-background: 0 0% 4%;
    --sidebar-foreground: 0 0% 98%;
    --sidebar-primary: 142 72% 42%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 0 0% 10%;
    --sidebar-accent-foreground: 0 0% 98%;
    --sidebar-border: 0 0% 15%;
    --sidebar-ring: 142 72% 42%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    font-weight: 400;
}

/* Utility Classes for Gradients and Effects */
.gradient-hero {
    background: var(--gradient-hero);
}

.gradient-subtle {
    background: var(--gradient-subtle);
}

.gradient-dark {
    background: var(--gradient-dark);
}

.gradient-card {
    background: var(--gradient-card);
}

.gradient-glow {
    background: var(--gradient-glow);
}

/* Animations */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-soft {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.animate-fade-up {
    animation: fade-up 0.6s ease-out;
}

.animate-fade-up-delay-1 {
    animation: fade-up 0.6s ease-out 0.1s both;
}

.animate-fade-up-delay-2 {
    animation: fade-up 0.6s ease-out 0.2s both;
}

.animate-fade-up-delay-3 {
    animation: fade-up 0.6s ease-out 0.3s both;
}

.animate-fade-up-delay-4 {
    animation: fade-up 0.6s ease-out 0.4s both;
}

/* ANIMAÇÕES FLOAT DESABILITADAS */
/*
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
    animation: float 8s ease-in-out infinite;
}
*/

.animate-pulse-soft {
    animation: pulse-soft 2s ease-in-out infinite;
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shadow and Glow Effects */
.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.shadow-card {
    box-shadow: var(--shadow-card);
}

.shadow-elevated {
    box-shadow: var(--shadow-elevated);
}

.shadow-soft {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.shadow-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.shadow-elevated {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.shadow-glow {
    box-shadow: 0 0 40px hsla(142.1, 76.2%, 36.3%, 0.3);
}

.glass {
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bg-grid-pattern {
    background-image: 
        linear-gradient(to right, hsl(var(--border)) 1px, transparent 1px),
        linear-gradient(to bottom, hsl(var(--border)) 1px, transparent 1px);
    background-size: 4rem 4rem;
}

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.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 ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(0, 204, 106, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.125rem 2.75rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.25rem;
    border: none;
    border-radius: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary-lg::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 ease;
}

.btn-primary-lg:hover::before {
    left: 100%;
}

.btn-primary-lg:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 60px rgba(0, 204, 106, 0.6), 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary-lg:active {
    transform: scale(1.02);
}

.btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.125rem 2.75rem;
    background: transparent;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.25rem;
    border: 2px solid var(--primary-green);
    border-radius: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-secondary-lg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.btn-secondary-lg:hover::before {
    width: 300%;
    height: 300%;
}

.btn-secondary-lg:hover {
    border-color: var(--primary-green-light);
    box-shadow: 0 0 30px rgba(0, 204, 106, 0.4);
    transform: translateY(-2px);
}

/* Cards */
.card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    transition: all var(--transition-slow);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.card:hover::before {
    transform: translateX(100%);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 204, 106, 0.5);
    box-shadow: 0 20px 60px rgba(0, 204, 106, 0.15), var(--shadow-lg);
    background: rgba(17, 24, 39, 0.95);
}

.pricing-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 2rem;
    background: var(--dark-card);
    border: 2px solid rgba(0, 204, 106, 0.4);
    box-shadow: 0 0 60px rgba(0, 204, 106, 0.2);
    transition: all var(--transition-slow);
    backdrop-filter: blur(10px);
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 2rem;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.pricing-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 80px rgba(0, 204, 106, 0.4), 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover::after {
    opacity: 1;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.text-gradient::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* WhatsApp Float Button - DESABILITADO (usando Tailwind no HTML) */
/*
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(0, 204, 106, 0.5);
    transition: all var(--transition-normal);
    animation: pulse-float 2s infinite, float 3s ease-in-out infinite;
    cursor: pointer;
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--text-white);
    transition: transform var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 204, 106, 0.7);
}

.whatsapp-float:hover i {
    transform: rotate(15deg);
}

.whatsapp-float:active {
    transform: scale(1.05);
}

@keyframes pulse-float {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(0, 204, 106, 0.5);
    }
    50% {
        box-shadow: 0 6px 35px rgba(0, 204, 106, 0.8), 0 0 0 10px rgba(0, 204, 106, 0.1);
    }
}
*/

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-scale {
    animation: scaleIn 0.6s ease-out;
}

/* Scroll animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-primary,
    .btn-primary-lg,
    .btn-secondary-lg {
        width: 100%;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .pricing-card {
        padding: 1.75rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 3.25rem;
        height: 3.25rem;
    }
    
    .whatsapp-float i {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .card {
        padding: 1.25rem;
        border-radius: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
    }
    
    .btn-primary,
    .btn-primary-lg,
    .btn-secondary-lg {
        font-size: 0.95rem;
        padding: 0.875rem 1.25rem;
    }
}

/* Large screens optimization */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .card {
        padding: 2.5rem;
    }
    
    .pricing-card {
        padding: 3rem;
    }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-primary-lg,
    .btn-secondary-lg,
    .card,
    .whatsapp-float {
        min-height: 48px;
        min-width: 48px;
    }
    
    /* Disable hover effects on touch devices */
    .card:hover {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-primary-lg:hover,
    .btn-secondary-lg:hover {
        transform: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .card {
        border-width: 2px;
    }
    
    .btn-primary,
    .btn-primary-lg {
        border: 2px solid var(--text-white);
    }
}

/* Focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Container */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

/* Utility Classes */
.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.shadow-glow-hover:hover {
    box-shadow: 0 0 60px rgba(0, 204, 106, 0.5);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

.gradient-border {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: inherit;
    z-index: -1;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 204, 106, 0.2);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 2px 10px rgba(0, 204, 106, 0.3);
}

/* Testimonial Card */
.testimonial-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    transition: all var(--transition-slow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-green);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 204, 106, 0.4);
    box-shadow: 0 15px 45px rgba(0, 204, 106, 0.15);
}

/* Feature Icon */
.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(0, 204, 106, 0.1), rgba(0, 255, 136, 0.1));
    border: 1px solid rgba(0, 204, 106, 0.3);
    transition: all var(--transition-normal);
}

.feature-icon:hover {
    background: linear-gradient(135deg, rgba(0, 204, 106, 0.2), rgba(0, 255, 136, 0.2));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 204, 106, 0.3);
}

/* Stats Counter */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    margin: 4rem 0;
}

/* Smooth scroll offset for fixed headers */
html {
    scroll-padding-top: 80px;
}

/* Selection color */
::selection {
    background: var(--primary-green);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--primary-green);
    color: var(--text-white);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-green), var(--primary-green-light));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-light);
}

/* Performance optimization */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}

/* Print styles */
@media print {
    .whatsapp-float,
    .btn-primary,
    .btn-primary-lg,
    .btn-secondary-lg {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Typography Scale - Based on reference design */
h1 {
    font-size: 2.25rem; /* 36px */
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 1.875rem; /* 30px */
    line-height: 1.25;
    font-weight: 700;
}

h3 {
    font-size: 1.25rem; /* 20px */
    line-height: 1.5;
    font-weight: 700;
}

p {
    font-size: 1rem; /* 16px */
    line-height: 1.625;
}

.text-sm {
    font-size: 0.875rem; /* 14px */
    line-height: 1.5;
}

.text-xs {
    font-size: 0.75rem; /* 12px */
    line-height: 1.5;
}

.text-lg {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75;
}

.text-xl {
    font-size: 1.25rem; /* 20px */
    line-height: 1.75;
}

.text-2xl {
    font-size: 1.5rem; /* 24px */
    line-height: 1.33;
}

.text-3xl {
    font-size: 1.875rem; /* 30px */
    line-height: 1.25;
}

.text-4xl {
    font-size: 2.25rem; /* 36px */
    line-height: 1.2;
}

.text-5xl {
    font-size: 3rem; /* 48px */
    line-height: 1.15;
}

.text-6xl {
    font-size: 3.75rem; /* 60px */
    line-height: 1.1;
}

.text-7xl {
    font-size: 4.5rem; /* 72px */
    line-height: 1.05;
}

/* Responsive Typography */
@media (min-width: 768px) {
    h1 {
        font-size: 3.75rem; /* 60px */
    }
    
    h2 {
        font-size: 3rem; /* 48px */
    }
    
    .text-4xl {
        font-size: 2.25rem; /* 36px */
    }
    
    .text-5xl {
        font-size: 3rem; /* 48px */
    }
    
    .text-6xl {
        font-size: 3.75rem; /* 60px */
    }
    
    .text-7xl {
        font-size: 4.5rem; /* 72px */
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4.5rem; /* 72px */
    }
    
    h2 {
        font-size: 3rem; /* 48px */
    }
    
    .text-7xl {
        font-size: 4.5rem; /* 72px */
    }
}

/* Height/Spacing Classes */
.h-9 {
    height: 2.25rem; /* 36px */
}

.h-10 {
    height: 2.5rem; /* 40px */
}

.h-12 {
    height: 3rem; /* 48px */
}

.h-14 {
    height: 3.5rem; /* 56px */
}

.h-16 {
    height: 4rem; /* 64px */
}

.h-18 {
    height: 4.5rem; /* 72px */
}

/* Font Weight */
.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

/* Leading (line-height) */
.leading-tight {
    line-height: 1.25;
}

.leading-snug {
    line-height: 1.375;
}

.leading-normal {
    line-height: 1.5;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Tracking (letter-spacing) */
.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-normal {
    letter-spacing: 0;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

/* Badge Styles - Green Neon with Dark Background */
.badge-green-neon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsl(135 100% 50% / 0.1);
    border: 2px solid hsl(135 100% 50%);
    border-radius: 9999px;
    color: hsl(135 100% 50%);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 0 20px hsl(135 100% 50% / 0.3);
    backdrop-filter: blur(10px);
}

/* Button Green Neon - Filled */
.btn-green-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: hsl(135 100% 50%);
    color: hsl(0 0% 0%);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px hsl(135 100% 50% / 0.4);
    text-decoration: none;
}

.btn-green-neon:hover {
    background: hsl(135 100% 55%);
    box-shadow: 0 0 60px hsl(135 100% 50% / 0.6);
    transform: translateY(-2px);
}

.btn-green-neon:active {
    transform: translateY(0);
}

/* Button Green Neon - Outline */
.btn-green-neon-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: hsl(135 100% 50%);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid hsl(135 100% 50%);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px hsl(135 100% 50% / 0.2);
    text-decoration: none;
}

.btn-green-neon-outline:hover {
    background: hsl(135 100% 50% / 0.1);
    box-shadow: 0 0 40px hsl(135 100% 50% / 0.4);
    transform: translateY(-2px);
}

.btn-green-neon-outline:active {
    transform: translateY(0);
}

/* Text Color Utilities */
.text-neon-green {
    color: hsl(135 100% 50%);
}

.text-gray-400 {
    color: hsl(0 0% 65%);
}

.text-gray-500 {
    color: hsl(0 0% 50%);
}

.text-white {
    color: hsl(0 0% 100%);
}

/* Background Utilities */
.bg-black {
    background-color: hsl(0 0% 0%);
}

.bg-dark-card {
    background-color: hsl(0 0% 6%);
}

.bg-dark-secondary {
    background-color: hsl(0 0% 10%);
}

/* Border Utilities */
.border-neon-green {
    border-color: hsl(135 100% 50%);
}

.border-dark {
    border-color: hsl(0 0% 18%);
}

/* Glow Effects */
.glow-green {
    box-shadow: 0 0 40px hsl(135 100% 50% / 0.3);
}

.glow-green-strong {
    box-shadow: 0 0 60px hsl(135 100% 50% / 0.5);
}

/* Rounded Corners */
.rounded-full {
    border-radius: 9999px;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

/* Floating WhatsApp Button - DESABILITADO (usando Tailwind) */
/*
.whatsapp-float-green {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: hsl(135 100% 50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px hsl(135 100% 50% / 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float-green:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px hsl(135 100% 50% / 0.7);
}
*/

/* Hero Section Specific */
.hero-dark {
    background: hsl(0 0% 0%);
    position: relative;
    overflow: hidden;
}

.hero-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsl(135 100% 50% / 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Text Visibility Fixes for Dark Theme */
h1, h2, h3, h4, h5, h6 {
    color: hsl(0 0% 100%) !important;
}

.text-foreground {
    color: hsl(0 0% 100%) !important;
}

.text-muted-foreground {
    color: hsl(0 0% 70%) !important;
}

/* Ensure green text is visible */
.text-gradient,
.text-primary {
    background: linear-gradient(135deg, hsl(135 100% 50%) 0%, hsl(135 100% 60%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero title specific */
section h1 {
    color: hsl(0 0% 100%) !important;
}

section h1 .text-gradient {
    background: linear-gradient(135deg, hsl(135 100% 50%) 0%, hsl(135 100% 60%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section h1 + br + span {
    color: hsl(0 0% 70%) !important;
}

/* ===================================
   MELHORIAS PROFISSIONAIS DE DESIGN
   =================================== */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Tipografia Refinada */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Botões com Animações Profissionais */
button, .btn, a[role="button"] {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover, .btn:hover, a[role="button"]:hover {
    transform: translateY(-2px);
}

button:active, .btn:active, a[role="button"]:active {
    transform: translateY(0);
}

/* Efeito Ripple nos Botões Primários */
.bg-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.bg-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Cards com Efeito Glassmorphism Sutil */
.bg-card {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-card:hover {
    background: rgba(0, 0, 0, 0.7) !important;
    border-color: rgba(0, 255, 106, 0.3);
    box-shadow: 0 8px 32px rgba(0, 255, 106, 0.1);
}

/* Sombras Profissionais */
.shadow-elevated {
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 16px 32px rgba(0, 0, 0, 0.1);
}

.shadow-soft {
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.08);
}

.shadow-glow {
    box-shadow: 
        0 0 20px rgba(0, 255, 106, 0.3),
        0 0 40px rgba(0, 255, 106, 0.2),
        0 0 60px rgba(0, 255, 106, 0.1);
}

/* Hover nas Imagens */
img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

img:hover {
    transform: scale(1.02);
}

/* Animação de Entrada para Seções */
section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradientes Modernos */
.gradient-hero {
    background: linear-gradient(135deg, 
        hsl(135 100% 50%) 0%, 
        hsl(150 100% 45%) 50%,
        hsl(165 100% 40%) 100%);
}

.gradient-subtle {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 255, 106, 0.03) 50%,
        rgba(0, 0, 0, 0) 100%);
}

.gradient-dark {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 20, 10, 0.98) 50%,
        rgba(0, 0, 0, 0.95) 100%);
}

/* Bordas com Gradiente */
.border-gradient {
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        linear-gradient(135deg, hsl(135 100% 50%), hsl(165 100% 40%));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Links com Sublinhado Animado */
a:not(.btn):not([role="button"]) {
    position: relative;
    text-decoration: none;
}

a:not(.btn):not([role="button"])::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: hsl(135 100% 50%);
    transition: width 0.3s ease;
}

a:not(.btn):not([role="button"]):hover::after {
    width: 100%;
}

/* Accordion com Animação Suave */
[data-state="open"] {
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-state="closed"] {
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        max-height: 500px;
    }
    to {
        opacity: 0;
        max-height: 0;
    }
}

/* Header com Efeito Blur */
header {
    backdrop-filter: blur(12px) saturate(180%);
    background: rgba(0, 0, 0, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 106, 0.5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 106, 0.7);
}

/* Texto com Sombra Sutil */
h1, h2 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Badges e Tags Modernos */
.badge, span[class*="rounded-full"] {
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.badge:hover, span[class*="rounded-full"]:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 255, 106, 0.2);
}

/* Loader/Spinner Animado */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Pulse Suave */
.animate-pulse-soft {
    animation: pulseSoft 3s ease-in-out infinite;
}

@keyframes pulseSoft {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Float Animation - DESABILITADO */
/*
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-float-slow {
    animation: float 8s ease-in-out infinite;
}
*/

/* Responsividade Aprimorada */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Focus States Profissionais */
*:focus-visible {
    outline: 2px solid hsl(135 100% 50%);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Transições Suaves Globais */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Botão WhatsApp - FIXO NO CANTO */
a[href*="wa.me"].fixed {
    position: fixed !important;
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    z-index: 9999 !important;
}

a[href*="wa.me"].fixed > div {
    animation: none !important;
}

/* Botão WhatsApp Flutuante - CORRIGIDO */
.fixed.bottom-6.right-6 {
    animation: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.fixed.bottom-6.right-6:hover {
    transform: scale(1.05) !important;
}

/* Prevenção de Flash de Conteúdo */
body {
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* =========================
   MELHORIAS EXTRAS PROFISSIONAIS
   ========================= */

/* Efeito Parallax Sutil nas Seções */
section {
    transform-style: preserve-3d;
}

/* Cards com Efeito de Elevação ao Hover */
.bg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 255, 106, 0.15),
                0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Badges e Tags com Animação */
.inline-flex {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Imagens com Transição Suave */
img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Botões com Efeito de Pulse no Hover - DESABILITADO TEMPORARIAMENTE */

/* Cards de Preço com Transição Suave */
.border-primary {
    transition: all 0.3s ease;
}

.border-primary:hover {
    border-color: hsl(135 100% 60%);
    box-shadow: 0 0 20px rgba(0, 255, 106, 0.3);
}

/* Footer Links com Underline Animado */
footer a {
    position: relative;
    transition: color 0.3s;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: hsl(135 100% 50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer a:hover::after {
    width: 100%;
}

/* Inputs de Formulário (se houver) com Foco Aprimorado */
input:focus,
textarea:focus {
    outline: none;
    border-color: hsl(135 100% 50%);
    box-shadow: 0 0 0 3px rgba(0, 255, 106, 0.1),
                0 0 20px rgba(0, 255, 106, 0.2);
}

/* Loading States para Botões */
button.loading {
    position: relative;
    color: transparent;
}

button.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Badges de Notificação */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    background: linear-gradient(135deg, 
        hsl(135 100% 50%), 
        hsl(120 100% 40%));
    color: hsl(0 0% 0%);
    box-shadow: 0 2px 10px rgba(0, 255, 106, 0.3);
}

/* Tooltips (caso sejam adicionados) */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 0.5rem 1rem;
    background: hsl(0 0% 10%);
    color: hsl(0 0% 100%);
    border: 1px solid hsl(135 100% 50%);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

[data-tooltip]:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* Melhorias para Mobile */
@media (max-width: 768px) {
    /* Redução de animações em mobile para performance */
    * {
        animation-duration: 0.3s !important;
    }
    
    /* Espaçamento otimizado */
    section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    /* Botões maiores para melhor usabilidade */
    button,
    a[class*="button"] {
        min-height: 48px;
        font-size: 1rem;
    }
}

/* Acessibilidade - Modo de Alto Contraste */
@media (prefers-contrast: high) {
    * {
        border-width: 2px !important;
    }
    
    .text-muted-foreground {
        color: hsl(0 0% 80%) !important;
    }
}

/* Redução de Movimento para Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Performance - GPU Acceleration */
.bg-card,
button,
img,
.shadow-glow {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ========================================
   MELHORIAS VISUAIS ADICIONADAS
======================================== */

/* Glassmorphism Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Shine Animation for Buttons */
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

button.shadow-glow,
.inline-flex.bg-primary {
    position: relative;
    overflow: hidden;
}

button.shadow-glow::after,
.inline-flex.bg-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: var(--gradient-shine);
    animation: shine 3s infinite;
    pointer-events: none;
}

button.shadow-glow:hover::after,
.inline-flex.bg-primary:hover::after {
    animation: shine 1.5s infinite;
}

/* Floating Animation Enhanced */
@keyframes float-enhanced {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

.animate-float {
    animation: float-enhanced 6s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-enhanced 8s ease-in-out infinite;
}

/* Pulse Soft Enhanced */
@keyframes pulse-soft-enhanced {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.animate-pulse-soft {
    animation: pulse-soft-enhanced 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Card Hover Effects */
.bg-card,
.rounded-2xl.bg-card,
.rounded-3xl.bg-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bg-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, 
        hsl(142 72% 42% / 0.3) 0%, 
        transparent 50%, 
        hsl(142 72% 42% / 0.3) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bg-card:hover::before {
    opacity: 1;
}

.bg-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-intense) !important;
}

/* Text Gradient Enhanced */
.text-gradient {
    background: linear-gradient(135deg, 
        hsl(142 72% 55%) 0%, 
        hsl(175 60% 45%) 50%, 
        hsl(142 72% 55%) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Button Glow on Hover */
.bg-primary {
    position: relative;
}

.bg-primary::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: radial-gradient(circle, 
        hsl(142 72% 42% / 0.5) 0%, 
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(20px);
}

.bg-primary:hover::before {
    opacity: 1;
}

/* Smooth Scroll */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}

/* Enhanced Shadows for Video Container */
.shadow-elevated {
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 25px 70px -20px rgba(0, 0, 0, 0.8),
        0 10px 40px -10px hsl(142 72% 42% / 0.2);
}

/* Improved Gradient Backgrounds */
.gradient-subtle {
    background: 
        radial-gradient(ellipse 800px 600px at 50% 0%, hsl(142 72% 42% / 0.05), transparent),
        radial-gradient(ellipse 600px 800px at 0% 100%, hsl(175 60% 35% / 0.03), transparent),
        linear-gradient(180deg, hsl(0 0% 0%) 0%, hsl(0 0% 2%) 50%, hsl(0 0% 0%) 100%);
}

/* Hero Section Gradient */
.gradient-hero {
    background: linear-gradient(135deg, 
        hsl(142 72% 42%) 0%, 
        hsl(160 65% 38%) 50%, 
        hsl(175 60% 35%) 100%
    );
    box-shadow: 
        0 4px 20px hsl(142 72% 42% / 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gradient-hero:hover {
    background: linear-gradient(135deg, 
        hsl(142 72% 52%) 0%, 
        hsl(160 65% 48%) 50%, 
        hsl(175 60% 45%) 100%
    );
    box-shadow: 
        0 6px 30px hsl(142 72% 42% / 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Responsive Text Sizes */
@media (max-width: 640px) {
    h1 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }
    
    h2 {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
    }
    
    p {
        font-size: clamp(0.875rem, 3.5vw, 1rem) !important;
    }
}

/* Improved Border Animations */
@keyframes border-glow {
    0%, 100% {
        border-color: hsl(142 72% 42% / 0.2);
        box-shadow: 0 0 10px hsl(142 72% 42% / 0.1);
    }
    50% {
        border-color: hsl(142 72% 42% / 0.4);
        box-shadow: 0 0 20px hsl(142 72% 42% / 0.3);
    }
}

.border-primary\/30:hover {
    animation: border-glow 2s ease-in-out infinite;
}

/* Loading State */
@keyframes skeleton-loading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.02) 25%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

/* Scroll Reveal Animations */
@keyframes scroll-reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    animation: scroll-reveal 0.6s ease-out forwards;
}

/* Print Styles */
@media print {
    header,
    footer,
    button,
    a[href*="wa.me"] {
        display: none !important;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}


