body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

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

/* Header */
.main-header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.logo-container {
    display: flex;
    align-items: center;
}

/* AJUSTE DEL TAMAÑO DEL LOGO */
.full-logo {
    height: auto;
    max-height: 80px;
}

.main-nav a {
    text-decoration: none;
    color: #555;
    margin-left: 25px;
    font-weight: 500;
}

.cta-button-nav {
    background-color: #004d40;
    color: #ffffff !important;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button-nav:hover {
    background-color: #00332c;
}

/* Hero Section */
.hero-section {
    background-color: #e0f2f1;
    text-align: center;
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 48px;
    color: #004d40;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-button-large {
    background-color: #004d40;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button-large:hover {
    background-color: #00332c;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    text-align: center;
}

.features-section h2 {
    color: #004d40;
    font-size: 32px;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    max-width: 280px;
    text-align: left;
}

.feature-icon {
    font-size: 24px;
    color: #004d40;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-item h3 {
    margin-top: 0;
    color: #333;
}

/* Pricing Section (unida) */
.pricing-section {
    padding: 60px 0;
    text-align: center;
}

.pricing-section h2 {
    color: #004d40;
    font-size: 32px;
    margin-bottom: 40px;
}

.pricing-table-container {
    width: 100%;
    max-width: 600px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin: 0 auto 30px;
}

.pricing-table {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    border-collapse: collapse;
    width: 100%;
}

.plan-header, .plan-row {
    display: contents;
}

.empty-cell {
    border-bottom: 1px solid #eee;
}

.plan-name, .feature-name, .price, .feature-value {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.plan-name {
    font-weight: 700;
    color: #004d40;
    background-color: #f9f9f9;
}

.feature-name {
    justify-content: flex-start;
    padding-left: 20px;
    font-weight: 400;
    color: #555;
    background-color: #fdfdfd;
}

.price {
    font-weight: 700;
    color: #004d40;
    font-size: 18px;
    background-color: #f9f9f9;
}

.price span {
    font-size: 22px;
}

.feature-value {
    color: #004d40;
}

.feature-value.text-value {
    font-weight: bold;
    color: #555;
    background-color: #fdfdfd;
}

.feature-value.check::before {
    content: '✓';
    font-size: 20px;
    font-weight: bold;
}

.feature-value.dash::before {
    content: '—';
    font-size: 20px;
    font-weight: bold;
    color: #999;
}

.plan-row:last-of-type .feature-name,
.plan-row:last-of-type .feature-value {
    border-bottom: none;
}
.plan-header .plan-name {
    border-top: none;
}
.plan-header .empty-cell {
    border-top: none;
}

/* Modules Section (unida) */
.modules-section {
    width: 100%;
    max-width: 600px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin: 0 auto 30px;
}

.modules-section h2 {
    color: #004d40;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.module-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.module-row:last-of-type {
    border-bottom: none;
}

.module-name {
    font-weight: 400;
    color: #555;
    flex: 1;
    padding-right: 10px;
}

.module-price {
    font-weight: bold;
    color: #004d40;
    font-size: 15px;
    text-align: right;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #e0f2f1;
    padding: 60px 0;
    text-align: center;
}

.testimonials-section h2 {
    color: #004d40;
    font-size: 32px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.testimonial-card p {
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: #004d40;
    font-weight: bold;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: #004d40;
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button-large {
    background-color: #004d40;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button-large:hover {
    background-color: #00332c;
}

/* Contact Form Section */
.contact-section {
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    color: #004d40;
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #004d40;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="phone"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .cta-button-large {
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}


/* Footer */
.main-footer {
    background-color: #004d40;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
    }

    .main-nav {
        margin-top: 15px;
    }

    .main-nav a {
        margin: 0 10px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .full-logo {
        max-height: 60px;
    }

    .main-nav a {
        display: block;
        margin: 10px 0;
    }

    .pricing-table-container, .modules-section, .demo-section, .contact-section {
        margin-left: 10px;
        margin-right: 10px;
        padding: 20px 10px;
    }
    @media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .full-logo {
        max-height: 60px;
    }

    .main-nav a {
        display: block;
        margin: 10px 0;
    }

    .pricing-table-container, .modules-section, .demo-section, .contact-section {
        margin-left: 10px;
        margin-right: 10px;
        padding: 20px 10px;
    }
    
    .pricing-section h2, .modules-section h2, .cta-section h2, .contact-section h2 {
        font-size: 20px;
    }

    /* Agrega esto */
    .pricing-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table {
        width: 600px; /* Un ancho fijo suficiente para los planes */
    }

    .plan-name, .feature-name, .price, .feature-value {
        font-size: 13px;
        padding: 12px 5px;
    }

    .price span {
        font-size: 18px;
    }

    .cta-button-large {
        padding: 12px 20px;
    }

    .module-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .module-name {
        font-size: 14px;
        padding-right: 0;
    }

    .module-price {
        font-size: 14px;
        text-align: left;
    }
}
    .pricing-section h2, .modules-section h2, .cta-section h2, .contact-section h2 {
        font-size: 20px;
    }

    .plan-name, .feature-name, .price, .feature-value {
        font-size: 13px;
        padding: 12px 5px;
    }

    .price span {
        font-size: 18px;
    }

    .cta-button-large {
        padding: 12px 20px;
    }

    .module-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .module-name {
        font-size: 14px;
        padding-right: 0;
    }

    .module-price {
        font-size: 14px;
        text-align: left;
    }
}