/*
 * Leganux Website - Main Stylesheet
 * Diseño minimalista pero llamativo para vender servicios de desarrollo
 */

/* Global Styles */
:root {
    /* Colores para modo claro (default) */
    --primary-color: #0056b3; /* Azul para Leganux */
    --secondary-color: #1b263b;
    --accent-color: #6A5ACD; /* Morado para acentos y llamados a la acción */
    --light-bg: #f5f7fa;
    --dark-text: #2d3748;
    --light-text: #718096;
    --card-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-sm: 8px;
    --gradient-primary: linear-gradient(135deg, #0056b3 0%, #0077cc 100%);
    --gradient-accent: linear-gradient(135deg, #6A5ACD 0%, #8A7CDC 100%);
}

/* Variables para modo oscuro */
[data-theme="dark"] {
    --primary-color: #4a8eda; /* Azul más claro para Leganux en modo oscuro */
    --secondary-color: #2d3748;
    --accent-color: #8A7CDC; /* Morado más claro para acentos */
    --light-bg: #1a202c;
    --dark-text: #e2e8f0;
    --light-text: #a0aec0;
    --card-bg: #2d3748;
    --header-bg: rgba(26, 32, 44, 0.95);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #4a8eda 0%, #5a9ae0 100%);
    --gradient-accent: linear-gradient(135deg, #8A7CDC 0%, #9A8DEC 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.ui.container {
    padding: 2rem 1rem;
}

/* Tema oscuro - ajustes específicos */
[data-theme="dark"] .ui.segment,
[data-theme="dark"] .ui.card,
[data-theme="dark"] .dashboard-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .contact-form-card,
[data-theme="dark"] .map-card {
    background-color: var(--card-bg);
    color: var(--dark-text);
}

[data-theme="dark"] .ui.form input,
[data-theme="dark"] .ui.form textarea {
    background-color: #3a4556;
    color: var(--dark-text);
    border-color: #4a5568;
}

[data-theme="dark"] .ui.form label {
    color: var(--dark-text);
}

/* Toggle de tema */
.theme-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: transparent;
}

.theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle i {
    font-size: 1.2rem;
    color: var(--dark-text);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--dark-text);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.section-description {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    transition-delay: 0.2s;
}

.section-description.animated {
    opacity: 1;
    transform: translateY(0);
}

.section-label {
    display: inline-block;
    background-color: rgba(0, 86, 179, 0.1); /* Azul Leganux */
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-label.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.ui.primary.button {
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(0, 86, 179, 0.25);
    transition: all 0.3s ease;
    border: none;
}

.ui.primary.button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

.ui.secondary.button {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(27, 38, 59, 0.15);
    transition: all 0.3s ease;
    border: none;
}

.ui.secondary.button:hover {
    background-color: #263752;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 38, 59, 0.2);
}

.get-template-btn {
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    background: var(--gradient-accent) !important;
    box-shadow: 0 4px 14px rgba(106, 90, 205, 0.25) !important;
}

.get-template-btn:hover {
    background: #6A5ACD !important;
    box-shadow: 0 6px 20px rgba(106, 90, 205, 0.3) !important;
}

.get-started-btn, .learn-more-btn {
    margin: 1rem 0.5rem !important;
}

/* Header/Navigation */
header {
    padding: 1rem 0 !important;
    background-color: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ui.secondary.menu {
    border: none;
    box-shadow: none;
    margin: 0;
    position: relative;
}

.ui.secondary.menu .item {
    color: var(--dark-text);
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--dark-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

@media (max-width: 991px) {
    .mobile-menu-button {
        display: block;
    }

    .ui.secondary.menu .right.menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--header-bg);
        padding: 1rem;
        box-shadow: var(--shadow-md);
        flex-direction: column;
        width: 100%;
        margin: 0;
    }

    .ui.secondary.menu .right.menu.active {
        display: flex;
    }

    .ui.secondary.menu .right.menu .item {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    .ui.secondary.menu .right.menu .item .ui.primary.button {
        width: 100%;
        margin-top: 0.5rem;
    }

    .theme-toggle {
        margin: 0.5rem auto;
    }
}

.ui.secondary.menu .item:hover {
    background-color: rgba(0, 0, 0, 0.03);
    color: var(--primary-color);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-text);
}

.logo-icon {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.logo-icon i {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 4rem;
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="white" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,224C672,213,768,171,864,149.3C960,128,1056,128,1152,149.3C1248,171,1344,213,1392,234.7L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.app-icon {
    width: 80px;
    height: 80px;
    background-color: var(--card-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.app-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.hero-title, .hero-subtitle {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 0;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1.5rem 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-section .ui.buttons {
    position: relative;
    z-index: 2;
}

.hero-section .ui.primary.button {
    background: var(--accent-color);
    box-shadow: 0 4px 14px rgba(106, 90, 205, 0.25);
}

.hero-section .ui.primary.button:hover {
    background: #7B68EE;
    box-shadow: 0 6px 20px rgba(106, 90, 205, 0.3);
}

.hero-section .ui.secondary.button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
}

.hero-section .ui.secondary.button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Dashboard Section */
.dashboard-section {
    padding: 4rem 0;
    position: relative;
}

.dashboard-card {
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-md) !important;
    border: none !important;
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.3s ease;
}

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

.chart-container {
    position: relative;
    height: 150px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(90deg, rgba(0, 86, 179, 0.1) 0%, rgba(0, 86, 179, 0.3) 50%, rgba(0, 86, 179, 0.1) 100%);
    border-radius: 50px;
    transform: translateY(-50%);
}

.chart-point {
    position: absolute;
    top: 30%;
    left: 20%;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    z-index: 2;
}

.chart-point.right {
    left: auto;
    right: 20%;
    top: 20%;
}

.donut-chart {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 75%, #4a90e2 25%);
    margin: 0 auto 1.5rem;
    position: relative;
}

.donut-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: var(--card-bg);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.ui.statistics {
    margin: 0;
    justify-content: center;
}

.ui.statistics .statistic {
    margin: 0 1rem;
}

.ui.statistics .statistic .value {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--primary-color);
}

.ui.statistics .statistic .label {
    font-size: 0.9rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui.statistics .statistic .label i {
    margin-right: 0.3rem;
}

.product-icon {
    width: 40px;
    height: 40px;
    background-color: #f3f4f6;
    border-radius: 8px;
}

/* Partners Section */
.partners-section {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--card-bg);
    transition: background-color 0.3s ease;
}

.partners-grid {
    margin-top: 2rem !important;
}

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
    background-color: rgba(0, 86, 179, 0.05);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background-color: rgba(0, 86, 179, 0.1);
    transform: translateY(-2px);
}

/* Integrations Section */
.integrations-section {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.integrations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="white" fill-opacity="0.5" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,208C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.integration-diagram {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 3rem auto;
    z-index: 2;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-md);
    animation: pulse 3s infinite;
}

.center-logo i {
    font-size: 2.5rem;
    color: white;
}

.platform-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease, background-color 0.3s ease;
}

.platform-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.platform-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.platform-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.platform-icon.top-left {
    top: 15%;
    left: 15%;
}

.platform-icon.top-right {
    top: 15%;
    right: 15%;
}

.platform-icon.bottom-left {
    bottom: 15%;
    left: 15%;
}

.platform-icon.bottom-right {
    bottom: 15%;
    right: 15%;
}

.features-grid {
    margin-top: 3rem !important;
    position: relative;
    z-index: 2;
}

.feature {
    padding: 1rem;
    font-weight: 500;
    color: var(--dark-text);
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(5px);
    display: block;
    text-decoration: none;
}

.feature:hover {
    background-color: var(--card-bg);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--primary-color);
}

.feature i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Features Tags Section */
.features-tags-section {
    padding: 2rem 0;
    text-align: center;
    background-color: var(--card-bg);
    transition: background-color 0.3s ease;
}

.tags-container {
    margin: 1rem 0;
}

.ui.label {
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--dark-text);
    border-radius: 50px;
    margin: 0.5rem;
    padding: 0.8rem 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ui.label:hover {
    background-color: rgba(0, 86, 179, 0.2);
    transform: translateY(-2px);
}

/* Deployment Section */
.deployment-section {
    padding: 4rem 0 2rem;
    text-align: center;
    background: var(--gradient-primary);
    color: white;
}

.deployment-section .section-label {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.deployment-section .section-title {
    color: white;
}

.deployment-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.deployment-section a {
    color: white;
    text-decoration: underline;
}

/* Features Cards Section */
.features-cards-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.feature-card {
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-md) !important;
    border: none !important;
    padding: 1.5rem !important;
    height: 100%;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--card-bg);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f5f7fa" fill-opacity="1" d="M0,160L48,170.7C96,181,192,203,288,202.7C384,203,480,181,576,165.3C672,149,768,139,864,154.7C960,171,1056,213,1152,218.7C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.pricing-card {
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-md) !important;
    border: none !important;
    padding: 2rem 1.5rem !important;
    height: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

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

.pricing-card.popular {
    border: 2px solid var(--accent-color) !important;
}

.ui.ribbon.label {
    position: absolute;
    top: 1rem;
    right: -1rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    background-color: var(--accent-color);
    color: white;
}

.plan-description {
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.ui.list {
    margin-top: 1rem;
}

.ui.list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.ui.list li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Donation Banner */
.donation-banner {
    background-color: var(--accent-color);
    padding: 1rem 0;
    text-align: center;
    color: white;
}

.donation-banner p {
    margin: 0;
    font-weight: 500;
}

.donation-banner i {
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--light-bg);
}

.testimonial-card {
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-md) !important;
    border: none !important;
    padding: 1.5rem !important;
    height: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.testimonial-content p {
    color: var(--light-text);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--light-text);
    font-size: 0.9rem;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
}

.author-name {
    font-weight: 600;
}

.author-company {
    font-size: 0.9rem;
    color: var(--light-text);
}

.trusted-by {
    margin-top: 2rem;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="white" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,208C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.final-cta-section .section-label {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.final-cta-section .section-title {
    color: white;
}

.final-cta-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-card, .contact-form-card, .map-card {
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-md) !important;
    border: none !important;
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-info-card:hover, .contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.contact-info-card h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-info-card h3:first-child {
    margin-top: 0;
}

.contact-info-card h3 i {
    margin-right: 0.5rem;
}

.contact-info-card p {
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.ui.form .field label {
    text-align: left;
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    padding: 4rem 0 2rem;
    color: white;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo .logo {
    color: white;
}

.footer-logo .logo-icon i {
    color: white;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
}

.footer-nav .item {
    margin-right: 2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-decoration: none;
}

.footer-nav .item:hover {
    color: white;
}

.social-links {
    display: flex;
    justify-content: flex-end;
}

.social-links .ui.button {
    margin-left: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-links .ui.button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.copyright {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.made-by {
    text-align: right;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.made-by a {
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .ui.container {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title, .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .integration-diagram {
        width: 250px;
        height: 250px;
    }
    
    .social-links {
        justify-content: flex-start;
        margin-top: 1.5rem;
    }
    
    .social-links .ui.button {
        margin-left: 0;
        margin-right: 0.5rem;
    }
    
    .made-by {
        text-align: left;
    }

    /* Benefits and Team Cards Responsive Fix */
    .dashboard-section .ui.grid > .column {
        width: 100% !important;
        margin-bottom: 1.5rem;
    }

    .dashboard-section .ui.statistics {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .dashboard-section .ui.statistics .statistic {
        margin: 0.5rem;
    }

    .dashboard-section .donut-chart {
        width: 120px;
        height: 120px;
    }

    .dashboard-section .donut-chart::after {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767px) {
    .ui.container {
        padding: 1rem;
    }
    
    .ui.secondary.menu {
        flex-wrap: wrap;
    }

    /* Benefits and Team Cards Responsive Fix */
    .dashboard-section .ui.list li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .dashboard-section .ui.statistics {
        flex-direction: column;
        align-items: center;
    }

    .dashboard-section .ui.statistics .statistic {
        margin: 0.5rem 0;
        text-align: center;
    }

    .dashboard-section .ui.statistics .value {
        font-size: 1.2rem !important;
    }

    .dashboard-section .ui.statistics .label {
        font-size: 0.8rem;
    }

    .dashboard-section .donut-chart {
        width: 100px;
        height: 100px;
    }

    .dashboard-section .donut-chart::after {
        width: 60px;
        height: 60px;
    }

    .dashboard-section img {
        max-width: 150px;
        height: auto;
    }
    
    .ui.secondary.menu .right.menu {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title, .hero-subtitle {
        font-size: 2rem;
    }
    
    .app-icon {
        width: 60px;
        height: 60px;
    }
    
    .app-icon i {
        font-size: 2rem;
    }
    
    .ui.buttons {
        flex-direction: column;
    }
    
    .ui.buttons .button {
        margin: 0.5rem 0 !important;
        width: 100%;
    }
    
    .partners-grid {
        display: flex;
        flex-wrap: wrap;
    }
    
    .partners-grid .column {
        width: 50% !important;
        margin-bottom: 1rem;
    }
    
    .integration-diagram {
        width: 200px;
        height: 200px;
    }
    
    .platform-icon {
        width: 50px;
        height: 50px;
    }
    
    .platform-icon i {
        font-size: 1.5rem;
    }
    
    .center-logo {
        width: 60px;
        height: 60px;
    }
    
    .center-logo i {
        font-size: 2rem;
    }
    
    .footer-nav {
        flex-direction: column;
    }
    
    .footer-nav .item {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 479px) {
    /* Sobre Nosotros buttons mobile stacking */
    .features-grid .feature {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
        text-align: left;
        padding: 0.8rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title, .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .partners-grid .column {
        width: 100% !important;
    }
    
    .ui.statistics {
        flex-direction: column;
    }
    
    .ui.statistics .statistic {
        margin: 0.5rem 0;
    }
}
