/* ============================================================
   Travel Thank You — Página de gracias global para formularios
   Shortcode: [travel_thank_you]
   ============================================================ */

.tfb-ty-wrap {
    font-family: 'Arial', sans-serif;
    max-width: 680px;
    margin: 60px auto;
    padding: 48px 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    color: #000;
}

/* Icono de check animado */
.tfb-ty-check {
    width: 80px;
    height: 80px;
    background: #154D52;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 32px;
    animation: tfb-ty-pulse 2s infinite;
}

.tfb-ty-check::after {
    content: '✓';
    color: #fff;
    font-size: 40px;
    font-weight: bold;
}

@keyframes tfb-ty-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(21, 77, 82, 0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(21, 77, 82, 0); }
    100% { box-shadow: 0 0 0 0 rgba(21, 77, 82, 0); }
}

/* Título */
.tfb-ty-title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.35;
}

/* Párrafos de texto */
.tfb-ty-text {
    font-size: 17px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.65;
}

/* Lista de contactos */
.tfb-ty-contacts {
    list-style: none;
    padding: 0;
    margin: 28px auto 28px;
    max-width: 460px;
    text-align: left;
    display: inline-block;
}

.tfb-ty-contacts li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.5;
}

.tfb-ty-contacts li:last-child {
    margin-bottom: 0;
}

.tfb-ty-contact-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #154D52;
}

.tfb-ty-contacts a {
    color: #000;
    text-decoration: none;
}

.tfb-ty-contacts a:hover {
    text-decoration: underline;
}

/* Frase en negrita */
.tfb-ty-bold {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-top: 28px;
    margin-bottom: 8px;
}

/* Firma del equipo */
.tfb-ty-team {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .tfb-ty-wrap {
        margin: 20px;
        padding: 32px 20px;
    }

    .tfb-ty-title {
        font-size: 21px;
    }

    .tfb-ty-text,
    .tfb-ty-contacts li {
        font-size: 15px;
    }

    .tfb-ty-contacts {
        display: block;
        text-align: left;
    }
}
