:root {
    --primary-color: #714B67;
    --secondary-color: #2ECC71;
    --accent-color: #25D366;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #714B67 0%, #8B5A7D 100%);
    --gradient-secondary: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    --gradient-hero: linear-gradient(135deg, rgba(113, 75, 103, 0.95) 0%, rgba(139, 90, 125, 0.95) 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23714B67;stop-opacity:1" /><stop offset="100%" style="stop-color:%238B5A7D;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23grad1)" width="1200" height="800"/><circle cx="200" cy="200" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="1000" cy="600" r="200" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="400" r="100" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    order: 1;
}

.hero-image {
    order: 2;
    text-align: center;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-medium);
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Responsive para mobile */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
}

.ai-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.6em;
    font-weight: 700;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

.customization-badge {
    display: block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.4em;
    font-weight: 700;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 3s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-button.primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.whatsapp-icon {
    font-size: 1.3em;
    margin-right: 8px;
}

.trust-badge {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.8;
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Header Styles */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: contain;
    background: transparent;
    padding: 4px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 500;
}

.header-contact {
    display: flex;
    align-items: center;
}

.header-whatsapp {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.header-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Problems Section */
.problems {
    background: var(--light-color);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.problem-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.solution-banner {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.solution-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.solution-banner p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.solution-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    position: relative;
    border: 2px solid transparent;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.solution-card.featured {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.solution-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.solution-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.solution-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.solution-features {
    list-style: none;
    padding: 0;
}

.solution-features li {
    padding: 8px 0;
    color: var(--dark-color);
    font-size: 0.95rem;
}

/* Industries Section */
.industries {
    background: var(--light-color);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.industry-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    text-align: center;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-primary);
    color: var(--white);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.industry-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Why Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    text-align: center;
    position: relative;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-card.featured-why {
    border: 3px solid #ff6b35;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
}

.why-card.featured-why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.why-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.why-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: var(--light-color);
}

.features-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab {
    padding: 15px 30px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-medium);
    font-weight: 600;
    font-size: 1rem;
}

.tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
}

.feature-panel {
    display: none;
}

.feature-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 15px;
    transition: all var(--transition-medium);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.check {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffc107;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--primary-color);
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--gray-color);
}

/* Process Section */
.process {
    background: var(--light-color);
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.process-tab {
    padding: 15px 30px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-medium);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    min-width: 200px;
}

.process-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.process-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
}

.process-content {
    display: none;
}

.process-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.process-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% + 20px);
    background: var(--primary-color);
    opacity: 0.3;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Express Systems Styles */
.express-banner {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.express-banner h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.express-banner p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.express-systems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.express-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    text-align: center;
    border: 2px solid transparent;
}

.express-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.express-card.coming-soon {
    opacity: 0.8;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.express-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.express-card h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.express-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-tag {
    background: var(--light-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--dark-color);
    border: 1px solid #e0e0e0;
}

.coming-soon .feature-tag {
    background: #f1f3f4;
    color: var(--gray-color);
}

.express-time {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--gray-color);
}

.express-time strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.express-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.express-process {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.express-process h4 {
    text-align: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.express-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.express-step {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: var(--light-color);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.express-step h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.express-step p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.express-cta {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.express-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* FAQ Section */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.featured-faq {
    border: 3px solid #ff6b35;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
    position: relative;
    margin-bottom: 30px;
}

.faq-item.featured-faq::before {
    content: '🔥 DESTACADO';
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    border-bottom-left-radius: 10px;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all var(--transition-medium);
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform var(--transition-medium);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.cta-note {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 15px;
}

.company-info {
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.company-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.company-info strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 8px 0;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-section ul li:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    background: var(--accent-color);
    border-radius: 25px;
    transition: all var(--transition-medium);
    font-weight: 600;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.footer-note {
    font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-medium);
    color: var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo {
        justify-content: center;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
        padding: 2px;
    }
    
    .logo-main {
        font-size: 1.3rem;
    }
    
    .logo-sub {
        font-size: 0.8rem;
    }
    
    .header-whatsapp {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: 90vh;
    }

    .problems-grid,
    .solutions-grid,
    .industries-grid,
    .why-grid,
    .features-list,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features-tabs {
        flex-direction: column;
    }

    .tab {
        width: 100%;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
    }

    .process-step:not(:last-child)::after {
        left: 30px;
        top: 70px;
        height: calc(100% - 50px);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .ai-badge {
        display: block;
        margin: 10px auto 0;
        width: fit-content;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .solution-card,
    .why-card,
    .testimonial-card {
        padding: 25px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
