/* Estilos específicos para index.html */

/* --- Resultados / Entregables Section --- */
.how-it-works-section {
    padding: 60px 0;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: rgba(59, 167, 118, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    color: #3BA776;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.step-video {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-bottom: 100%;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    margin: 0 auto;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
}

/* --- Pricing Section (Consolidado desde inline styles) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: #3BA776;
    box-shadow: 0 0 30px rgba(59, 167, 118, 0.15);
    transform: scale(1.02);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 167, 118, 0.4);
    box-shadow: 0 12px 40px rgba(59, 167, 118, 0.1);
}

.price-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    display: block;
}

.service-tagline {
    font-size: 0.9rem;
    color: #cccccc;
    font-style: italic;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3BA776;
    margin: 15px 0 5px;
}

.price-period {
    font-size: 0.9rem;
    color: #888;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3BA776;
    font-weight: bold;
}

/* --- Comparison Table --- */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.4);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead th {
    background: rgba(26, 26, 26, 0.6);
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table tbody td {
    padding: 18px 15px;
    text-align: center;
    font-size: 0.9rem;
    color: #cccccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #ffffff;
}

.comparison-table tbody tr:hover {
    background: rgba(59, 167, 118, 0.03);
}

/* --- FAQ Accordion --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 10px;
    color: #cccccc;
    font-weight: 300;
    line-height: 1.6;
    display: none;
}

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

.faq-toggle {
    color: #3BA776;
    font-size: 1.5rem;
    line-height: 1;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .step-image {
        max-width: 250px;
    }

    .step-video {
        max-width: 250px;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: 25px 20px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-image {
        max-width: 200px;
    }

    .step-video {
        max-width: 200px;
    }
}
