/* ============================================================
   prefooter.css
   Estilos del bloque {% block prefooter %} de mobile/index.html
   (sección SEO "Tu Agencia de Viajes de Confianza").
   Movidos desde index.css. Base mobile-first + desktop.
   ============================================================ */

.seo-content-wrapper {
    border-radius: 16px;
    padding: 24px 16px;
    margin-bottom: 32px;
}

.seo-hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.seo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.seo-main-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.seo-lead-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 8px;
}

.seo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.seo-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 16px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.seo-benefit-item i {
    font-size: 24px;
    color: #007bff;
}

.seo-benefit-item span {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.seo-destinations-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.seo-destination-category {
    background: white;
    border-radius: 12px;
    padding: 20px 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.seo-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.seo-category-header i {
    font-size: 24px;
    color: #007bff;
}

.seo-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.seo-category-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
    padding-left: 36px;
}

.seo-destination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.seo-destination-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.seo-destination-link:hover {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    border-color: #007bff;
}

.seo-destination-link i:first-child {
    font-size: 18px;
    color: #007bff;
    transition: color 0.3s ease;
}

.seo-destination-link:hover i:first-child {
    color: white;
}

.seo-destination-link span {
    flex: 1;
}

.seo-destination-link i.fa-chevron-right {
    font-size: 12px;
    opacity: 0.6;
}

.seo-cta-footer {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 16px;
    padding: 24px 20px;
    margin-top: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.3);
}

.seo-cta-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.seo-cta-text {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 20px;
}

.seo-cta-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seo-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.seo-trust-badge i {
    font-size: 20px;
}

.seo-trust-badge span {
    font-size: 13px;
    font-weight: 600;
}

/* ===================== Tablet / Desktop ===================== */
@media (min-width: 768px) {
    .seo-content-wrapper {
        padding: 40px 32px;
    }

    .seo-main-title {
        font-size: 34px;
    }

    .seo-lead-text {
        font-size: 17px;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    /* 4 beneficios en una fila, centrados */
    .seo-benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 840px;
        margin-left: auto;
        margin-right: auto;
    }

    /* las 4 categorías de destinos en grilla 2x2 */
    .seo-destinations-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* dentro de cada categoría, los destinos en 3 columnas */
    .seo-destination-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* CTA final: texto y sellos lado a lado */
    .seo-cta-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        text-align: left;
        padding: 32px 40px;
    }

    .seo-cta-content {
        flex: 1;
    }

    .seo-cta-badges {
        flex-direction: row;
        flex-shrink: 0;
    }
}

@media (min-width: 992px) {
    .seo-content-wrapper {
        padding: 48px;
    }

    .seo-main-title {
        font-size: 40px;
    }

    .seo-hero-section {
        margin-bottom: 56px;
    }
}
