/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.text-center {
    text-align: center;
}

.spinning {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-30px); }
    70% { transform: translateY(-15px); }
    90% { transform: translateY(-4px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-icon {
    position: relative;
    color: #3b82f6;
    font-size: 2rem;
    margin-right: 0.5rem;
}

.sparkle-icon {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 0.75rem;
    color: #fbbf24;
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.members-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.members-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4b5563;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #3b82f6;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(229, 231, 235, 0.8);
    animation: fadeIn 0.3s ease;
}

.mobile-nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-members-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: none;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(139, 92, 246, 0.4);
}

/* Section Styles */
.section {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
}

.section.active {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1f2937, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: scale(1.05);
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-icon.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.feature-icon::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-card h3 {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.floating-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -0.5rem;
    animation: bounce 2s infinite;
}

.avatar.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    animation-delay: 0s;
}

.avatar.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    animation-delay: 0.1s;
}

.avatar.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
    animation-delay: 0.2s;
}

.avatar.green {
    background: linear-gradient(135deg, #10b981, #059669);
    animation-delay: 0.3s;
}

.avatars span {
    margin-left: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
}

/* Services Section */
.services-preview, .services-full {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, #f9fafb, #ffffff, #f3f4f6);
}

.services-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    animation: bounce 0.6s ease;
}

.service-card.blue .service-icon {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.service-card.purple .service-icon {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.service-card.green .service-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-card.orange .service-icon {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
    color: #6b7280;
    font-size: 0.8rem;
}

.service-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover li::before {
    animation: pulse 1s infinite;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6, #e5e7eb);
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    animation: bounce 0.6s ease;
}

.quote-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.quote-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.quote-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.quote-icon.orange {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.testimonial-card p {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.rating i {
    color: #fbbf24;
    animation: pulse 2s infinite;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author .avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.author h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author span {
    font-size: 0.875rem;
    color: #6b7280;
}

.satisfaction-card {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    color: white;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.satisfaction-card:hover {
    transform: scale(1.05);
}

.satisfaction-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: pulse 3s infinite;
}

.satisfaction-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pricing-card > p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
}

.unit {
    color: #6b7280;
    margin-left: 0.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.pricing-card li i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.contact-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #8b5cf6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: scale(1.05);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.25rem;
}

.contact-icon:nth-child(1) {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-item:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.contact-item:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.contact-item:nth-child(4) .contact-icon {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #4b5563;
    margin-bottom: 0.25rem;
}

.contact-item span {
    font-size: 0.875rem;
    color: #6b7280;
}

.response-time {
    background: rgba(59, 130, 246, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}

.response-time h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.response-time p {
    font-size: 0.875rem;
    color: #6b7280;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-height: 48px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1f2937, #3b82f6, #8b5cf6);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    max-width: 400px;
}

.footer-services h3,
.footer-contact h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #93c5fd, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    margin-bottom: 0.5rem;
}

.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-services a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-services a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.footer-services a:hover::before {
    width: 100%;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    transform: scale(1.05);
}

.footer-contact-item .contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.footer-contact-item .contact-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.footer-contact-item .contact-icon.green {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom i {
    color: #ef4444;
    animation: pulse 2s infinite;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: white;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* WhatsApp Chat */
.whatsapp-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: bounce 2s infinite;
}

.whatsapp-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-chat .sparkle-icon {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 0.75rem;
    color: #fbbf24;
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-right: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #4b5563;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #374151;
}

.whatsapp-chat:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip span {
    background: linear-gradient(135deg, #25d366, #128c7e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* NOVAS ADIÇÕES - Estilos para WhatsApp quick button */
.whatsapp-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.whatsapp-quick-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .nav-desktop, .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-chat {
        bottom: 1rem;
        right: 1rem;
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.25rem;
    }
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Loading animation for better UX */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}
/* Adicionar no final do arquivo styles.css */

/* Members Area Styles */
.members-area {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    position: relative;
}

.members-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.members-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.upload-section {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.upload-card {
    padding: 2rem;
}

.upload-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.upload-card:hover .upload-icon {
    transform: scale(1.1);
    animation: bounce 0.6s ease;
}

.upload-card h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.upload-card > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

.abnt-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
   display: block;
   font-weight: 600;
   margin-bottom: 0.5rem;
   color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 0.75rem 1rem;
   border: 2px solid #e5e7eb;
   border-radius: 0.75rem;
   font-size: 1rem;
   transition: all 0.3s ease;
   font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: #3b82f6;
   box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
   transform: translateY(-2px);
}

.form-group textarea {
   resize: vertical;
   min-height: 200px;
   font-family: 'Courier New', monospace;
   line-height: 1.5;
}

.char-counter {
   text-align: right;
   font-size: 0.875rem;
   color: #6b7280;
   margin-top: 0.5rem;
   font-weight: 500;
}

.form-actions {
   display: flex;
   gap: 1rem;
   justify-content: center;
   margin-top: 2rem;
}

.form-actions .btn-primary,
.form-actions .btn-secondary {
   flex: 1;
   max-width: 200px;
   justify-content: center;
}

.features-section {
   background: rgba(255, 255, 255, 0.8);
   backdrop-filter: blur(10px);
   padding: 2rem;
   border-radius: 1.5rem;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
   border: 1px solid rgba(255, 255, 255, 0.5);
   height: fit-content;
   position: sticky;
   top: 100px;
}

.features-section h3 {
   font-size: 1.25rem;
   font-weight: bold;
   margin-bottom: 1.5rem;
   text-align: center;
   background: linear-gradient(135deg, #1f2937, #3b82f6);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.features-grid {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.features-grid .feature-item {
   display: flex;
   align-items: flex-start;
   gap: 0.75rem;
   padding: 1rem;
   border-radius: 0.75rem;
   transition: all 0.3s ease;
   cursor: pointer;
}

.features-grid .feature-item:hover {
   background: rgba(59, 130, 246, 0.05);
   transform: translateX(5px);
}

.features-grid .feature-icon {
   width: 2.5rem;
   height: 2.5rem;
   border-radius: 0.5rem;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 1rem;
   flex-shrink: 0;
}

.features-grid .feature-icon.blue {
   background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.features-grid .feature-icon.green {
   background: linear-gradient(135deg, #10b981, #059669);
}

.features-grid .feature-icon.purple {
   background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.features-grid .feature-icon.orange {
   background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.features-grid .feature-icon.pink {
   background: linear-gradient(135deg, #ec4899, #db2777);
}

.features-grid .feature-item h4 {
   font-weight: 600;
   margin-bottom: 0.25rem;
   color: #1f2937;
}

.features-grid .feature-item p {
   font-size: 0.875rem;
   color: #6b7280;
   margin: 0;
}

/* Loading States */
.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
   background-color: #f3f4f6;
   cursor: not-allowed;
   opacity: 0.6;
}

.btn-primary:disabled,
.btn-secondary:disabled {
   opacity: 0.6;
   cursor: not-allowed;
   transform: none !important;
}

/* Success Animation */
@keyframes success-pulse {
   0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
   70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
   100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.form-success {
   animation: success-pulse 2s infinite;
}

/* Error States */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
   border-color: #ef4444;
   box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
   color: #ef4444;
   font-size: 0.875rem;
   margin-top: 0.25rem;
   display: flex;
   align-items: center;
   gap: 0.25rem;
}

/* Progress Indicator */
.progress-indicator {
   display: flex;
   justify-content: space-between;
   margin-bottom: 2rem;
   position: relative;
}

.progress-indicator::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 0;
   right: 0;
   height: 2px;
   background: #e5e7eb;
   z-index: 1;
}

.progress-step {
   background: white;
   border: 2px solid #e5e7eb;
   border-radius: 50%;
   width: 2rem;
   height: 2rem;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.875rem;
   font-weight: 600;
   color: #6b7280;
   position: relative;
   z-index: 2;
   transition: all 0.3s ease;
}

.progress-step.active {
   background: #3b82f6;
   border-color: #3b82f6;
   color: white;
}

.progress-step.completed {
   background: #10b981;
   border-color: #10b981;
   color: white;
}

/* Responsive Design for Members Area */
@media (max-width: 1024px) {
   .members-content {
       grid-template-columns: 1fr;
       gap: 2rem;
   }
   
   .features-section {
       position: static;
   }
}

@media (max-width: 768px) {
   .form-row {
       grid-template-columns: 1fr;
       gap: 0;
   }
   
   .form-actions {
       flex-direction: column;
       align-items: stretch;
   }
   
   .form-actions .btn-primary,
   .form-actions .btn-secondary {
       max-width: none;
   }
   
   .upload-card {
       padding: 1.5rem;
   }
   
   .features-section {
       padding: 1.5rem;
   }
}

@media (max-width: 480px) {
   .members-area {
       padding: 3rem 0;
   }
   
   .upload-card {
       padding: 1rem;
   }
   
   .features-section {
       padding: 1rem;
   }
   
   .form-group textarea {
       min-height: 150px;
       font-size: 14px;
   }
}

/* Animation for file upload success */
@keyframes upload-success {
   0% { transform: scale(1); }
   50% { transform: scale(1.1); }
   100% { transform: scale(1); }
}

.upload-success {
   animation: upload-success 0.6s ease;
}

/* Custom scrollbar for textarea */
.form-group textarea::-webkit-scrollbar {
   width: 8px;
}

.form-group textarea::-webkit-scrollbar-track {
   background: #f1f1f1;
   border-radius: 4px;
}

.form-group textarea::-webkit-scrollbar-thumb {
   background: linear-gradient(135deg, #3b82f6, #8b5cf6);
   border-radius: 4px;
}

.form-group textarea::-webkit-scrollbar-thumb:hover {
   background: linear-gradient(135deg, #2563eb, #7c3aed);
}

/* Tooltip for form fields */
.form-tooltip {
   position: relative;
   display: inline-block;
   margin-left: 0.25rem;
   color: #6b7280;
   cursor: help;
}

.form-tooltip:hover::after {
   content: attr(data-tooltip);
   position: absolute;
   bottom: 100%;
   left: 50%;
   transform: translateX(-50%);
   background: #1f2937;
   color: white;
   padding: 0.5rem;
   border-radius: 0.25rem;
   font-size: 0.75rem;
   white-space: nowrap;
   z-index: 1000;
   opacity: 1;
}

/* Print styles for generated documents */
@media print {
   .members-area {
       display: none;
   }
}
/* Adicionar ao final do styles.css */

.abnt-specs {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 0.75rem;
    border-left: 4px solid #3b82f6;
}

.abnt-specs h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.abnt-specs ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.abnt-specs li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.4;
}

.abnt-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.abnt-specs li strong {
    color: #1f2937;
    font-weight: 600;
}

/* Responsivo para specs ABNT */
@media (max-width: 768px) {
    .abnt-specs {
        padding: 1rem;
    }
    
    .abnt-specs li {
        font-size: 0.8rem;
        padding-left: 1.25rem;
    }
}