/* ============================================
   TARJETAS DE VALOR - WIDGET ELEMENTOR
   ============================================ */

.tv-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ============================================
   TÍTULO PRINCIPAL
   ============================================ */
.tv-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.tv-main-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.tv-title-part-1 {
    color: #1a1a2e;
}

.tv-title-part-2 {
    color: #C4A43D;
}

/* Separador */
.tv-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.tv-separator-line {
    display: block;
    width: 60px;
    height: 2px;
    background-color: #C4A43D;
}

.tv-separator-dot {
    display: block;
    width: 8px;
    height: 8px;
    background-color: #C4A43D;
    border-radius: 50%;
    margin: 0 4px;
}

/* ============================================
   GRID DE TARJETAS - RESPONSIVE
   ============================================ */
.tv-cards-grid {
    display: grid;
    width: 100%;
}

/* 1 tarjeta */
.tv-grid-1 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

/* 2 tarjetas */
.tv-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

/* 3+ tarjetas - responsive */
.tv-grid-responsive {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   TARJETA INDIVIDUAL
   ============================================ */
.tv-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ============================================
   ICONO
   ============================================ */
.tv-icon-wrapper {
    width: 80px;
    height: 80px;
    border: 2px solid #C4A43D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #C4A43D;
}

.tv-icon-wrapper i {
    font-size: 32px;
    line-height: 1;
}

.tv-icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: #C4A43D;
}

/* ============================================
   CONTENIDO DE TARJETA
   ============================================ */
.tv-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tv-card-title {
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.tv-card-title-main {
    display: block;
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
}

.tv-card-title-secondary {
    display: block;
    color: #C4A43D;
    font-size: 20px;
    font-weight: 700;
}

.tv-card-separator {
    width: 50px;
    height: 2px;
    background-color: #C4A43D;
    margin-bottom: 20px;
}

.tv-card-description {
    color: #666666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet: 3 tarjetas -> 2+1, 4 tarjetas -> 2x2 */
@media (max-width: 1024px) {
    .tv-main-title {
        font-size: 38px;
    }

    .tv-grid-responsive {
        grid-template-columns: repeat(2, 1fr);
    }

    .tv-card {
        padding: 32px 24px;
    }
}

/* Móvil: todas en 1 columna */
@media (max-width: 767px) {
    .tv-main-title {
        font-size: 30px;
    }

    .tv-title-wrapper {
        margin-bottom: 40px;
    }

    .tv-grid-responsive,
    .tv-grid-2 {
        grid-template-columns: 1fr;
    }

    .tv-card {
        padding: 32px 24px;
    }

    .tv-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .tv-icon-wrapper i {
        font-size: 28px;
    }

    .tv-card-title-main,
    .tv-card-title-secondary {
        font-size: 18px;
    }
}

/* Móvil pequeño */
@media (max-width: 480px) {
    .tv-main-title {
        font-size: 26px;
    }

    .tv-card {
        padding: 28px 20px;
    }
}
