/*
 * iWebHosting - Estilos CSS
 * Tailwind CSS Classes Compiladas + Estilos Customizados
 */

/* ========================================
   HERO SLIDESHOW
   ======================================== */
.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
    overflow: hidden;
}

.hero-slideshow .slide.active {
    opacity: 1;
    animation: heroZoom 8s ease-out forwards;
}

/* Imagem dentro do slide para LCP otimizado */
.hero-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Slide Indicators */
.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slide-indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

/* Animated Particles */
.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.particle-2 {
    top: 60%;
    right: 15%;
    width: 15px;
    height: 15px;
    animation: float 10s ease-in-out infinite reverse;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    width: 8px;
    height: 8px;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.6; }
}

/* Backdrop Blur Support */
.backdrop-blur-sm {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

/* Text Gradient */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #1f2937;
    background-color: #f9fafb;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   COLORS (Primary = Blue, Secondary = Green)
   ======================================== */
:root {
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;

    --secondary-500: #10b981;
    --secondary-600: #059669;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --green-500: #22c55e;
    --green-600: #16a34a;

    --red-500: #ef4444;
    --red-600: #dc2626;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.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; } }

/* Container padrão alinhado com header */
.site-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 1024px) {
    .site-container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.max-w-7xl { max-width: 80rem; }
.max-w-screen-2xl { max-width: 1536px; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* ========================================
   FLEXBOX & GRID
   ======================================== */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }
.min-w-0 { min-width: 0; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Grid columns */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:block { display: block; }
    .lg\:h-18 { height: 4.5rem; }
}

@media (min-width: 1280px) {
    .xl\:flex { display: flex; }
    .xl\:hidden { display: none; }
    .xl\:block { display: block; }
    .xl\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* ========================================
   SPACING
   ======================================== */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pb-3 { padding-bottom: 0.75rem; }

.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-4 { margin: 1rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-0\.5 { margin-top: 0.125rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.ml-1 { margin-left: 0.25rem; }
.ml-1\.5 { margin-left: 0.375rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }

.mr-1 { margin-right: 0.25rem; }
.mr-1\.5 { margin-right: 0.375rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }

.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }

@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:block { display: block; }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
    .lg\:p-8 { padding: 2rem; }
    .lg\:p-12 { padding: 3rem; }
    .lg\:gap-8 { gap: 2rem; }
    .lg\:gap-12 { gap: 3rem; }
    .lg\:h-20 { height: 5rem; }
    .lg\:scale-105 { transform: scale(1.05); }
}

/* ========================================
   SIZING
   ======================================== */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.w-\[600px\] { width: 600px; }

.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-auto { height: auto; }

.min-h-screen { min-height: 100vh; }

/* ========================================
   TYPOGRAPHY
   ======================================== */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

@media (min-width: 640px) {
    .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
}

@media (min-width: 768px) {
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1024px) {
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.leading-tight { line-height: 1.25; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.inline { display: inline; }

/* ========================================
   COLORS - Text
   ======================================== */
.text-white { color: #ffffff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }

.text-primary-100 { color: #dbeafe; }
.text-primary-200 { color: #bfdbfe; }
.text-primary-400 { color: #60a5fa; }
.text-primary-600 { color: #2563eb; }
.text-primary-700 { color: #1d4ed8; }

.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }

.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-indigo-500 { color: #6366f1; }
.text-indigo-600 { color: #4f46e5; }
.text-purple-500 { color: #a855f7; }
.text-purple-600 { color: #9333ea; }
.text-orange-500 { color: #f97316; }
.text-orange-600 { color: #ea580c; }
.text-cyan-500 { color: #06b6d4; }
.text-cyan-600 { color: #0891b2; }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }
.text-yellow-400 { color: #facc15; }
.text-primary-500 { color: #3b82f6; }

/* ========================================
   COLORS - Background
   ======================================== */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }

.bg-primary-50 { background-color: #eff6ff; }
.bg-primary-100 { background-color: #dbeafe; }
.bg-primary-500 { background-color: #3b82f6; }
.bg-primary-600 { background-color: #2563eb; }
.bg-primary-700 { background-color: #1d4ed8; }
.bg-primary-800 { background-color: #1e40af; }
.bg-primary-900 { background-color: #1e3a8a; }

.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-500 { background-color: #22c55e; }
.bg-green-600 { background-color: #16a34a; }
.bg-green-700 { background-color: #15803d; }

.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-blue-800 { background-color: #1e40af; }

.bg-indigo-50 { background-color: #eef2ff; }
.bg-indigo-500 { background-color: #6366f1; }
.bg-indigo-600 { background-color: #4f46e5; }

.bg-purple-50 { background-color: #faf5ff; }
.bg-purple-100 { background-color: #f3e8ff; }
.bg-purple-500 { background-color: #a855f7; }
.bg-purple-600 { background-color: #9333ea; }
.bg-purple-700 { background-color: #7e22ce; }
.bg-purple-800 { background-color: #6b21a8; }

.bg-pink-50 { background-color: #fdf2f8; }
.bg-pink-500 { background-color: #ec4899; }

.bg-rose-50 { background-color: #fff1f2; }
.bg-rose-500 { background-color: #f43f5e; }

.bg-amber-50 { background-color: #fffbeb; }
.bg-amber-500 { background-color: #f59e0b; }

.bg-emerald-50 { background-color: #ecfdf5; }
.bg-emerald-500 { background-color: #10b981; }

.bg-teal-50 { background-color: #f0fdfa; }
.bg-teal-500 { background-color: #14b8a6; }

.bg-orange-100 { background-color: #ffedd5; }
.bg-orange-500 { background-color: #f97316; }
.bg-orange-600 { background-color: #ea580c; }
.bg-orange-700 { background-color: #c2410c; }

.bg-cyan-50 { background-color: #ecfeff; }
.bg-cyan-100 { background-color: #cffafe; }
.bg-cyan-500 { background-color: #06b6d4; }
.bg-cyan-600 { background-color: #0891b2; }

.bg-red-50 { background-color: #fef2f2; }
.bg-red-100 { background-color: #fee2e2; }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }

.from-primary-600 { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); }
.via-primary-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); }
.to-primary-800 { --tw-gradient-to: #1e40af; }
.to-primary-900 { --tw-gradient-to: #1e3a8a; }

.from-blue-600 { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-blue-700 { --tw-gradient-to: #1d4ed8; }
.to-blue-800 { --tw-gradient-to: #1e40af; }

.from-green-600 { --tw-gradient-from: #16a34a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-green-800 { --tw-gradient-to: #166534; }

.from-purple-600 { --tw-gradient-from: #9333ea; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-purple-800 { --tw-gradient-to: #6b21a8; }

.from-orange-500 { --tw-gradient-from: #f97316; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-orange-700 { --tw-gradient-to: #c2410c; }

.from-cyan-600 { --tw-gradient-from: #0891b2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

/* Gradientes para mega menu */
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-blue-600 { --tw-gradient-to: #2563eb; }
.from-indigo-500 { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-indigo-600 { --tw-gradient-to: #4f46e5; }
.from-green-500 { --tw-gradient-from: #22c55e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-green-600 { --tw-gradient-to: #16a34a; }
.from-orange-500 { --tw-gradient-from: #f97316; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-orange-600 { --tw-gradient-to: #ea580c; }
.from-cyan-500 { --tw-gradient-from: #06b6d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-cyan-600 { --tw-gradient-to: #0891b2; }

/* Shadow coloridas */
.shadow-blue-500\/30 { box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3); }
.shadow-indigo-500\/30 { box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3); }
.shadow-green-500\/30 { box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3); }
.shadow-orange-500\/30 { box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3); }
.shadow-cyan-500\/30 { box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.3); }

/* ========================================
   BORDERS & RADIUS
   ======================================== */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-r { border-right-width: 1px; }
.border-l { border-left-width: 1px; }
.border-b { border-bottom-width: 1px; }

.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-gray-800 { border-color: #1f2937; }
.border-primary-300 { border-color: #93c5fd; }

.border-primary-500 { border-color: #3b82f6; }
.border-purple-500 { border-color: #a855f7; }
.border-orange-500 { border-color: #f97316; }
.border-cyan-500 { border-color: #06b6d4; }
.border-green-200 { border-color: #bbf7d0; }
.border-red-200 { border-color: #fecaca; }
.border-red-500 { border-color: #ef4444; }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ========================================
   SHADOWS
   ======================================== */
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

/* ========================================
   POSITIONING
   ======================================== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-2 { top: 0.5rem; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-6 { bottom: 1.5rem; }
.right-6 { right: 1.5rem; }

.-top-3 { top: -0.75rem; }
.-top-4 { top: -1rem; }
.left-1\/2 { left: 50%; }
.transform { transform: var(--tw-transform); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.rotate-45 { transform: rotate(45deg); }
.translate-x-1 { transform: translateX(0.25rem); }

.z-50 { z-index: 50; }

/* ========================================
   OPACITY
   ======================================== */
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }

/* ========================================
   OVERFLOW
   ======================================== */
.overflow-hidden { overflow: hidden; }

/* ========================================
   TRANSITIONS
   ======================================== */
.transition { transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; transition-duration: 150ms; }
.transition-all { transition-property: all; transition-duration: 150ms; }
.transition-colors { transition-property: background-color, border-color, color, fill, stroke; transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* ========================================
   HOVER STATES
   ======================================== */
.hover\:bg-primary-50:hover { background-color: #eff6ff; }
.hover\:bg-primary-700:hover { background-color: #1d4ed8; }
.hover\:border-primary-300:hover { border-color: #93c5fd; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-green-50:hover { background-color: #f0fdf4; }
.hover\:bg-green-100:hover { background-color: #dcfce7; }
.hover\:bg-green-600:hover { background-color: #16a34a; }
.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:bg-green-800:hover { background-color: #166534; }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); }
.hover\:bg-green-200:hover { background-color: #bbf7d0; }
.hover\:bg-blue-50:hover { background-color: #eff6ff; }
.hover\:bg-purple-700:hover { background-color: #7e22ce; }
.hover\:bg-purple-200:hover { background-color: #e9d5ff; }
.hover\:bg-orange-700:hover { background-color: #c2410c; }
.hover\:bg-orange-200:hover { background-color: #fed7aa; }
.hover\:bg-cyan-700:hover { background-color: #0e7490; }
.hover\:bg-cyan-200:hover { background-color: #a5f3fc; }
.hover\:bg-red-200:hover { background-color: #fecaca; }

.hover\:text-white:hover { color: #ffffff; }
.hover\:text-primary-600:hover { color: #2563eb; }
.hover\:text-primary-700:hover { color: #1d4ed8; }
.hover\:text-green-700:hover { color: #15803d; }
.hover\:text-orange-700:hover { color: #c2410c; }
.hover\:text-cyan-700:hover { color: #0e7490; }
.hover\:text-gray-900:hover { color: #111827; }

.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.hover\:scale-110:hover { transform: scale(1.10); }
.hover\:underline:hover { text-decoration: underline; }

.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:visible { visibility: visible; }
.group:hover .group-hover\:bg-blue-200 { background-color: #bfdbfe; }
.group:hover .group-hover\:bg-green-200 { background-color: #bbf7d0; }
.group:hover .group-hover\:bg-purple-200 { background-color: #e9d5ff; }
.group:hover .group-hover\:rotate-180 { transform: rotate(180deg); }

/* Mega Menu hover states */
.hover\:bg-orange-50:hover { background-color: #fff7ed; }
.hover\:bg-cyan-50:hover { background-color: #ecfeff; }
.hover\:bg-purple-50:hover { background-color: #faf5ff; }
.hover\:bg-indigo-50:hover { background-color: #eef2ff; }

/* Hover gradient backgrounds */
.hover\:bg-gradient-to-r:hover { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.hover\:from-blue-50:hover { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.hover\:from-indigo-50:hover { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.hover\:from-green-50:hover { --tw-gradient-from: #f0fdf4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.hover\:from-orange-50:hover { --tw-gradient-from: #fff7ed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.hover\:from-cyan-50:hover { --tw-gradient-from: #ecfeff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.hover\:to-transparent:hover { --tw-gradient-to: transparent; }

/* Nested group hover (group/item) */
.group\/item:hover .group-hover\/item\:bg-primary-200 { background-color: #bfdbfe; }
.group\/item:hover .group-hover\/item\:bg-blue-200 { background-color: #bfdbfe; }
.group\/item:hover .group-hover\/item\:bg-green-200 { background-color: #bbf7d0; }
.group\/item:hover .group-hover\/item\:bg-orange-200 { background-color: #fed7aa; }
.group\/item:hover .group-hover\/item\:bg-cyan-200 { background-color: #a5f3fc; }
.group\/item:hover .group-hover\/item\:bg-purple-200 { background-color: #e9d5ff; }
.group\/item:hover .group-hover\/item\:text-primary-600 { color: #2563eb; }
.group\/item:hover .group-hover\/item\:text-blue-600 { color: #2563eb; }
.group\/item:hover .group-hover\/item\:text-green-600 { color: #16a34a; }
.group\/item:hover .group-hover\/item\:text-orange-600 { color: #ea580c; }
.group\/item:hover .group-hover\/item\:text-cyan-600 { color: #0891b2; }
.group\/item:hover .group-hover\/item\:text-purple-600 { color: #9333ea; }
.group\/item:hover .group-hover\/item\:text-blue-500 { color: #3b82f6; }
.group\/item:hover .group-hover\/item\:text-indigo-500 { color: #6366f1; }
.group\/item:hover .group-hover\/item\:text-indigo-600 { color: #4f46e5; }
.group\/item:hover .group-hover\/item\:text-green-500 { color: #22c55e; }
.group\/item:hover .group-hover\/item\:text-orange-500 { color: #f97316; }
.group\/item:hover .group-hover\/item\:text-cyan-500 { color: #06b6d4; }
.group\/item:hover .group-hover\/item\:scale-110 { transform: scale(1.1); }
.group\/item:hover .group-hover\/item\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:bg-orange-200 { background-color: #fed7aa; }
.group:hover .group-hover\:bg-cyan-200 { background-color: #a5f3fc; }
.group:hover .group-hover\:bg-red-200 { background-color: #fecaca; }
.group:hover .group-hover\:text-primary-700 { color: #1d4ed8; }

/* ========================================
   FOCUS STATES
   ======================================== */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--ring-color, #3b82f6); }
.focus\:ring-4:focus { box-shadow: 0 0 0 4px var(--ring-color, rgba(59, 130, 246, 0.3)); }
.focus\:ring-primary-500:focus { --ring-color: #3b82f6; }
.focus\:ring-primary-300:focus { --ring-color: rgba(59, 130, 246, 0.5); }
.focus\:border-primary-500:focus { border-color: #3b82f6; }

/* ========================================
   VISIBILITY
   ======================================== */
.invisible { visibility: hidden; }
.visible { visibility: visible; }

/* ========================================
   CUSTOM COMPONENTS
   ======================================== */

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ========================================
   TOP BAR - FIXED
   ======================================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e5e7eb;
    font-size: 11px;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .top-bar {
        font-size: 12px;
    }
}

.top-bar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .top-bar-container {
        padding: 8px 24px;
        justify-content: flex-end;
    }
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (min-width: 768px) {
    .top-bar-links {
        gap: 10px;
    }
}

/* Estilo de Botão para os Links */
.top-bar-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    color: #ffffff;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .top-bar-link {
        gap: 6px;
        padding: 7px 14px;
        border-radius: 8px;
    }
}

.top-bar-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.top-bar-link svg {
    width: 14px;
    height: 14px;
    opacity: 0.9;
    flex-shrink: 0;
    display: block;
}

@media (min-width: 768px) {
    .top-bar-link svg {
        width: 15px;
        height: 15px;
    }
}

/* Divider escondido - agora são botões separados */
.top-bar-divider {
    display: none;
}

/* Status com estilo especial */
.top-bar-status {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(34, 197, 94, 0.15) !important;
    border-color: rgba(34, 197, 94, 0.3) !important;
}

.top-bar-status:hover {
    background: rgba(34, 197, 94, 0.25) !important;
    border-color: rgba(34, 197, 94, 0.4) !important;
}

@media (min-width: 768px) {
    .top-bar-status {
        gap: 6px;
    }
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-green 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .status-dot {
        width: 8px;
        height: 8px;
    }
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* Espaçamento do body para compensar top-bar fixa */
body {
    padding-top: 44px;
}

@media (min-width: 768px) {
    body {
        padding-top: 48px;
    }
}

/* ========================================
   MODERN HEADER & MEGA MENU
   ======================================== */

/* Header Principal */
.header-main {
    position: sticky;
    top: 44px; /* Altura da top-bar no mobile */
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
    .header-main {
        top: 48px; /* Altura da top-bar no desktop */
    }
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (min-width: 1024px) {
    .header-container {
        padding: 0 24px;
    }
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-brand {
    color: #2563eb;
}

.logo-suffix {
    color: #1f2937;
}

/* Header Right - Agrupa Nav + Actions */
.header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* Navigation */
.header-nav {
    display: none;
    margin-right: 16px;
}

@media (min-width: 1024px) {
    .header-nav {
        display: block;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

/* Nav Icon */
.nav-icon {
    width: 18px;
    height: 18px;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.nav-link:hover .nav-icon {
    opacity: 1;
}

/* Nav Link com linha animada */
.nav-link-animated {
    position: relative;
    overflow: visible;
}

.nav-link-animated::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link-animated:hover::after {
    width: calc(100% - 24px);
}

.nav-link-animated:hover {
    color: #2563eb;
    background: transparent;
}

.nav-link-animated:hover .nav-icon {
    color: #2563eb;
}

/* Active state */
.nav-link.active {
    color: #2563eb;
    background: transparent;
}

.nav-link.active .nav-icon {
    opacity: 1;
    color: #2563eb;
}

.nav-link.active::after {
    width: calc(100% - 24px);
}

.nav-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
    margin-left: -2px;
}

.nav-item.has-mega:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Header Actions */
.header-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-login:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.btn-login svg {
    width: 18px;
    height: 18px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.2s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   MEGA MENU
   ======================================== */

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.nav-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-inner {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 28px;
    min-width: 920px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 240px;
    gap: 32px;
}

.mega-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-bottom: 8px;
    padding-left: 4px;
}

/* Mega Cards */
.mega-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-card:hover {
    background: #f8fafc;
}

.mega-card:hover .mega-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.mega-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-card-icon svg {
    width: 22px;
    height: 22px;
}

.mega-card-icon.blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.mega-card-icon.indigo {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4f46e5;
}

.mega-card-icon.emerald {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.mega-card-icon.orange {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    color: #ea580c;
}

.mega-card-icon.cyan {
    background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
    color: #0891b2;
}

.mega-card-icon.purple {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    color: #9333ea;
}

.mega-card-content {
    flex: 1;
    min-width: 0;
}

.mega-card-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.mega-card-desc {
    display: block;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

.mega-card-arrow {
    width: 20px;
    height: 20px;
    color: #9ca3af;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

/* Mega Promo */
.mega-col-cta {
    border-left: 1px solid #e5e7eb;
    padding-left: 24px;
}

.mega-promo {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-promo-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #2563eb;
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 12px;
}

.mega-promo-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 8px 0;
}

.mega-promo-text {
    font-size: 13px;
    color: #3b82f6;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.mega-promo-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 16px;
}

.price-currency {
    font-size: 16px;
    font-weight: 600;
    color: #1e40af;
}

.price-value {
    font-size: 42px;
    font-weight: 800;
    color: #1e40af;
    line-height: 1;
}

.price-cents {
    font-size: 16px;
    font-weight: 600;
    color: #1e40af;
}

.mega-promo-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #2563eb;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-promo-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-inner {
    padding: 16px 24px 24px;
}

.mobile-link {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.2s ease;
}

.mobile-link:hover {
    color: #2563eb;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.mobile-btn-login {
    background: #2563eb;
    color: white;
}

/* Nav Link Active */
.nav-link.active {
    color: #2563eb;
    background: #eff6ff;
}

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu.open {
    max-height: 600px;
}

/* ========================================
   PAGE HERO SECTIONS
   ======================================== */

.page-hero {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    color: white;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.page-hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 52px;
    }
}

.page-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.page-hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.page-hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.page-hero-feature svg {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

/* Hero Wave Divider */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

@media (min-width: 768px) {
    .hero-wave svg {
        height: 100px;
    }
}

/* Hero Backgrounds - Gradientes por página */
.hero-hospedagem {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.hero-hospedagem::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Crect x='100' y='100' width='120' height='80' rx='8'/%3E%3Crect x='100' y='200' width='120' height='80' rx='8'/%3E%3Ccircle cx='130' cy='140' r='8'/%3E%3Ccircle cx='130' cy='240' r='8'/%3E%3Crect x='580' y='150' width='120' height='80' rx='8'/%3E%3Crect x='580' y='250' width='120' height='80' rx='8'/%3E%3Ccircle cx='610' cy='190' r='8'/%3E%3Ccircle cx='610' cy='290' r='8'/%3E%3Crect x='300' y='50' width='200' height='120' rx='10'/%3E%3Crect x='300' y='430' width='200' height='120' rx='10'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-wordpress {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #4338ca 100%);
}

.hero-wordpress::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='150' cy='150' r='100'/%3E%3Ccircle cx='650' cy='450' r='80'/%3E%3Ccircle cx='700' cy='100' r='60'/%3E%3Ccircle cx='100' cy='500' r='70'/%3E%3Cpath d='M400 300 L450 200 L500 350 L550 250 L600 350' stroke='%23ffffff' stroke-width='4' fill='none' opacity='0.2'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-vps {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
}

.hero-vps::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Crect x='100' y='150' width='140' height='140' rx='12'/%3E%3Crect x='120' y='170' width='100' height='100' rx='8' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3Crect x='560' y='310' width='140' height='140' rx='12'/%3E%3Crect x='580' y='330' width='100' height='100' rx='8' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3Cline x1='170' y1='100' x2='170' y2='150' stroke='%23ffffff' stroke-width='3'/%3E%3Cline x1='630' y1='450' x2='630' y2='500' stroke='%23ffffff' stroke-width='3'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-cloud {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
}

.hero-cloud::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M150 300 Q200 250 250 280 Q280 200 350 230 Q400 180 450 240 Q480 220 500 250 L500 350 L150 350 Z'/%3E%3Cpath d='M550 400 Q580 370 620 390 Q650 340 700 360 Q730 340 750 370 L750 450 L550 450 Z'/%3E%3Cpath d='M80 450 Q120 420 160 440 Q190 400 240 420 L240 500 L80 500 Z'/%3E%3Ccircle cx='650' cy='150' r='40'/%3E%3Ccircle cx='100' cy='180' r='30'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-revenda {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
}

.hero-revenda::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='200' cy='200' r='50'/%3E%3Ccircle cx='150' cy='300' r='40'/%3E%3Ccircle cx='280' cy='280' r='35'/%3E%3Ccircle cx='600' cy='350' r='50'/%3E%3Ccircle cx='550' cy='450' r='40'/%3E%3Ccircle cx='680' cy='430' r='35'/%3E%3Cline x1='200' y1='200' x2='150' y2='300' stroke='%23ffffff' stroke-width='2'/%3E%3Cline x1='200' y1='200' x2='280' y2='280' stroke='%23ffffff' stroke-width='2'/%3E%3Cline x1='600' y1='350' x2='550' y2='450' stroke='%23ffffff' stroke-width='2'/%3E%3Cline x1='600' y1='350' x2='680' y2='430' stroke='%23ffffff' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-email {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}

.hero-email::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Crect x='100' y='180' width='180' height='120' rx='8'/%3E%3Cpath d='M100 190 L190 260 L280 190' fill='none' stroke='%23ffffff' stroke-width='3'/%3E%3Crect x='520' y='300' width='180' height='120' rx='8'/%3E%3Cpath d='M520 310 L610 380 L700 310' fill='none' stroke='%23ffffff' stroke-width='3'/%3E%3Ccircle cx='650' cy='150' r='30'/%3E%3Ccircle cx='150' cy='450' r='25'/%3E%3Cpath d='M350 100 L400 50 L450 100' fill='none' stroke='%23ffffff' stroke-width='2' opacity='0.5'/%3E%3Cpath d='M350 500 L400 550 L450 500' fill='none' stroke='%23ffffff' stroke-width='2' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-empresa {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #172554 100%);
}

.hero-empresa::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Crect x='150' y='200' width='100' height='200' rx='4'/%3E%3Crect x='160' y='220' width='25' height='25' rx='2'/%3E%3Crect x='195' y='220' width='25' height='25' rx='2'/%3E%3Crect x='160' y='260' width='25' height='25' rx='2'/%3E%3Crect x='195' y='260' width='25' height='25' rx='2'/%3E%3Crect x='550' y='150' width='120' height='250' rx='4'/%3E%3Crect x='565' y='170' width='30' height='30' rx='2'/%3E%3Crect x='605' y='170' width='30' height='30' rx='2'/%3E%3Crect x='565' y='215' width='30' height='30' rx='2'/%3E%3Crect x='605' y='215' width='30' height='30' rx='2'/%3E%3Cpath d='M350 300 L400 250 L450 300 L450 400 L350 400 Z' /%3E%3C/g%3E%3C/svg%3E");
}

.hero-contato {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}

.hero-contato::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='200' cy='200' r='80' fill='none' stroke='%23ffffff' stroke-width='3'/%3E%3Ccircle cx='200' cy='200' r='50' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3Ccircle cx='600' cy='400' r='70' fill='none' stroke='%23ffffff' stroke-width='3'/%3E%3Ccircle cx='600' cy='400' r='40' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3Cpath d='M100 400 Q150 350 200 380 Q250 350 300 400' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3Cpath d='M500 180 Q550 130 600 160 Q650 130 700 180' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    color: #1e40af;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.2s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.25);
}

.hero-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #25d366;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.hero-btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hero-btn-whatsapp svg,
.hero-btn-primary svg,
.hero-btn-secondary svg {
    width: 20px;
    height: 20px;
}

/* Hero com Imagem de Fundo */
.hero-with-bg {
    position: relative;
    min-height: 400px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.92) 0%, rgba(30, 64, 175, 0.95) 50%, rgba(30, 58, 138, 0.97) 100%);
    z-index: 1;
}

.hero-with-bg .page-hero-content {
    z-index: 2;
}

.hero-with-bg .hero-wave {
    z-index: 3;
}

/* Botões CTA alinhados em linha */
.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .hero-cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
}

.hero-cta-buttons .hero-btn-primary,
.hero-cta-buttons .hero-btn-whatsapp {
    min-width: 180px;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.hero-stat-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 20px 28px;
    text-align: center;
    min-width: 120px;
}

.hero-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 20px;
    }

    .hero-stat-item {
        padding: 24px 32px;
    }

    .hero-stat-value {
        font-size: 32px;
    }

    .hero-stat-label {
        font-size: 14px;
    }
}

/* ========================================
   WORDPRESS PLANS SECTION
   ======================================== */

/* Period Toggle Elegante */
.wp-period-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.wp-period-btn.active {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

.wp-period-btn:hover:not(.active) {
    color: #1f2937;
    background: #f3f4f6;
}

.wp-period-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    border-radius: 20px;
}

.wp-period-btn.active .wp-period-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

/* Dark theme period buttons */
.wp-period-btn.dark {
    color: #9ca3af;
}

.wp-period-btn.dark.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.wp-period-btn.dark:hover:not(.active) {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* WordPress Plan Card */
.wp-plan-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.wp-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.wp-plan-card.popular {
    border: 2px solid #1e293b;
    box-shadow: 0 8px 30px rgba(30, 41, 59, 0.15);
}

.wp-plan-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 0 0 12px 12px;
    letter-spacing: 0.5px;
}

.wp-plan-discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wp-plan-discount-badge .discount-percent {
    font-weight: 700;
}

.wp-plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.wp-plan-price-container {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.wp-plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.wp-plan-price .currency {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
}

.wp-plan-price .amount {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    letter-spacing: -1px;
}

.wp-plan-price .period {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.wp-plan-total {
    font-size: 13px;
    color: #059669;
    font-weight: 600;
    margin-top: 8px;
}

/* Plan Features */
.wp-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.wp-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.wp-plan-features li:last-child {
    border-bottom: none;
}

.wp-plan-features .feature-check {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 1px;
}

.wp-plan-features .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    flex-shrink: 0;
}

.wp-plan-features .feature-icon svg {
    width: 14px;
    height: 14px;
}

/* Feature icon colors by theme */
.wp-plan-card.theme-hosting .feature-icon,
.wp-plan-card.theme-hospedagem .feature-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.wp-plan-card.theme-wordpress .feature-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.wp-plan-card.theme-vps .feature-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.wp-plan-card.theme-cloud .feature-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.wp-plan-card.theme-revenda .feature-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Plan Button */
.wp-plan-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.wp-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.3);
}

.wp-plan-btn.popular {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.wp-plan-btn.popular:hover {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* ========================================
   PLAN CARD COLOR VARIANTS
   ======================================== */

/* WordPress - Indigo/Purple theme */
.wp-plan-card.theme-wordpress.popular {
    border-color: #6366f1;
}

.wp-plan-card.theme-wordpress .wp-plan-badge {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.wp-plan-card.theme-wordpress .wp-plan-btn {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.wp-plan-card.theme-wordpress .wp-plan-btn:hover {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.wp-plan-card.theme-wordpress .wp-plan-features .feature-check {
    color: #6366f1;
}

/* VPS - Orange theme */
.wp-plan-card.theme-vps.popular {
    border-color: #f97316;
}

.wp-plan-card.theme-vps .wp-plan-badge {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.wp-plan-card.theme-vps .wp-plan-btn {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.wp-plan-card.theme-vps .wp-plan-btn:hover {
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.wp-plan-card.theme-vps .wp-plan-features .feature-check {
    color: #f97316;
}

/* Cloud - Cyan theme */
.wp-plan-card.theme-cloud.popular {
    border-color: #06b6d4;
}

.wp-plan-card.theme-cloud .wp-plan-badge {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.wp-plan-card.theme-cloud .wp-plan-btn {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.wp-plan-card.theme-cloud .wp-plan-btn:hover {
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.wp-plan-card.theme-cloud .wp-plan-features .feature-check {
    color: #06b6d4;
}

/* Revenda - Purple theme */
.wp-plan-card.theme-revenda.popular {
    border-color: #8b5cf6;
}

.wp-plan-card.theme-revenda .wp-plan-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.wp-plan-card.theme-revenda .wp-plan-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.wp-plan-card.theme-revenda .wp-plan-btn:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.wp-plan-card.theme-revenda .wp-plan-features .feature-check {
    color: #8b5cf6;
}

/* Email - Green theme */
.wp-plan-card.theme-email.popular {
    border-color: #10b981;
}

.wp-plan-card.theme-email .wp-plan-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.wp-plan-card.theme-email .wp-plan-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.wp-plan-card.theme-email .wp-plan-btn:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.wp-plan-card.theme-email .wp-plan-features .feature-check {
    color: #10b981;
}

/* Hospedagem - Blue theme (default) */
.wp-plan-card.theme-hospedagem.popular {
    border-color: #2563eb;
}

.wp-plan-card.theme-hospedagem .wp-plan-badge {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.wp-plan-card.theme-hospedagem .wp-plan-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.wp-plan-card.theme-hospedagem .wp-plan-btn:hover {
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.wp-plan-card.theme-hospedagem .wp-plan-features .feature-check {
    color: #2563eb;
}

/* Plan Toggle Button */
.plan-toggle-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s;
    color: #4b5563;
}

.plan-toggle-btn.active {
    background-color: #2563eb;
    color: white;
}

.plan-toggle-btn:hover:not(.active) {
    color: #111827;
}

/* Plan Card */
.plan-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
}

/* Popular Badge Animation */
@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.popular-badge {
    animation: pulse-badge 2s infinite;
}

/* Button Primary */
.btn-primary {
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

/* WhatsApp Float Button */
.fixed.bottom-6.right-6 {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Details/Summary (FAQ) */
details {
    background: #f9fafb;
    border-radius: 0.5rem;
}

details summary {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #111827;
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary:hover {
    color: #2563eb;
}

details[open] summary {
    color: #2563eb;
}

/* Form Inputs */
input, textarea, select {
    font-family: inherit;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Resize none for textarea */
.resize-none { resize: none; }

/* ========================================
   RESPONSIVE HIDDEN/SHOW
   ======================================== */
@media (min-width: 640px) {
    .sm\:hidden { display: none; }
    .sm\:block { display: block; }
    .sm\:flex { display: flex; }
}

@media (min-width: 768px) {
    .md\:hidden { display: none; }
    .md\:block { display: block; }
    .md\:flex { display: flex; }
    .md\:space-y-0 > * + * { margin-top: 0; }
}

@media (min-width: 1024px) {
    .lg\:hidden { display: none; }
    .lg\:block { display: block; }
    .lg\:flex { display: flex; }
    .lg\:inline-flex { display: inline-flex; }
}

/* ========================================
   ANTIALIASED TEXT
   ======================================== */
.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
