/* ============================================================
   TETRASAT RASTREAMENTO – Estilos Globais
   Paleta: #24AFB8 | #008188 | #2C303B | #2D0637
   ============================================================ */

/* ── Variáveis CSS ────────────────────────────────────────── */
:root {
    /* Cores principais */
    --ts-primary:       #24AFB8;
    --ts-primary-dark:  #008188;
    --ts-dark:          #2C303B;
    --ts-purple:        #2D0637;
    --ts-warning-dark:       #faa200;
    --ts-danger-dark:        #ff1900;

    /* Cores auxiliares */
    --ts-primary-light: #3cc5ce;
    --ts-primary-bg:    rgba(36,175,184,.08);
    --ts-success:       #27ae60;
    --ts-warning:       #f3d112;
    --ts-danger:        #e74c3c;
    --ts-light:         #f4f8f9;
    --ts-gray:          #6c757d;
    --ts-gray-light:    #e9ecef;
    --ts-white:         #ffffff;

    /* Tipografia */
    --ts-font-primary:  'Poppins', sans-serif;
    --ts-font-body:     'Inter', sans-serif;

    /* Sombras */
    --ts-shadow-sm:     0 2px 8px rgba(0,0,0,.06);
    --ts-shadow:        0 4px 20px rgba(0,0,0,.08);
    --ts-shadow-lg:     0 10px 40px rgba(0,0,0,.12);
    --ts-shadow-xl:     0 20px 60px rgba(0,0,0,.15);

    /* Transições */
    --ts-transition:    all .3s ease;
    --ts-transition-slow: all .5s ease;

    /* Border radius */
    --ts-radius:        8px;
    --ts-radius-lg:     16px;
    --ts-radius-xl:     24px;
    --ts-radius-full:   50px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: var(--ts-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ts-dark);
    background-color: var(--ts-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ts-font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--ts-dark);
}

a {
    text-decoration: none;
    color: var(--ts-primary);
    transition: var(--ts-transition);
}

a:hover {
    color: var(--ts-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ── Topbar ───────────────────────────────────────────────── */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: red;
    width: 0%;
    z-index: 9999;
}

.ts-topbar {
    background: linear-gradient(135deg, var(--ts-dark) 0%, var(--ts-purple) 100%);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,.85);
    position: relative;
    z-index: 1050;
}

.ts-topbar a {
    color: rgba(255,255,255,.85);
    transition: var(--ts-transition);
}

.ts-topbar a:hover {
    color: var(--ts-primary);
}

.ts-topbar .topbar-info i {
    color: var(--ts-primary);
    margin-right: 5px;
}

.ts-topbar .topbar-info span {
    margin-right: 20px;
}

.ts-topbar .topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    margin-left: 6px;
    font-size: 13px;
    transition: var(--ts-transition);
}

.ts-topbar .topbar-social a:hover {
    background: var(--ts-primary);
    color: var(--ts-white);
    transform: translateY(-2px);
}

/* ── Navbar ───────────────────────────────────────────────── */
.ts-navbar {
    background: var(--ts-white);
    box-shadow: var(--ts-shadow);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1040;
    transition: var(--ts-transition);
}

.ts-navbar.scrolled {
    box-shadow: var(--ts-shadow-lg);
}

.ts-navbar .navbar-brand img {
    height: 50px;
    transition: var(--ts-transition);
}

.ts-navbar .nav-link {
    font-family: var(--ts-font-primary);
    font-weight: 500;
    font-size: 14px;
    color: var(--ts-dark) !important;
    padding: 20px 15px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--ts-transition);
}

.ts-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--ts-primary);
    border-radius: 3px 3px 0 0;
    transition: var(--ts-transition);
}

.ts-navbar .nav-link:hover,
.ts-navbar .nav-link.active {
    color: var(--ts-primary) !important;
}

.ts-navbar .nav-link:hover::after,
.ts-navbar .nav-link.active::after {
    width: 70%;
}

.ts-navbar .dropdown-menu {
    border: none;
    box-shadow: var(--ts-shadow-lg);
    border-radius: var(--ts-radius);
    padding: 10px 0;
    margin-top: 0;
    border-top: 3px solid var(--ts-primary);
    animation: fadeInDown .3s ease;
}

.ts-navbar .dropdown-item {
    font-size: 14px;
    padding: 8px 20px;
    color: var(--ts-dark);
    transition: var(--ts-transition);
}

.ts-navbar .dropdown-item:hover {
    background: var(--ts-primary-bg);
    color: var(--ts-primary);
    padding-left: 25px;
}

.ts-navbar .dropdown-item i {
    width: 20px;
    color: var(--ts-primary);
    margin-right: 8px;
}

.ts-navbar .btn-nav-cta {
    background: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-primary-dark) 100%);
    color: var(--ts-white) !important;
    border: none;
    border-radius: var(--ts-radius-full);
    padding: 10px 25px !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--ts-transition);
}

.ts-navbar .btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(36,175,184,.35);
}

.ts-navbar .btn-nav-cta::after {
    display: none;
}

/* ── Hero / Banner ────────────────────────────────────────── */
.ts-hero {
    position: relative;
    background: linear-gradient(135deg, var(--ts-dark) 0%, var(--ts-purple) 60%);
    overflow: hidden;
}

.ts-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36,175,184,.15) 0%, transparent 70%);
    animation: floatCircle 15s ease-in-out infinite;
}

.ts-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,6,55,.3) 0%, transparent 70%);
    animation: floatCircle 20s ease-in-out infinite reverse;
}

.ts-hero .hero-content {
    position: relative;
    z-index: 2;
}

.ts-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--ts-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.ts-hero h1 span {
    color: var(--ts-primary);
}

.ts-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 35px;
    max-width: 550px;
}

.ts-hero .hero-img {
    position: relative;
    z-index: 2;
}

.ts-hero .hero-img img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
    animation: floatUpDown 4s ease-in-out infinite;
}

/* ── Hero Slider (Swiper) ─────────────────────────────────── */
.ts-hero-slider {
    width: 100%;
    height: 100%;
}

.ts-hero-slider .swiper-slide {
    display: flex;
    align-items: center;
    min-height: 85vh;
}

/* Animações de entrada dos elementos do slide */
.ts-hero-slider .hero-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .6s ease, transform .6s ease;
}

.ts-hero-slider .swiper-slide-active .hero-anim {
    opacity: 1;
    transform: translateY(0);
}

.ts-hero-slider .swiper-slide-active .hero-anim-1 { transition-delay: .1s; }
.ts-hero-slider .swiper-slide-active .hero-anim-2 { transition-delay: .25s; }
.ts-hero-slider .swiper-slide-active .hero-anim-3 { transition-delay: .4s; }
.ts-hero-slider .swiper-slide-active .hero-anim-4 { transition-delay: .55s; }
.ts-hero-slider .swiper-slide-active .hero-anim-5 { transition-delay: .7s; }

/* Navegação setas */
.ts-hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    transform: translateY(-50%);
}

.ts-hero-prev,
.ts-hero-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ts-white);
    font-size: 16px;
    cursor: pointer;
    pointer-events: all;
    transition: var(--ts-transition);
}

.ts-hero-prev:hover,
.ts-hero-next:hover {
    background: var(--ts-primary);
    border-color: var(--ts-primary);
    transform: scale(1.1);
}

/* Pagination bullets */
.ts-hero-pagination {
    position: absolute;
    bottom: 30px !important;
    left: 0;
    right: 0;
    z-index: 20;
    text-align: center;
}

.ts-hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,.3);
    opacity: 1;
    margin: 0 6px !important;
    border-radius: 12px;
    transition: var(--ts-transition);
}

.ts-hero-pagination .swiper-pagination-bullet-active {
    background: var(--ts-primary);
    width: 35px;
}

/* Barra de progresso */
.ts-hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,.1);
    z-index: 20;
}

.ts-hero-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--ts-primary), var(--ts-primary-dark));
    border-radius: 0 4px 4px 0;
    transition: width .1s linear;
}

/* Responsivo slider */
@media (max-width: 991.98px) {
    .ts-hero-slider .swiper-slide {
        min-height: 75vh;
    }
    .ts-hero-nav {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .ts-hero-slider .swiper-slide {
        min-height: auto;
        padding: 60px 0;
    }
}

/* ── Botões Globais ───────────────────────────────────────── */
.btn-ts-primary {
    background: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-primary-dark) 100%);
    color: var(--ts-white);
    border: none;
    border-radius: var(--ts-radius-full);
    padding: 14px 35px;
    font-family: var(--ts-font-primary);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--ts-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-ts-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(36,175,184,.4);
    color: var(--ts-white);
}

.btn-ts-warning {
    background: linear-gradient(135deg, var(--ts-warning) 0%, var(--ts-warning-dark) 100%);
    color: var(--ts-white);
    border: none;
    border-radius: var(--ts-radius-full);
    padding: 14px 35px;
    font-family: var(--ts-font-primary);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--ts-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-ts-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 222, 0, 0.4);
    color: var(--ts-white);
}

.btn-ts-danger {
    background: linear-gradient(135deg, var(--ts-danger) 0%, var(--ts-danger-dark) 100%);
    color: var(--ts-white);
    border: none;
    border-radius: var(--ts-radius-full);
    padding: 14px 35px;
    font-family: var(--ts-font-primary);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--ts-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-ts-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    color: var(--ts-white);
}

.btn-ts-outline {
    background: transparent;
    color: var(--ts-white);
    border: 2px solid rgba(255,255,255,.3);
    border-radius: var(--ts-radius-full);
    padding: 12px 35px;
    font-family: var(--ts-font-primary);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--ts-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-ts-outline:hover {
    background: var(--ts-white);
    color: var(--ts-primary-dark);
    border-color: var(--ts-white);
    transform: translateY(-3px);
}

.btn-ts-dark {
    background: linear-gradient(135deg, var(--ts-dark) 0%, var(--ts-purple) 100%);
    color: var(--ts-white);
    border: none;
    border-radius: var(--ts-radius-full);
    padding: 14px 35px;
    font-family: var(--ts-font-primary);
    font-weight: 600;
    font-size: 15px;
    transition: var(--ts-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-ts-dark:hover {
    transform: translateY(-3px);
    box-shadow: var(--ts-shadow-lg);
    color: var(--ts-white);
}

.btn-ts-whatsapp {
    background: #25D366;
    color: var(--ts-white);
    border: none;
    border-radius: var(--ts-radius-full);
    padding: 14px 35px;
    font-family: var(--ts-font-primary);
    font-weight: 600;
    font-size: 15px;
    transition: var(--ts-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-ts-whatsapp:hover {
    background: #128C7E;
    color: var(--ts-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,.3);
}

/* ── Seções ────────────────────────────────────────────────── */
.ts-section {
    padding: 90px 0;
}

.ts-section-gray {
    background: var(--ts-light);
}

.ts-section-dark {
    background: linear-gradient(135deg, var(--ts-dark) 0%, var(--ts-purple) 100%);
    color: var(--ts-white);
}

.ts-section-dark h2,
.ts-section-dark h3 {
    color: var(--ts-white);
}

/* Mantem o icone seta do accordion visivel sobre fundo escuro */
.ts-section-dark .accordion-button::after {
    filter: brightness(0) invert(1);
    opacity: .95;
}

.ts-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.ts-section-title .badge-label {
    display: inline-block;
    background: var(--ts-primary-bg);
    color: var(--ts-primary);
    font-family: var(--ts-font-primary);
    font-weight: 600;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: var(--ts-radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ts-section-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.ts-section-title h2 span {
    color: var(--ts-primary);
}

.ts-section-title p {
    font-size: 1.1rem;
    color: var(--ts-gray);
    max-width: 650px;
    margin: 0 auto;
}

/* ── Cards ─────────────────────────────────────────────────── */
.ts-card {
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    padding: 35px 30px;
    box-shadow: var(--ts-shadow-sm);
    border: 1px solid var(--ts-gray-light);
    transition: var(--ts-transition);
    height: 100%;
}

.ts-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ts-shadow-lg);
    border-color: var(--ts-primary);
}

.ts-card .card-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--ts-radius);
    background: var(--ts-primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--ts-primary);
    margin-bottom: 20px;
    transition: var(--ts-transition);
}

.ts-card:hover .card-icon {
    background: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-primary-dark) 100%);
    color: var(--ts-white);
    transform: rotateY(180deg);
}

.ts-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.ts-card p {
    color: var(--ts-gray);
    font-size: .95rem;
    margin-bottom: 0;
}

/* ── Missão, Visão e Valores ──────────────────────────────── */
.ts-mvv-section .ts-section-title {
    margin-bottom: 50px;
}

.ts-mvv-section .mvv-tagline {
    max-width: 760px;
    margin: 18px auto 0;
}

.ts-mvv-section .ts-card {
    padding: 40px 32px;
}

.ts-mvv-section .ts-card h4 {
    margin-bottom: 18px;
}

.ts-mvv-section .ts-card p {
    line-height: 1.7;
}

.ts-mvv-section .mvv-values-list p + p {
    margin-top: 10px;
}

/* ── O Que Posso Rastrear ─────────────────────────────────── */
.ts-track-section .ts-section-title {
    margin-bottom: 50px;
}

.ts-track-section {
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 60%);
}

.ts-track-section .ts-section-title p {
    max-width: 860px;
}

.ts-track-card {
    border-top: 4px solid var(--ts-primary);
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(24, 57, 123, 0.08);
    padding: 28px 20px;
}

.ts-track-card h4 {
    margin-bottom: 14px;
    font-size: 1.06rem;
    color: var(--ts-dark);
}

.ts-track-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.ts-track-list li {
    position: relative;
    padding-left: 22px;
    color: var(--ts-gray);
    margin-bottom: 7px;
    line-height: 1.45;
    font-size: .9rem;
}

.ts-track-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--ts-primary);
    font-size: .75rem;
    position: absolute;
    left: 0;
    top: 4px;
}

.ts-track-section .track-note {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #d5deee;
    font-weight: 600;
    font-size: .88rem;
    color: var(--ts-dark);
}

.ts-track-grid > div:nth-child(2) .ts-track-card {
    border-top-color: #0d9ea7;
}

.ts-track-grid > div:nth-child(3) .ts-track-card {
    border-top-color: #1c9c5e;
}

.ts-track-grid > div:nth-child(4) .ts-track-card {
    border-top-color: #f18f01;
}

/* ── Citação Pensamento ───────────────────────────────────── */
.ts-thought-quote {
    position: relative;
    margin: 0;
    padding: 28px 26px;
    border-left: 4px solid var(--ts-primary);
    border-radius: 10px;
    background: #f8fbff;
}

.ts-thought-quote p {
    margin: 0;
    color: var(--ts-dark);
    font-size: 1.35rem;
    line-height: 1.45;
    font-weight: 700;
}

.ts-thought-quote cite {
    display: inline-block;
    margin-top: 12px;
    color: var(--ts-gray);
    font-style: normal;
    font-size: .92rem;
    font-weight: 600;
}

/* ── Card de Preço ─────────────────────────────────────────── */
.ts-pricing-card {
    background: var(--ts-white);
    border-radius: var(--ts-radius-xl);
    padding: 40px 30px;
    box-shadow: var(--ts-shadow);
    border: 2px solid transparent;
    text-align: center;
    transition: var(--ts-transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.ts-pricing-card.featured {
    border-color: var(--ts-primary);
    transform: scale(1.05);
}

.ts-pricing-card.featured::before {
    content: 'Mais Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--ts-primary);
    color: var(--ts-white);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.ts-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ts-shadow-xl);
}

.ts-pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.ts-pricing-card .price {
    font-family: var(--ts-font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--ts-primary);
    margin: 20px 0;
}

.ts-pricing-card .price small {
    font-size: .9rem;
    font-weight: 400;
    color: var(--ts-gray);
}

.ts-pricing-card .price sup {
    font-size: 1.2rem;
    top: -1.2em;
}

.ts-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.ts-pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--ts-gray-light);
    font-size: .95rem;
    color: var(--ts-dark);
}

.ts-pricing-card ul li i {
    color: var(--ts-success);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.ts-pricing-card ul li i.fa-times {
    color: var(--ts-danger);
}

/* ── Estatísticas / Contadores ──────────────────────────────── */
.ts-counter-box {
    text-align: center;
    padding: 30px 15px;
}

.ts-counter-box .counter-number {
    font-family: var(--ts-font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--ts-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.ts-counter-box p {
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Depoimentos / Testemunhos ──────────────────────────────── */
.ts-testimonial {
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    padding: 35px;
    box-shadow: var(--ts-shadow);
    position: relative;
}

.ts-testimonial::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: var(--ts-primary-bg);
    position: absolute;
    top: 20px;
    right: 25px;
}

.ts-testimonial .stars {
    color: var(--ts-warning);
    margin-bottom: 15px;
}

.ts-testimonial p {
    font-style: italic;
    color: var(--ts-gray);
    margin-bottom: 20px;
}

.ts-testimonial .author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ts-testimonial .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.ts-testimonial .author h6 {
    margin: 0;
    font-size: .95rem;
}

.ts-testimonial .author small {
    color: var(--ts-gray);
}

/* ── Service Items (Funções Detalhes) ──────────────────────── */
.ts-services-detail {
    background: var(--ts-light);
}

.ts-services-detail .ts-section-title {
    margin-bottom: 50px;
}

.service-item {
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    padding: 0;
    box-shadow: var(--ts-shadow-sm);
    border: 1px solid var(--ts-gray-light);
    transition: var(--ts-transition-slow);
    height: 100%;
    overflow: hidden;
    position: relative;
    cursor: default;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ts-primary) 0%, var(--ts-primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    z-index: 2;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--ts-shadow-lg);
    border-color: var(--ts-primary);
}

.service-item .service-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--ts-radius-lg) var(--ts-radius-lg) 0 0;
}

.service-item .service-img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.service-item:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-item .service-img-wrapper .service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(44,48,59,.7) 100%);
    opacity: 0;
    transition: opacity .4s ease;
}

.service-item:hover .service-img-wrapper .service-overlay {
    opacity: 1;
}

.service-item .service-body {
    padding: 25px 25px 30px;
}

.service-item .service-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--ts-radius);
    background: var(--ts-primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--ts-primary);
    margin-bottom: 15px;
    margin-top: -40px;
    position: relative;
    z-index: 3;
    transition: var(--ts-transition);
    box-shadow: var(--ts-shadow-sm);
}

.service-item:hover .service-icon {
    background: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-primary-dark) 100%);
    color: var(--ts-white);
    transform: rotateY(180deg);
}

.service-item h3 {
    font-family: var(--ts-font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ts-dark);
    margin-bottom: 12px;
    transition: color .3s ease;
}

.service-item:hover h3 {
    color: var(--ts-primary);
}

.service-item p {
    color: var(--ts-gray);
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.service-item p:last-child {
    margin-bottom: 0;
}

.service-item .service-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ts-font-primary);
    font-size: .85rem;
    font-weight: 700;
    color: var(--ts-primary);
    z-index: 3;
    transition: var(--ts-transition);
}

.service-item:hover .service-number {
    background: var(--ts-primary);
    color: var(--ts-white);
    transform: rotate(360deg);
}

/* Service item responsive */
@media (max-width: 767.98px) {
    .service-item .service-img-wrapper img {
        height: 180px;
    }
    .service-item .service-body {
        padding: 20px 20px 25px;
    }
}

/* Service item reveal animation */
.service-item.srv-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ── Video Showcase ────────────────────────────────────────── */
.ts-video-showcase {
    background: var(--ts-white);
    overflow: hidden;
}

.ts-video-wrapper {
    position: relative;
    border-radius: var(--ts-radius-xl);
    overflow: hidden;
    box-shadow: var(--ts-shadow-lg);
    background: var(--ts-dark);
}

.ts-video-wrapper .ts-video {
    width: 100%;
    display: block;
    border-radius: var(--ts-radius-xl);
}

.ts-video-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--ts-radius-xl);
    background: linear-gradient(135deg, var(--ts-primary), var(--ts-primary-dark), var(--ts-purple));
    z-index: -1;
    filter: blur(18px);
    opacity: .45;
    animation: videoGlow 4s ease-in-out infinite alternate;
}

@keyframes videoGlow {
    0%   { opacity: .3; transform: scale(1); }
    100% { opacity: .55; transform: scale(1.03); }
}

.ts-video-showcase h2 {
    font-size: 2rem;
    font-weight: 800;
}

.ts-video-showcase .text-ts-primary {
    color: var(--ts-primary);
}

.ts-video-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.ts-video-features li {
    padding: 8px 0;
    font-size: .95rem;
    color: var(--ts-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ts-video-features li i {
    color: var(--ts-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .ts-video-showcase .row {
        text-align: center;
    }
    .ts-video-features {
        display: inline-block;
        text-align: left;
    }
}

/* ── CTA Section ───────────────────────────────────────────── */
.ts-cta {
    background: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ts-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

.ts-cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

.ts-cta h2 {
    color: var(--ts-white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.ts-cta p {
    color: rgba(255,255,255,.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ── Footer ────────────────────────────────────────────────── */
.ts-footer {
    background: linear-gradient(180deg, var(--ts-dark) 0%, #1a1d25 100%);
    color: rgba(255,255,255,.7);
    padding-top: 70px;
}

.ts-footer h5 {
    color: var(--ts-white);
    font-family: var(--ts-font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.ts-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--ts-primary);
    border-radius: 3px;
}

.ts-footer p {
    font-size: .9rem;
    line-height: 1.8;
}

.ts-footer .footer-logo img {
    height: 45px;
    margin-bottom: 20px;
}

.ts-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ts-footer .footer-links li {
    margin-bottom: 10px;
}

.ts-footer .footer-links a {
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    transition: var(--ts-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ts-footer .footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .75rem;
    color: var(--ts-primary);
}

.ts-footer .footer-links a:hover {
    color: var(--ts-primary);
    padding-left: 5px;
}

.ts-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: .9rem;
}

.ts-footer .footer-contact li i {
    color: var(--ts-primary);
    margin-top: 3px;
    width: 18px;
    text-align: center;
}

.ts-footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.6);
    margin-right: 8px;
    transition: var(--ts-transition);
}

.ts-footer .footer-social a:hover {
    background: var(--ts-primary);
    color: var(--ts-white);
    transform: translateY(-3px);
}

.ts-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    margin-top: 50px;
    font-size: .85rem;
}

.ts-footer-bottom a {
    color: rgba(255,255,255,.5);
    margin: 0 10px;
}

.ts-footer-bottom a:hover {
    color: var(--ts-primary);
}

/* ── Page Header (Páginas internas) ────────────────────────── */
.ts-page-header {
    background: linear-gradient(135deg, var(--ts-dark) 0%, var(--ts-purple) 100%);
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ts-page-header::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36,175,184,.1) 0%, transparent 70%);
}

.ts-page-header h1 {
    color: var(--ts-white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.ts-page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.ts-page-header .breadcrumb-item a {
    color: rgba(255,255,255,.6);
}

.ts-page-header .breadcrumb-item.active {
    color: var(--ts-primary);
}

.ts-page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.3);
}

/* ── Error Pages ─────────────────────────────────────────── */
.ts-error-hero {
    min-height: calc(100vh - 280px);
    padding: 80px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(36,175,184,.16) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(45,6,55,.18) 0%, transparent 38%),
        linear-gradient(140deg, #f7fcfd 0%, #ffffff 55%, #f4f8f9 100%);
    display: flex;
    align-items: center;
}

.ts-error-shell {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(44,48,59,.08);
    border-radius: var(--ts-radius-xl);
    padding: 48px 28px;
    box-shadow: 0 18px 55px rgba(44,48,59,.12);
    backdrop-filter: blur(8px);
}

.ts-error-chip {
    display: inline-block;
    font-family: var(--ts-font-primary);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ts-primary-dark);
    background: rgba(36,175,184,.12);
    border: 1px solid rgba(36,175,184,.32);
    border-radius: 999px;
    padding: 8px 14px;
}

.ts-error-shell h1 {
    margin: 14px 0 4px;
    font-size: clamp(4.2rem, 11vw, 7.2rem);
    line-height: .94;
    letter-spacing: .04em;
    color: transparent;
    background: linear-gradient(120deg, var(--ts-primary), var(--ts-purple));
    -webkit-background-clip: text;
    background-clip: text;
}

.ts-error-shell h2 {
    margin-bottom: 14px;
    font-size: clamp(1.35rem, 3.4vw, 2.1rem);
    color: var(--ts-dark);
}

.ts-error-message {
    margin: 0 auto 8px;
    max-width: 680px;
    font-size: 1.06rem;
    color: #3e4454;
}

.ts-error-hint {
    margin: 0 auto;
    max-width: 620px;
    color: var(--ts-gray);
}

.ts-error-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-ts-secondary {
    background: #e8edf0;
    color: var(--ts-dark);
    border: 1px solid #d4dde2;
    border-radius: var(--ts-radius-full);
    padding: 12px 24px;
    font-weight: 600;
}

.btn-ts-secondary:hover {
    background: #dde5ea;
    color: var(--ts-dark);
    transform: translateY(-2px);
}

/* ── Formulários ──────────────────────────────────────────── */
.ts-form .form-control,
.ts-form .form-select {
    border: 2px solid var(--ts-gray-light);
    border-radius: var(--ts-radius);
    padding: 12px 18px;
    font-size: .95rem;
    transition: var(--ts-transition);
    background: var(--ts-white);
}

.ts-form .form-control:focus,
.ts-form .form-select:focus {
    border-color: var(--ts-primary);
    box-shadow: 0 0 0 .2rem rgba(36,175,184,.15);
}

.ts-form .form-label {
    font-weight: 600;
    font-size: .9rem;
    color: var(--ts-dark);
    margin-bottom: 6px;
}

.ts-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Bloco de contato (página contato) */
.ts-contact-sidebar .ts-contact-card {
    padding: 20px 22px;
    height: auto;
    min-height: 102px;
}

.ts-contact-sidebar .ts-contact-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 14px;
    align-items: start;
}

.ts-contact-sidebar .ts-contact-card .card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 18px;
    margin-bottom: 0;
    border-radius: 12px;
}

.ts-contact-sidebar .ts-contact-content {
    min-width: 0;
}

.ts-contact-sidebar .ts-contact-content h6 {
    margin-bottom: 6px;
    font-size: .98rem;
}

.ts-contact-sidebar .ts-contact-content p {
    font-size: .92rem;
    line-height: 1.55;
    margin-bottom: 0;
    overflow-wrap: anywhere;
}

.ts-contact-sidebar .ts-contact-content a {
    color: var(--ts-dark);
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.ts-contact-sidebar .ts-contact-content a:hover {
    color: var(--ts-primary-dark);
}

.ts-contact-sidebar .ts-contact-card small {
    display: inline-block;
    margin-top: 4px;
}

.ts-contact-sidebar .ts-contact-card:hover {
    transform: none;
}

.ts-contact-sidebar .ts-contact-card:hover .card-icon {
    transform: none;
}

/* Mapa (página contato) */
.ts-map-embed {
    position: relative;
    width: 100%;
    min-height: 360px;
    background: var(--ts-gray-light);
    border-top: 1px solid rgba(0,0,0,.06);
}

.ts-map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

/* ── WhatsApp Float Button ─────────────────────────────────── */
.ts-whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ts-white);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 9999;
    transition: var(--ts-transition);
    animation: pulse 2s infinite;
}

.ts-whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--ts-white);
    box-shadow: 0 6px 30px rgba(37,211,102,.5);
}

/* Evita conflito visual entre badge do reCAPTCHA v3 e botões flutuantes */
.grecaptcha-badge {
    right: 25px !important;
    left: auto !important;
    bottom: 96px !important;
    z-index: 9997;
    width: 70px !important;
    overflow: hidden !important;
    transition: width .2s ease !important;
}

.grecaptcha-badge:hover,
.grecaptcha-badge:focus-within {
    width: 256px !important;
}

/* ── Back to Top ───────────────────────────────────────────── */
.ts-back-top {
    position: fixed;
    bottom: 25px;
    right: 95px;
    width: 45px;
    height: 45px;
    background: var(--ts-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ts-white);
    font-size: 18px;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--ts-transition);
    cursor: pointer;
}

.ts-back-top.show {
    opacity: 1;
    visibility: visible;
}

.ts-back-top:hover {
    background: var(--ts-primary-dark);
    transform: translateY(-3px);
    color: var(--ts-white);
}

/* ── Features List ─────────────────────────────────────────── */
.ts-feature-list {
    list-style: none;
    padding: 0;
}

.ts-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: .95rem;
}

.ts-feature-list li i {
    color: var(--ts-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── Dynamic Services (Página Serviços) ───────────────────── */
.ts-services-dynamic {
    background: linear-gradient(180deg, var(--ts-white) 0%, var(--ts-light) 100%);
}

.ts-service-media-placeholder {
    background: var(--ts-primary-bg);
    border-radius: 20px;
    border: 2px dashed rgba(36,175,184,.55);
    min-height: 270px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: var(--ts-transition);
}

.ts-service-media-placeholder i {
    font-size: 78px;
    color: var(--ts-primary);
    opacity: .5;
    margin-bottom: 18px;
}

.ts-service-media-placeholder p {
    margin: 0;
    color: var(--ts-gray);
    font-size: .92rem;
    max-width: 310px;
}

.ts-service-media-placeholder:hover {
    transform: translateY(-6px);
    box-shadow: var(--ts-shadow);
    border-color: var(--ts-primary);
}

.ts-service-copy h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

/* ── Manuais e Landing Pages ─────────────────────────────── */
.ts-manual-hero {
    background: linear-gradient(145deg, #1d2430 0%, #2d3f58 100%);
    color: #fff;
    border-radius: var(--ts-radius-lg);
    padding: 34px;
}

.ts-manual-hero h2,
.ts-manual-hero p,
.ts-manual-hero li {
    color: #fff;
}

.ts-manual-list {
    margin: 0;
    padding-left: 18px;
}

.ts-manual-list li {
    margin-bottom: 8px;
}

.ts-lp-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--ts-radius-xl);
    padding: 42px 36px;
    min-height: 360px;
    color: #fff;
}

.ts-lp-hero h2,
.ts-lp-hero p,
.ts-lp-hero li {
    color: #fff;
}

.ts-lp-hero .ts-card h4,
.ts-lp-hero .ts-card p,
.ts-lp-hero .ts-card li {
    color: var(--ts-dark);
}

.ts-lp-hero > .ts-card {
    height: auto;
}

.ts-lp-hero .text-dark {
    color: var(--ts-dark) !important;
}

.ts-lp-theme-video { background: linear-gradient(130deg, #121d2f 0%, #244f73 100%); }
.ts-lp-theme-veicular { background: linear-gradient(130deg, #20321f 0%, #2f5f3f 100%); }
.ts-lp-theme-frotas { background: linear-gradient(130deg, #30201e 0%, #6a3f37 100%); }
.ts-lp-theme-gestao { background: linear-gradient(130deg, #261f34 0%, #4f3d70 100%); }
.ts-lp-theme-seguros { background: linear-gradient(130deg, #15344e 0%, #1d6b83 100%); }

.ts-urgency-card {
    background: #fff;
    border: 2px solid rgba(231, 76, 60, .15);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--ts-shadow-sm);
}

.ts-urgency-card .ts-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.ts-urgency-card .ts-time-box {
    background: #f7fbfc;
    border-radius: 10px;
    text-align: center;
    padding: 10px 6px;
}

.ts-urgency-card .ts-time-box strong {
    display: block;
    font-size: 1.1rem;
    color: var(--ts-dark);
}

.ts-urgency-card .ts-time-box span {
    font-size: .72rem;
    color: var(--ts-gray);
    text-transform: uppercase;
    letter-spacing: .4px;
}

.ts-opportunity-inline {
    margin-top: 10px;
    font-size: .9rem;
    color: var(--ts-danger);
    font-weight: 700;
}

.ts-lead-card {
    padding: 26px 24px;
    border-top: 4px solid var(--ts-primary);
}

.ts-lp-subtitle {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .2px;
    color: rgba(255,255,255,.92);
}

.ts-lp-proof-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(36,175,184,.2);
    padding: 20px;
    box-shadow: var(--ts-shadow-sm);
    height: 100%;
}

.ts-lp-proof-card h4 {
    margin-bottom: 10px;
}

.ts-lp-proof-card p {
    margin-bottom: 0;
    color: var(--ts-gray);
}

.ts-lp-benefit-item {
    background: #fff;
    border: 1px solid var(--ts-gray-light);
    border-radius: 12px;
    padding: 16px;
    height: 100%;
}

.ts-lp-benefit-item h5 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.ts-lp-benefit-item p {
    margin: 0;
    font-size: .92rem;
    color: var(--ts-gray);
}

.ts-lp-final-cta {
    margin-top: 36px;
    padding: 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--ts-dark) 0%, var(--ts-purple) 100%);
    color: #fff;
}

.ts-lp-final-cta h3,
.ts-lp-final-cta p {
    color: #fff;
}

/* ── Pagina Apresentacao ─────────────────────────────────── */
.ts-apresentacao-section {
    background: linear-gradient(180deg, #f6fbfc 0%, #ffffff 70%);
}

.ts-apresentacao-slider-wrap {
    position: relative;
    border-radius: var(--ts-radius-xl);
    padding: 14px;
    background: #fff;
    box-shadow: var(--ts-shadow-lg);
    border: 1px solid rgba(36, 175, 184, .2);
}

.ts-apresentacao-slide {
    border-radius: 14px;
    overflow: hidden;
    background: #f2f7f9;
}

.ts-apresentacao-slide img {
    width: 100%;
    height: min(68vh, 760px);
    object-fit: contain;
    display: block;
    background: #fff;
}

.ts-apresentacao-prev,
.ts-apresentacao-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(44, 48, 59, .85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--ts-transition);
}

.ts-apresentacao-prev:hover,
.ts-apresentacao-next:hover {
    background: var(--ts-primary-dark);
}

.ts-apresentacao-prev {
    left: 18px;
}

.ts-apresentacao-next {
    right: 18px;
}

.ts-apresentacao-pagination {
    margin-top: 14px;
    position: relative !important;
}

.ts-apresentacao-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(44, 48, 59, .3);
    opacity: 1;
}

.ts-apresentacao-pagination .swiper-pagination-bullet-active {
    background: var(--ts-primary);
}

/* ── Página Rastrear ─────────────────────────────────────── */
.ts-rastrear-section {
    background: linear-gradient(180deg, #f8fcfd 0%, #ffffff 70%);
}

.ts-rastrear-contact-card {
    padding: 34px 30px;
}

.ts-rastrear-contact-card .badge-label {
    display: inline-flex;
    margin-bottom: 14px;
}

.ts-rastrear-contact-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.ts-rastrear-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    height: 100%;
    padding: 14px;
    border: 1px solid var(--ts-gray-light);
    border-radius: 12px;
    background: #fff;
}

.ts-rastrear-info-item i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ts-primary-dark);
    background: var(--ts-primary-bg);
    margin-top: 1px;
}

.ts-rastrear-info-item h6 {
    margin: 0 0 4px;
    font-size: .92rem;
}

.ts-rastrear-info-item p {
    margin: 0;
    color: var(--ts-gray);
    font-size: .9rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.ts-rastrear-info-item p a {
    color: var(--ts-dark);
    font-weight: 500;
}

.ts-rastrear-info-item p a:hover {
    color: var(--ts-primary-dark);
}

.ts-rastrear-login-wrap {
    background: linear-gradient(135deg, #1f5f68 0%, #2a8b96 100%);
    border-radius: var(--ts-radius-lg);
    box-shadow: var(--ts-shadow-lg);
}

.ts-rastrear-logo-wrap {
    background: #fff;
    text-align: center;
    padding: 16px;
}

@media (max-width: 767.98px) {
    .ts-rastrear-contact-card {
        padding: 26px 20px;
    }

    .ts-rastrear-contact-card h2 {
        font-size: 1.45rem;
    }

    .ts-rastrear-login-wrap {
        padding: 24px 18px !important;
    }
}

.ts-service-copy .text-muted {
    color: var(--ts-gray) !important;
    line-height: 1.75;
}

.ts-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ts-service-tags span {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(36,175,184,.25);
    background: rgba(36,175,184,.1);
    color: var(--ts-primary-dark);
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.ts-services-support-note {
    margin-top: 10px;
    padding: 14px 18px;
    border-radius: var(--ts-radius);
    background: var(--ts-white);
    border: 1px solid var(--ts-gray-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ts-services-support-note i {
    color: var(--ts-primary);
    margin-top: 4px;
}

.ts-services-support-note p {
    margin: 0;
    color: var(--ts-gray);
    font-size: .93rem;
}

@media (max-width: 991.98px) {
    .ts-service-copy h3 {
        font-size: 1.5rem;
    }

    .ts-service-media-placeholder {
        min-height: 230px;
    }
}

@media (max-width: 575.98px) {
    .ts-service-media-placeholder {
        min-height: 190px;
        padding: 25px;
    }

    .ts-service-media-placeholder i {
        font-size: 58px;
    }

    .ts-service-copy h3 {
        font-size: 1.3rem;
    }
}

/* ── Animações ─────────────────────────────────────────────── */
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-20px); }
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0); }
    25%      { transform: translate(30px, -30px); }
    50%      { transform: translate(-20px, 20px); }
    75%      { transform: translate(20px, 10px); }
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    70%  { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--ts-transition-slow);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsivo ────────────────────────────────────────────── */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .ts-navbar .navbar-brand {
        display: flex;
        align-items: center;
        padding: 6px 0;
    }

    .ts-navbar .navbar-brand img {
        height: 42px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
}

@media (max-width: 991.98px) {
    .ts-topbar {
        text-align: center;
    }
    .ts-topbar .topbar-info,
    .ts-topbar .topbar-social {
        justify-content: center !important;
    }
    .ts-topbar .topbar-info span {
        display: block;
        margin: 3px 0;
    }
    .ts-navbar .nav-link {
        padding: 12px 15px !important;
    }
    .ts-navbar .nav-link::after {
        display: none;
    }
    .ts-hero h1 {
        font-size: 2.2rem;
    }
    .ts-section-title h2 {
        font-size: 1.8rem;
    }
    .ts-pricing-card.featured {
        transform: scale(1);
    }
    .ts-pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767.98px) {
    .ts-hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    .ts-hero h1 {
        font-size: 1.8rem;
    }
    .ts-section {
        padding: 60px 0;
    }
    .ts-section-title {
        margin-bottom: 40px;
    }
    .ts-mvv-section .ts-card {
        padding: 32px 24px;
    }
    .ts-mvv-section .mvv-values-list p + p {
        margin-top: 8px;
    }
    .ts-track-section .ts-section-title {
        margin-bottom: 40px;
    }
    .ts-track-card {
        padding: 24px 18px;
    }
    .ts-track-card h4 {
        font-size: 1rem;
    }
    .ts-thought-quote {
        padding: 22px 20px;
    }
    .ts-thought-quote p {
        font-size: 1.1rem;
    }
    .ts-track-list li {
        margin-bottom: 6px;
    }
    .ts-counter-box .counter-number {
        font-size: 2.2rem;
    }
    .ts-page-header h1 {
        font-size: 1.6rem;
    }

    .ts-error-hero {
        padding: 52px 0;
        min-height: calc(100vh - 220px);
    }

    .ts-error-shell {
        padding: 34px 18px;
    }

    .ts-error-actions {
        gap: 10px;
    }

    .ts-error-actions .btn {
        width: 100%;
    }

    .ts-contact-sidebar .ts-contact-card {
        padding: 18px;
        min-height: 94px;
    }

    .ts-contact-sidebar .ts-contact-item {
        grid-template-columns: 44px 1fr;
        column-gap: 12px;
    }

    .ts-contact-sidebar .ts-contact-card .card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 16px;
    }

    .ts-map-embed,
    .ts-map-embed iframe {
        min-height: 300px;
    }
}

@media (max-width: 575.98px) {
    .ts-topbar .topbar-social {
        margin-top: 8px;
    }
    .btn-ts-primary,
    .btn-ts-outline,
    .btn-ts-dark {
        padding: 12px 25px;
        font-size: 14px;
    }

    .grecaptcha-badge {
        right: 10px !important;
        left: auto !important;
        bottom: 88px !important;
        transform: scale(.88);
        transform-origin: right bottom;
    }

    .grecaptcha-badge:hover,
    .grecaptcha-badge:focus-within {
        width: 230px !important;
    }
}

/* ── Loading / Preloader ───────────────────────────────────── */
.ts-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ts-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity .5s ease;
}

.ts-preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

.ts-preloader .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--ts-gray-light);
    border-top-color: var(--ts-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── lp-frotas  ─────────────────────────────── */

.ts-simulator {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.ts-benefit-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}