/* ============================================
   TERMINOS Y CONDICIONES - WIDGET ELEMENTOR
   ============================================ */

.tc-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ============================================
   ICONO SUPERIOR
   ============================================ */
.tc-icon-wrapper {
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border: 2px solid #C4A43D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #1e3a5f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tc-icon-wrapper i {
    font-size: 36px;
    line-height: 1;
}

.tc-icon-wrapper svg {
    width: 36px;
    height: 36px;
    fill: #1e3a5f;
}

/* ============================================
   TITULO PRINCIPAL
   ============================================ */
.tc-title-wrapper {
    text-align: center;
    margin-bottom: 24px;
}

.tc-main-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

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

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

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

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

/* ============================================
   SUBTITULO
   ============================================ */
.tc-subtitle-wrapper {
    margin-bottom: 48px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.tc-subtitle {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

/* ============================================
   CAJA DE CONTENIDO
   ============================================ */
.tc-content-box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 48px;
    width: 100%;
    text-align: left;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.tc-content-box-header {
    margin-bottom: 32px;
}

.tc-content-box-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.tc-inner-separator {
    width: 60px;
    height: 2px;
    background-color: #C4A43D;
}

/* ============================================
   TEXTO DE CONTENIDO
   ============================================ */
.tc-content-text {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
}

.tc-content-text p {
    margin: 0 0 20px 0;
}

.tc-content-text p:last-child {
    margin-bottom: 0;
}

.tc-content-text a {
    color: #C4A43D;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.tc-content-text a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.tc-content-text h1,
.tc-content-text h2,
.tc-content-text h3,
.tc-content-text h4,
.tc-content-text h5,
.tc-content-text h6 {
    color: #1a1a2e;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.tc-content-text ul,
.tc-content-text ol {
    margin: 0 0 20px 0;
    padding-left: 24px;
}

.tc-content-text li {
    margin-bottom: 8px;
}

.tc-content-text strong {
    color: #1a1a2e;
    font-weight: 700;
}

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

/* Tablet */
@media (max-width: 1024px) {
    .tc-main-title {
        font-size: 36px;
    }

    .tc-content-box {
        padding: 40px 36px;
    }

    .tc-content-box-title {
        font-size: 24px;
    }
}

/* Movil */
@media (max-width: 767px) {
    .tc-main-title {
        font-size: 30px;
    }

    .tc-icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .tc-icon-wrapper i {
        font-size: 30px;
    }

    .tc-subtitle-wrapper {
        margin-bottom: 36px;
    }

    .tc-content-box {
        padding: 32px 24px;
        border-radius: 12px;
    }

    .tc-content-box-title {
        font-size: 22px;
    }

    .tc-content-text {
        font-size: 14px;
    }
}

/* Movil pequeno */
@media (max-width: 480px) {
    .tc-main-title {
        font-size: 26px;
    }

    .tc-content-box {
        padding: 28px 20px;
    }

    .tc-content-box-title {
        font-size: 20px;
    }
}
