/**
 * Spanish Homepage Specific Styles
 */

/* ================================
   HERO TRUST BADGES (reuse EN styles)
   ================================ */

.hero-trust-benefits {
    max-width: 600px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    min-height: 60px;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.trust-badge i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.trust-badge span {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

@media (max-width: 767.98px) {
    .hero-trust-benefits {
        margin-top: 1.5rem;
    }

    .trust-badge {
        padding: 0.5rem;
        min-height: 50px;
        flex-direction: column;
        gap: 0.25rem;
    }

    .trust-badge i {
        font-size: 1rem;
    }

    .trust-badge span {
        font-size: 0.75rem;
    }
}

/* ================================
   USE CASES GRID — 2x2
   ================================ */

.use-cases-section .use-cases {
    grid-template-columns: repeat(2, 1fr);
}

/* ================================
   AUTONOMOS HIGHLIGHT SECTION
   ================================ */

.autonomos-highlight {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
}

.autonomos-highlight__box {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(13, 98, 225, 0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.autonomos-highlight__title {
    font-family: var(--heading-font, 'Dosis', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-text, #1a1a2e);
    margin-bottom: 1rem;
}

.autonomos-highlight__body {
    font-size: 1.1rem;
    color: var(--light-text-secondary, #555);
    margin-bottom: 1.5rem;
}

.autonomos-highlight__list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0 auto 1.5rem;
    max-width: 600px;
}

.autonomos-highlight__list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-text, #1a1a2e);
    font-size: 1rem;
    line-height: 1.6;
}

.autonomos-highlight__list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #0d62e1;
    font-weight: 700;
}

.autonomos-highlight__footer {
    font-size: 0.95rem;
    color: var(--light-text-secondary, #555);
    font-style: italic;
    margin-bottom: 2rem;
}

.autonomos-highlight__cta {
    display: flex;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .autonomos-highlight__box {
        padding: 2rem 1.5rem;
    }

    .autonomos-highlight__title {
        font-size: 1.5rem;
    }

    .autonomos-highlight__body {
        font-size: 1rem;
    }
}

/* ================================
   DARK MODE SUPPORT
   ================================ */

@media (prefers-color-scheme: dark) {
    .autonomos-highlight {
        background: linear-gradient(135deg, var(--dark-bg, #1a1a2e) 0%, #1e2444 100%);
    }

    .autonomos-highlight__box {
        background-color: var(--dark-panel-bg, #242444);
        border-color: rgba(13, 98, 225, 0.2);
    }

    .autonomos-highlight__title {
        color: var(--dark-text, #fff);
    }

    .autonomos-highlight__body,
    .autonomos-highlight__footer {
        color: var(--dark-text-secondary, #ccc);
    }

    .autonomos-highlight__list li {
        color: var(--dark-text, #fff);
    }
}
