/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation - White Theme */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    text-decoration: none;
}

.brand-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.brand-fallback {
    display: flex;
    align-items: center;
    color: #4299e1;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-fallback i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-brand i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    color: #4299e1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #4299e1;
    background: rgba(66, 153, 225, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Compact Single Screen Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    color: #1a202c;
    overflow: visible;
    padding: 4rem 0 2rem 0;
}

.hero .container {
    display: block;
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 100%;
}

.hero-subtitle-small {
    color: #4299e1;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #000000;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: #4299e1;
    display: block;
    margin-top: 0.3rem;
}

.pricing-text {
    color: #e53e3e;
    font-size: 2.8rem;
    display: block;
    margin-top: 0.2rem;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
    max-width: 600px;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
}

/* Compact Benefits Pills */
.benefits-compact {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.benefit-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f7fafc, #e2e8f0);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #4299e1, #9f7aea);
    color: white;
    border-color: transparent;
}

.benefit-pill i {
    font-size: 1.1rem;
    color: #4299e1;
    transition: color 0.3s ease;
}

.benefit-pill:hover i {
    color: white;
}

.benefit-pill span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
    transition: color 0.3s ease;
}

.benefit-pill:hover span {
    color: white;
}

/* Hero Actions - Compact */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.btn-primary {
    background: #f8fafc !important;
    color: #1f2937 !important;
    border: 2px solid #e5e7eb !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
    background: #ffffff !important;
    color: #1f2937 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db !important;
}

.btn-secondary {
    background: #4299e1;
    color: white;
    border: 2px solid #4299e1;
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.3);
}

.btn-secondary:hover {
    background: #3182ce;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(66, 153, 225, 0.4);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4299e1;
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.25rem;
}

/* WhatsApp Contact Section */
.whatsapp-contact {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.whatsapp-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25d366, #128c7e);
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon i {
    font-size: 2rem;
    color: white;
}

.whatsapp-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.whatsapp-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    margin-bottom: 1.5rem;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

.contact-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.contact-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-features .feature-item i {
    width: 35px;
    height: 35px;
    background: #f3f4f6;
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.contact-features .feature-item span {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.contact-alternatives {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.contact-alternatives h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-method i {
    width: 45px;
    height: 45px;
    background: #f3f4f6;
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.contact-method h5 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-method p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: #f9fafb;
    padding: 5rem 0;
}

/* Services Section */
.services {
    background: #f9fafb;
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #374151;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Business Solutions Section */
.business-solutions {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
}

.business-solutions .section-header h2,
.business-solutions .section-header p {
    color: white;
}

.solutions-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.solution-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.category-header i {
    font-size: 2rem;
    margin-right: 1rem;
    color: #fbbf24;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.solution-card > p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.95rem;
}

.solution-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.use-cases {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #6b7280;
}

.use-cases strong {
    color: #2563eb;
}

/* Solutions Benefits */
.solutions-benefits {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.solutions-benefits h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Solutions CTA */
.solutions-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
}

.solutions-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.solutions-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-large i {
    margin-right: 0.5rem;
}

/* Hosting Section */
.hosting {
    background: #f9fafb;
    padding: 5rem 0;
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.hosting-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.hosting-card:hover {
    transform: translateY(-5px);
}

.hosting-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hosting-icon i {
    font-size: 2rem;
    color: white;
}

.hosting-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.hosting-subtitle {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.hosting-features {
    list-style: none;
    margin-bottom: 2rem;
}

.hosting-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #374151;
}

.hosting-features i {
    color: #10b981;
    margin-right: 0.75rem;
}

.hosting-benefits {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 12px;
}

.hosting-benefits h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hosting-comparison {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hosting-comparison h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hosting-comparison .btn {
    margin-top: 1.5rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 35px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    background: white;
    padding: 4px 6px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-brand i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-section .contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-section .contact-info i {
    margin-right: 0.5rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-text {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .benefits-compact {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .benefit-pill {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero-actions {
        margin-bottom: 0.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Services responsive */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Solutions responsive */
    .solutions-grid {
        gap: 2rem;
    }
    
    .solution-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .category-header i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Hosting responsive */
    .hosting-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hosting-card {
        padding: 2rem;
    }
    
    /* Features responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .whatsapp-contact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .pricing-text {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .benefits-compact {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-pill {
        width: auto;
        min-width: 200px;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }
    
    /* Services mobile */
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.25rem;
    }
    
    /* Solutions mobile */
    .solution-category {
        padding: 1.25rem;
    }
    
    .solution-card {
        padding: 1.25rem;
    }
    
    .category-header h3 {
        font-size: 1.25rem;
    }
    
    .category-header i {
        font-size: 1.75rem;
    }
    
    .solutions-benefits,
    .solutions-cta {
        padding: 1.5rem 0.75rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .benefit-item i {
        font-size: 2rem;
    }
    
    /* Hosting mobile */
    .hosting-card {
        padding: 1.5rem;
    }
    
    .hosting-icon {
        width: 60px;
        height: 60px;
    }
    
    .hosting-icon i {
        font-size: 1.5rem;
    }
    
    /* Features mobile */
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.25rem;
    }
    
    .whatsapp-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .contact-alternatives {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Media */
@media print {
    .navbar,
    .footer,
    .btn,
    .whatsapp-contact {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
