/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: #00A1E0;
    font-size: 24px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00A1E0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    color: #666;
    font-size: 18px;
    cursor: pointer;
}

.btn-login, .btn-profile, .btn-close {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login:hover, .btn-profile:hover, .btn-close:hover {
    background-color: #00A1E0;
    color: white;
    border-color: #00A1E0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.highlight {
    color: #00A1E0;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #666;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background-color: #00A1E0;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0088c7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 161, 224, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #00A1E0;
    border: 2px solid #00A1E0;
    padding: 13px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #00A1E0;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circles {
    position: relative;
    width: 300px;
    height: 300px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #00A1E0, #4A90E2);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    opacity: 0.8;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 75px;
    left: 75px;
    background: linear-gradient(45deg, #FF6B35, #FF8E53);
    opacity: 0.7;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 100px;
    left: 100px;
    background: linear-gradient(45deg, #FF3D71, #FF6B9D);
    opacity: 0.6;
}

/* Software Populares Section */
.software-populares {
    padding: 80px 0;
    background-color: #ffffff;
}

.software-populares h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.software-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.software-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.software-banner {
    margin-bottom: 20px;
    text-align: center;
}

.software-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.software-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.software-products {
    margin-bottom: 25px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.product-item:hover {
    background-color: #f8f9fa;
}

.product-item img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.product-item span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.btn-ver-mas {
    width: 100%;
    background-color: #f8f9fa;
    color: #00A1E0;
    border: 1px solid #e9ecef;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ver-mas:hover {
    background-color: #00A1E0;
    color: white;
}

/* Top Software Section */
.top-software {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.top-software h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.tab-btn {
    background-color: white;
    border: 2px solid #e9ecef;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: #00A1E0;
    color: white;
    border-color: #00A1E0;
}

.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.carousel-item {
    flex-shrink: 0;
}

.software-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 120px;
}

.software-item:hover {
    transform: translateY(-3px);
}

.software-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.software-item span {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #00A1E0;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.testimonial-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.testimonial-text .highlight {
    color: #FFD700;
}

.testimonial-text blockquote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.testimonial-text cite {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #FFD700;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background-color: #ffffff;
}

.categories h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-item:hover {
    background: #00A1E0;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 161, 224, 0.3);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #00A1E0;
}

.category-item:hover .category-icon {
    color: white;
}

.category-item h3 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* Trust Section */
.trust {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.trust h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #666;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-logos img:hover {
    opacity: 1;
}

/* Registration Section */
.registration {
    padding: 80px 0;
    background-color: #ffffff;
}

.registration-content {
    text-align: center;
}

.registration-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.registration-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.registration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.registration-option {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: left;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.registration-option:hover {
    border-color: #00A1E0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 161, 224, 0.1);
}

.registration-option h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.registration-option h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #00A1E0;
}

.registration-option ul {
    list-style: none;
    margin-bottom: 30px;
}

.registration-option li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.registration-option li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00A1E0;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #00A1E0;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00A1E0;
}

.contact-info p {
    margin-bottom: 8px;
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-selector label {
    color: #bdc3c7;
    font-size: 14px;
}

.country-selector select {
    background-color: #34495e;
    color: white;
    border: 1px solid #4a5f7a;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-links p {
    color: #bdc3c7;
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #00A1E0;
}

/* Additional Styles for Enlace Visual Content */
.section-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.software-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.software-features {
    list-style: none;
    margin-bottom: 25px;
}

.software-features li {
    padding: 5px 0;
    color: #666;
    font-size: 14px;
}

.service-features {
    list-style: none;
    margin-top: 15px;
}

.service-features li {
    padding: 3px 0;
    color: #666;
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.category-item p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .registration-options {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .software-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-logos {
        gap: 20px;
    }
    
    .trust-logos img {
        height: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .category-item p {
        font-size: 12px;
    }
}
