:root {
    --primary-color: #3498db;
    --secondary-color: #2980b9;
    --accent-color: #e74c3c;
    --text-color: #333333;
    --background-color: #f5f7fa;
    --light-gray: #ecf0f1;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

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

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

header h1 {
    font-size: 2em;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

#hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #c0392b;
}

.button.primary {
    background-color: #fff;
    color: var(--primary-color);
}

.button.primary:hover {
    background-color: var(--light-gray);
}

/* Tools Section */
#tools {
    padding: 80px 0;
}

#tools h2,
#features h2,
#how-it-works h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--text-color);
}

#features h3{
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tool-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tool-item i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tool-item h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.tool-item p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.button-wrapper {
    margin-top: auto;
}

/* Features Section */
#features {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

/* How It Works Section */
#how-it-works {
    padding: 80px 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.step {
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.step-icon {
    background-color: var(--primary-color);
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2em;
}

.step h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

/* CTA Section */
#cta {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

#cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

#cta .button {
    background-color: #fff;
    color: var(--primary-color);
}

#cta .button:hover {
    background-color: var(--light-gray);
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: var(--light-gray);
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .tools-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .tools-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .step {
        margin-bottom: 40px;
    }

    #hero h2 {
        font-size: 2em;
    }

    #hero p {
        font-size: 1em;
    }
}

/* Accessibility and Interactivity Improvements */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.button:active,
.tool-item:active,
.feature-item:active {
    transform: translateY(2px);
}

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

.tool-item,
.feature-item,
.step {
    animation: fadeIn 0.5s ease-in-out;
}

/* Additional Hover Effects */
.tool-item:hover,
.feature-item:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Improved Typography */
body {
    font-size: 16px;
}

h1, h2, h3 {
    line-height: 1.2;
}

p {
    margin-bottom: 1em;
}

/* Additional Helper Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* Print Styles */
@media print {
    header, footer, #cta {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    img {
        max-width: 100% !important;
    }

    .container {
        width: 100%;
        margin: 0;
        padding: 0;
    }
}

























/* Estilos adicionales optimizados para el index mejorado */

/* Estilos para la sección de características */


.feature-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Estilos para la sección de casos de uso */
.use-cases-grid {
    display: grid;
	background-color: #ECF0F1; /* Cambia este valor al color que prefieras */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

#use-cases {
    background-color: #ECF0F1; /* Cambia este valor al color que prefieras */
    padding: 20px; /* Opcional: añade padding para darle un poco de espacio interno */
}


.use-case-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.use-case-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Estilos para la tabla de comparación */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.comparison-table th, .comparison-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: #fff;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Estilos para la sección de testimonios */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.testimonial-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-item cite {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Estilos para la sección de FAQ */
.faq-list {
    max-width: 800px;
    margin: 30px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 20px;
    transition: transform 0.3s ease;
}

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

.faq-item p {
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-top: 10px;
    display: none;
}

.faq-item.active p {
    display: block;
}

/* Estilos para el footer mejorado */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-section {
    flex-basis: calc(25% - 20px);
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
}

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

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

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

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

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

/* Estilos responsivos */
@media (max-width: 768px) {
    .footer-section {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .footer-section {
        flex-basis: 100%;
    }
}

.spacer {
    height: 60px; /* Puedes ajustar la altura según lo que necesites */
    width: 100%;
}

.feather {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feature-item .feather,
.step-icon .feather,
.use-case-item .feather {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.button .feather {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
}

.feature-item i, .use-case-item i {
            display: block;
            text-align: center;
            font-size: 3em;
            margin-bottom: 15px;
        }
        .faq-item {
            margin-bottom: 15px;
        }
        .faq-item summary {
            cursor: pointer;
            font-weight: bold;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::before {
            content: '\25B6';
            padding-right: 0.5em;
        }
        .faq-item[open] summary::before {
            content: '\25BC';
        }
        .share-buttons {
            margin-top: 20px;
        }
        .share-buttons a {
            margin-right: 10px;
            font-size: 1.5em;
        }