/* ===================================
   VOLMASTER TECH - Customizações de Tema
   Cores: Amarelo #FDB915 + Preto
   =================================== */

:root {
    --primary-yellow: #FDB915;
    --secondary-yellow: #FDB915;
    --dark-bg: #000000;
    --darker-bg: #000000;
    --hero-bg: #000000;
    --white: #ffffff;
    --text-gray: #a0a0a0;
}

/* Reduzir espaçamentos gerais para página mais compacta */
.spad {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.spad-2 {
    padding-top: 40px !important;
    padding-bottom: 50px !important;
}

/* Reduzir margens de parágrafos */
p {
    margin-bottom: 15px;
}

.mb-3 {
    margin-bottom: 15px !important;
}

.mb-4 {
    margin-bottom: 20px !important;
}

/* Reduzir espaçamentos de rows */
.row {
    margin-bottom: 0;
}

/* Compactar cards de serviços */
.cs-item {
    padding: 25px 20px;
    margin-bottom: 25px;
}

/* Compactar pricing cards - VISUAL LIMPO E LEGÍVEL */
.ps-item {
    margin-bottom: 25px;
    /* Remove o efeito torto (skew) */
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    
    /* Visual simples, limpo e legível */
    background: #0d0d0d;
    border: 2px solid rgba(253, 185, 21, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.ps-item > * {
    /* Remove skew dos elementos internos */
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
}

.ps-item:hover {
    /* Efeito simples de elevação */
    transform: translateY(-8px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(253, 185, 21, 0.2);
    border-color: rgba(253, 185, 21, 0.6);
}

.ps-item h3 {
    padding: 25px 20px;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #1a1a1a;
    color: #FDB915;
    margin: 0;
    text-align: center;
    border-bottom: 3px solid #FDB915;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.ps-item:hover h3 {
    background: #242424;
    color: #ffcf5c;
    border-bottom-color: #ffcf5c;
}

.ps-item ul {
    padding: 20px 20px;
}

.ps-item ul li {
    padding: 10px 0;
}

/* Imagens dos cursos online */
.curso-img {
    width: 100%;
    overflow: hidden;
    height: 220px;
    position: relative;
    margin: 0;
}

.curso-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.ps-item:hover .curso-img img {
    transform: scale(1.05);
}

/* === CARD DE LANÇAMENTO - TECHTOOL 2 === */

/* Card de lançamento com efeitos especiais */
.ps-item-lancamento {
    position: relative;
    border: 3px solid var(--primary-yellow) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 30px rgba(253, 185, 21, 0.4);
    animation: pulseGlow 2s ease-in-out infinite;
    overflow: visible !important;
}

.ps-item-lancamento:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 45px rgba(253, 185, 21, 0.6);
    transform: translateY(-10px) !important;
}

/* Ribbon "NOVO" no canto superior direito */
.ribbon-novo {
    position: absolute;
    top: 15px;
    right: -5px;
    z-index: 10;
}

.ribbon-novo span {
    display: block;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 68, 68, 0.5),
                0 0 20px rgba(255, 68, 68, 0.3);
    position: relative;
    animation: pulse 1.5s ease-in-out infinite;
}

.ribbon-novo span::before {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent #8b0000 transparent transparent;
}

.ribbon-novo i {
    animation: starRotate 2s linear infinite;
    display: inline-block;
}

/* Banner de lançamento exclusivo */
.lancamento-badge {
    background: linear-gradient(135deg, #FDB915 0%, #ffa500 50%, #FDB915 100%);
    background-size: 200% 100%;
    color: #000;
    padding: 12px 15px;
    text-align: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

.lancamento-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        transparent 40%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 60%,
        transparent
    );
    animation: shine 3s infinite;
}

.lancamento-badge i {
    margin: 0 5px;
    animation: rocketBounce 1s ease-in-out infinite;
}

/* Badge Premium */
.badge-premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    color: var(--primary-yellow) !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    letter-spacing: 1px;
    border: 2px solid var(--primary-yellow) !important;
    box-shadow: 0 4px 15px rgba(253, 185, 21, 0.3);
    display: inline-block;
}

.badge-premium i {
    color: #ffd700;
    margin-right: 5px;
}

/* Animações */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 30px rgba(253, 185, 21, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 40px rgba(253, 185, 21, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes rocketBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes starRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* === FIM CARD DE LANÇAMENTO === */

/* Background e cores gerais */
body {
    background-color: #000000;
    color: #ffffff;
}

/* Header customizado */
.header-section {
    background: #000000;
    border-bottom: 2px solid var(--primary-yellow);
    padding-top: 35px !important;
}

.header-section .nav-menu ul li a {
    color: #ffffff;
}

.header-section .nav-menu ul li.active a,
.header-section .nav-menu ul li:hover a {
    color: var(--primary-yellow);
}

.logo {
    filter: brightness(1.2);
}

/* Botões primários com amarelo Volmaster */
.primary-btn {
    background: var(--primary-yellow);
    color: #000000;
    font-weight: 700;
    border: 2px solid var(--primary-yellow);
    transition: all 0.3s;
}

.primary-btn:hover {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

/* Hero section */
.hs-item {
    position: relative;
    height: 1040px;
    display: flex;
    align-items: center;
    padding-top: 355px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-section .hi-text {
    margin-left: -80px;
}

.hero-section .hi-text h1 {
    color: #ffffff;
    line-height: 1.2 !important;
    margin-bottom: 18px !important;
    font-size: 42px !important;
}

.hero-section .hi-text h1 strong {
    color: var(--primary-yellow);
    font-weight: 700;
}

.hero-section .hi-text span {
    color: var(--primary-yellow);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 12px !important;
    font-size: 13px !important;
}

/* Botões do Hero */
.hero-section .primary-btn {
    margin-right: 12px !important;
    padding: 14px 30px !important;
    font-size: 14px !important;
}

.hero-section .primary-btn,
.hero-section .btn-normal {
    margin-top: 10px;
}

/* Hero Slider Navigation */
.hs-slider.owl-carousel .owl-nav button.owl-prev,
.hs-slider.owl-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: rgba(253, 185, 21, 0.9) !important;
    color: #000000 !important;
    font-size: 24px;
    line-height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    border: 2px solid var(--primary-yellow);
    z-index: 10;
}

.hs-slider.owl-carousel .owl-nav button.owl-prev:hover,
.hs-slider.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--primary-yellow) !important;
    box-shadow: 0 0 20px rgba(253, 185, 21, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.hs-slider.owl-carousel .owl-nav button.owl-prev {
    left: 30px;
}

.hs-slider.owl-carousel .owl-nav button.owl-next {
    right: 30px;
}

.hs-slider.owl-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.hs-slider.owl-carousel .owl-dots .owl-dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.hs-slider.owl-carousel .owl-dots .owl-dot:hover {
    background: rgba(253, 185, 21, 0.6);
    border-color: var(--primary-yellow);
}

.hs-slider.owl-carousel .owl-dots .owl-dot.active {
    width: 40px;
    border-radius: 10px;
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

/* Sections com background escuro */
.choseus-section,
.classes-section,
.pricing-section,
.team-section {
    background: #000000;
}

/* Títulos de seção */
.section-title {
    margin-bottom: 35px;
}

.section-title h2 {
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 13px;
}

.section-title p {
    margin-top: 15px;
    margin-bottom: 0;
}

/* Cards de serviços/features */
.cs-item {
    background: #000000;
    border: 1px solid #333;
    transition: all 0.3s;
}

.cs-item:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(253, 185, 21, 0.3);
}

.cs-item h4 {
    color: #ffffff;
}

.cs-item span[class*="flaticon"] {
    color: var(--primary-yellow);
}

/* Classes/Cursos items */
.class-item {
    border: 1px solid #333;
    background: #000000;
}

.class-item:hover {
    border-color: var(--primary-yellow);
}

.class-item .ci-text {
    background: #000000;
}

.class-item .ci-text span {
    color: var(--primary-yellow);
}

.class-item .ci-text h4,
.class-item .ci-text h5 {
    color: #ffffff;
}

.class-item .ci-text a {
    background: var(--primary-yellow);
    color: #000000;
}

.class-item .ci-text a:hover {
    background: #ffffff;
}

/* Banner section */
.banner-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/banner-bg.jpg');
    background-size: cover;
    background-position: center;
}

.banner-section .bs-text h2 {
    color: #ffffff;
}

/* Pricing cards */
.ps-item {
    background: #000000;
    border: 2px solid #333;
    transition: all 0.3s;
    overflow: hidden;
    border-radius: 8px;
}

.ps-item:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(253, 185, 21, 0.3);
    transform: translateY(-10px);
}

/* Estilo dos títulos agora no topo do arquivo (linha 56) */

.ps-item .pi-price h2 {
    color: var(--primary-yellow);
}

.ps-item .pi-price span {
    color: #ffffff;
}

.ps-item ul li {
    color: #a0a0a0;
    border-bottom: 1px solid #333;
}

.pricing-btn {
    background: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
}

.pricing-btn:hover {
    background: var(--primary-yellow);
    color: #000000;
}

.banner-section .bt-tips {
    color: var(--primary-yellow);
}

/* Gallery */
.gallery-section {
    background: #000000;
}

.gs-item:hover {
    transform: scale(1.05);
}

.thumb-icon {
    background: var(--primary-yellow);
    color: #000000;
}

.thumb-icon:hover {
    background: #ffffff;
}

/* Team section */
.ts-item .ts_text {
    background: rgba(0, 0, 0, 0.9);
}

.ts-item .ts_text h4 {
    color: #ffffff;
}

.ts-item .ts_text span {
    color: var(--primary-yellow);
}

/* Get in touch */
.gettouch-section {
    background: #000000;
    border-top: 3px solid var(--primary-yellow);
    border-bottom: 3px solid var(--primary-yellow);
}

.gt-text i {
    color: var(--primary-yellow);
}

.gt-text p,
.gt-text ul li {
    color: #ffffff;
}

/* Footer */
.footer-section {
    background: #000000;
    border-top: 3px solid var(--primary-yellow);
}

.footer-section h4 {
    color: #ffffff;
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 10px;
}

.footer-section p,
.footer-section ul li a {
    color: #a0a0a0;
}

.footer-section ul li a:hover {
    color: var(--primary-yellow);
}

/* Ícones de Redes Sociais - Estilo Aprimorado e Unificado */
.canvas-social a,
.to-social a,
.fa-social a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    font-size: 20px !important;
    margin: 0 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Mobile menu */
.offcanvas-menu-wrapper {
    background: #000000;
}

.canvas-menu li a {
    color: #ffffff !important;
}

.canvas-menu li a:hover {
    color: var(--primary-yellow) !important;
}

/* Efeitos de fundo dos botões sociais */
.canvas-social a::before,
.to-social a::before,
.fa-social a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

/* Facebook */
.canvas-social a[href*="facebook"]::before,
.to-social a[href*="facebook"]::before,
.fa-social a[href*="facebook"]::before {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
}

.canvas-social a[href*="facebook"]:hover::before,
.to-social a[href*="facebook"]:hover::before,
.fa-social a[href*="facebook"]:hover::before {
    transform: scale(1);
}

.canvas-social a[href*="facebook"]:hover,
.to-social a[href*="facebook"]:hover,
.fa-social a[href*="facebook"]:hover {
    border-color: #1877f2;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

/* Instagram */
.canvas-social a[href*="instagram"]::before,
.to-social a[href*="instagram"]::before,
.fa-social a[href*="instagram"]::before {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.canvas-social a[href*="instagram"]:hover::before,
.to-social a[href*="instagram"]:hover::before,
.fa-social a[href*="instagram"]:hover::before {
    transform: scale(1);
}

.canvas-social a[href*="instagram"]:hover,
.to-social a[href*="instagram"]:hover,
.fa-social a[href*="instagram"]:hover {
    border-color: #e1306c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* YouTube */
.canvas-social a[href*="youtube"]::before,
.to-social a[href*="youtube"]::before,
.fa-social a[href*="youtube"]::before {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.canvas-social a[href*="youtube"]:hover::before,
.to-social a[href*="youtube"]:hover::before,
.fa-social a[href*="youtube"]:hover::before {
    transform: scale(1);
}

.canvas-social a[href*="youtube"]:hover,
.to-social a[href*="youtube"]:hover,
.fa-social a[href*="youtube"]:hover {
    border-color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* Email */
.canvas-social a[href*="mailto"]::before,
.to-social a[href*="mailto"]::before,
.fa-social a[href*="mailto"]::before {
    background: linear-gradient(135deg, #FDB915, #ffa500);
}

.canvas-social a[href*="mailto"]:hover::before,
.to-social a[href*="mailto"]:hover::before,
.fa-social a[href*="mailto"]:hover::before {
    transform: scale(1);
}

.canvas-social a[href*="mailto"]:hover,
.to-social a[href*="mailto"]:hover,
.fa-social a[href*="mailto"]:hover {
    border-color: #FDB915;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 185, 21, 0.4);
}

/* Animação de pulso sutil */
@keyframes social-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.canvas-social a:hover i,
.to-social a:hover i,
.fa-social a:hover i {
    animation: social-pulse 0.6s ease-in-out;
}

/* Ajustes de containers de redes sociais */
.top-option .to-social {
    display: inline-flex !important;
    align-items: center;
    padding-top: 5px;
}

.canvas-social {
    text-align: center;
    padding: 30px 0 !important;
}

.offcanvas-menu-wrapper .canvas-social a {
    margin: 0 10px !important;
}

.fa-social {
    margin-top: 20px;
    display: flex;
    gap: 0;
}

/* Preloader */
#preloder {
    background: #000000;
}

.loader {
    border-top-color: var(--primary-yellow);
}

/*ScrollBar removido - ocultar barra de scroll */
::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

html {
    overflow-x: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

body {
    overflow-x: hidden;
}

/* Owl Carousel customizado */
.owl-theme .owl-dots .owl-dot span {
    background: #000000;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-yellow);
}

/* Exceção: ts_slider usa ícones em vez de spans */
.ts_slider.owl-theme .owl-dots .owl-dot span {
    display: none !important;
}

.ts_slider.owl-theme .owl-dots .owl-dot {
    background: transparent !important;
}

.owl-theme .owl-nav [class*='owl-'] {
    background: var(--primary-yellow);
    color: #000000;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #ffffff;
    color: #000000;
}

/* Animações */
@keyframes pulse-yellow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(253, 185, 21, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(253, 185, 21, 0);
    }
}

.primary-btn {
    animation: pulse-yellow 2s infinite;
}

.primary-btn:hover {
    animation: none;
}

/* Responsivo */
@media (max-width: 768px) {
    /* Header mobile */
    .header-section {
        background: #000000 !important;
        padding-top: 15px !important;
        padding-bottom: 10px !important;
    }
    
    .logo {
        padding: 8px 0 !important;
    }
    
    .logo img {
        max-height: 45px !important;
    }
    
    .canvas-open {
        color: var(--primary-yellow) !important;
        font-size: 22px !important;
        top: 30px !important;
        right: 15px !important;
    }
    
    /* Classes Section Mobile (EAD/Online) */
    .class-item {
        margin-bottom: 20px !important;
    }
    
    .class-item .ci-pic {
        height: auto !important;
    }
    
    .class-item .ci-pic img {
        width: 100% !important;
        height: auto !important;
    }
    
    .class-item .ci-text {
        padding: 20px 15px !important;
    }
    
    .class-item .ci-text span {
        font-size: 10px !important;
        margin-bottom: 4px !important;
        display: block;
    }
    
    .class-item .ci-text h5 {
        font-size: 16px !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
    }
    
    .class-item .ci-text p {
        font-size: 12px !important;
        line-height: 1.4 !important;
        margin-bottom: 0 !important;
    }
    
    /* Banner Section Mobile (NOVO NA ÁREA? / OU PROFISSIONAL?) */
    .banner-section {
        padding: 30px 0 !important;
    }
    
    .banner-section .row {
        gap: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .banner-section .col-md-5 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .banner-section .bs-text {
        padding: 20px 15px !important;
        margin-bottom: 15px;
    }
    
    .banner-section .bs-text div[style*="margin-bottom"] {
        margin-bottom: 20px !important;
    }
    
    .banner-section .bs-text img {
        max-width: 100% !important;
        height: auto !important;
        min-height: 150px !important;
        max-height: 200px !important;
        object-fit: cover;
    }
    
    .banner-section .bs-text h2 {
        font-size: 24px !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
    }
    
    .banner-section .bs-text .bt-tips,
    .banner-section .bs-text div[style*="font-size: 17px"] {
        font-size: 13px !important;
        margin-bottom: 15px !important;
        line-height: 1.4 !important;
    }
    
    .banner-section .bs-text .primary-btn {
        font-size: 12px !important;
        padding: 11px 25px !important;
    }
    
    /* Pricing/Platform Section Mobile (PLATAFORMA ON-LINE) */
    .pricing-section {
        padding: 30px 0 !important;
    }
    
    .pricing-section .section-title span {
        font-size: 10px !important;
        margin-bottom: 6px !important;
        display: block;
    }
    
    .pricing-section .section-title h2 {
        font-size: 20px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    
    .pricing-section .section-title h2 span {
        font-size: 20px !important;
        display: inline !important;
    }
    
    .pricing-section p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }
    
    .pricing-section h4 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }
    
    .pricing-section ul li {
        font-size: 13px !important;
        margin-bottom: 8px !important;
        line-height: 1.4 !important;
    }
    
    .pricing-section .col-md-6 {
        margin-bottom: 20px !important;
    }
    
    .pricing-section img {
        margin-top: 25px !important;
        margin-bottom: 15px !important;
    }
    
    /* Garantir ordem correta de elementos no mobile */
    .pricing-section .align-items-center {
        flex-direction: column !important;
    }
    
    /* Ícones circulares Mobile */
    .pricing-section div[style*="width: 120px"],
    .pricing-section div[style*="width: 120px; height: 120px"] {
        width: 80px !important;
        height: 80px !important;
    }
    
    .pricing-section div[style*="width: 120px"] i,
    .pricing-section .fas,
    .pricing-section .fa {
        font-size: 35px !important;
    }
    
    /* Centralização de ícones no mobile */
    .pricing-section .text-center {
        margin-bottom: 12px !important;
    }
    
    .pricing-section .text-center .mb-4 {
        margin-bottom: 12px !important;
    }
    
    .pricing-section .mb-5 {
        margin-bottom: 20px !important;
    }
    
    /* Botões da pricing section */
    .pricing-section .primary-btn {
        font-size: 11px !important;
        padding: 10px 20px !important;
        margin-top: 10px !important;
    }
    
    /* Ajustes de Row no mobile */
    .pricing-section .row {
        margin-top: 20px !important;
    }
    
    .pricing-section .mb-5 {
        margin-bottom: 30px !important;
    }
    
    /* Prevenir overflow e texto quebrado */
    .pricing-section *,
    .banner-section * {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Garantir espaçamento adequado entre seções */
    .class-section,
    .banner-section,
    .pricing-section {
        overflow-x: hidden !important;
    }
    
    /* Hero Section Mobile */
    .hs-slider .hs-item,
    .hero-section .hs-item,
    .hs-item {
        height: auto !important;
        padding: 110px 0 50px !important;
        align-items: center !important;
        min-height: auto !important;
    }
    
    .hs-slider .hero-section .hi-text,
    .hero-section .hi-text,
    .hs-item .hi-text {
        margin-left: 0 !important;
        padding: 0 20px !important;
        text-align: center !important;
    }
    
    .hs-slider .hero-section .hi-text span,
    .hero-section .hi-text span,
    .hs-item .hi-text span {
        font-size: 9px !important;
        display: block;
        margin-bottom: 6px !important;
        letter-spacing: 1px;
    }
    
    .hero-section .hi-text h1,
    .hs-slider .hs-item .hi-text h1,
    .hs-item .hi-text h1 {
        font-size: 19px !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }
    
    .hero-section .hi-text h1 strong,
    .hs-slider .hs-item .hi-text h1 strong,
    .hs-item .hi-text h1 strong {
        display: inline !important;
        font-size: 19px !important;
        margin-top: 0;
    }
    
    /* Botões do Hero Mobile */
    .hero-section .primary-btn,
    .hero-section .btn-normal,
    .hs-item .primary-btn,
    .hs-item .btn-normal {
        display: inline-block !important;
        width: auto !important;
        max-width: none !important;
        margin: 4px 6px !important;
        padding: 8px 16px !important;
        font-size: 9px !important;
        text-align: center;
        white-space: nowrap;
        font-weight: 600 !important;
    }
    
    /* Setas de navegação do Hero */
    .hs-slider.owl-carousel .owl-nav button.owl-prev,
    .hs-slider.owl-carousel .owl-nav button.owl-next {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
        line-height: 40px !important;
        opacity: 0.8 !important;
    }
    
    .hs-slider.owl-carousel .owl-nav button.owl-prev {
        left: 5px !important;
    }
    
    .hs-slider.owl-carousel .owl-nav button.owl-next {
        right: 5px !important;
    }
    
    /* Dots do Hero Mobile */
    .hs-slider.owl-carousel .owl-dots {
        bottom: 25px !important;
    }
    
    .hs-slider.owl-carousel .owl-dots .owl-dot {
        width: 8px !important;
        height: 8px !important;
    }
    
    .hs-slider.owl-carousel .owl-dots .owl-dot.active {
        width: 25px !important;
    }
    
    /* Seções Mobile */
    .section-title {
        margin-bottom: 25px !important;
    }
    
    .section-title h2 {
        font-size: 26px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }
    
    .section-title span {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }
    
    .section-title p {
        margin-top: 10px !important;
        font-size: 14px !important;
    }
    
    /* Cards de Cursos Mobile */
    .ps-item {
        margin-bottom: 20px !important;
    }
    
    .ps-item h3 {
        font-size: 20px !important;
        padding: 20px 15px !important;
        letter-spacing: 0.5px !important;
    }
    
    .ps-item ul {
        padding: 18px 15px !important;
    }
    
    .ps-item ul li {
        font-size: 13px !important;
        padding: 8px 0 8px 10px !important;
    }
    
    /* Card de Lançamento Mobile */
    .ribbon-novo {
        top: 10px !important;
        right: -5px !important;
    }
    
    .ribbon-novo span {
        font-size: 9px !important;
        padding: 5px 15px !important;
        letter-spacing: 0.5px !important;
    }
    
    .lancamento-badge {
        font-size: 10px !important;
        padding: 10px 10px !important;
        letter-spacing: 1px !important;
    }
    
    .badge-premium {
        font-size: 10px !important;
        padding: 6px 15px !important;
    }
    
    .ps-item-lancamento {
        border-width: 2px !important;
    }
    
    /* Reduzir margens gerais mobile */
    p {
        margin-bottom: 12px !important;
    }
    
    .mb-3, .mb-4 {
        margin-bottom: 15px !important;
    }
    
    /* Botão WhatsApp Mobile */
    .whatsapp-float {
        bottom: 20px !important;
        right: 15px !important;
        width: 55px !important;
        height: 55px !important;
    }
    
    .whatsapp-float i {
        font-size: 28px !important;
    }
    
    /* Carousel de Vídeos Mobile */
    .team-section {
        padding: 35px 0 !important;
    }
    
    /* Ajustes de espaçamento geral */
    .spad {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    /* Ícones de Redes Sociais Mobile */
    .canvas-social a,
    .to-social a {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        margin: 0 5px !important;
    }
}

/* Mobile Pequeno (iPhone SE, etc) */
@media (max-width: 480px) {
    /* Hero Mobile Pequeno */
    .hs-slider .hs-item,
    .hero-section .hs-item,
    .hs-item {
        min-height: auto !important;
        height: auto !important;
        padding: 100px 0 45px !important;
    }
    
    .hero-section .hi-text,
    .hs-item .hi-text {
        padding: 0 15px !important;
    }
    
    .hero-section .hi-text span,
    .hs-slider .hs-item .hi-text span,
    .hs-item .hi-text span {
        font-size: 8px !important;
        letter-spacing: 0.8px !important;
        margin-bottom: 5px !important;
    }
    
    .hero-section .hi-text h1,
    .hs-slider .hs-item .hi-text h1,
    .hs-item .hi-text h1 {
        font-size: 17px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }
    
    .hero-section .hi-text h1 strong,
    .hs-slider .hs-item .hi-text h1 strong,
    .hs-item .hi-text h1 strong {
        font-size: 17px !important;
        margin-top: 0;
    }
    
    .hero-section .primary-btn,
    .hero-section .btn-normal,
    .hs-item .primary-btn,
    .hs-item .btn-normal {
        font-size: 8px !important;
        padding: 7px 14px !important;
        width: auto !important;
        max-width: none !important;
        margin: 4px 5px !important;
    }
    
    /* Header Mobile Pequeno */
    .header-section {
        padding-top: 12px !important;
        padding-bottom: 8px !important;
    }
    
    .logo img {
        max-height: 40px !important;
    }
    
    .canvas-open {
        top: 25px !important;
        right: 12px !important;
        font-size: 20px !important;
    }
    
    /* Setas menores ainda */
    .hs-slider.owl-carousel .owl-nav button {
        width: 35px !important;
        height: 35px !important;
        font-size: 18px !important;
        line-height: 35px !important;
    }
    
    .hs-slider.owl-carousel .owl-nav button.owl-prev {
        left: 3px !important;
    }
    
    .hs-slider.owl-carousel .owl-nav button.owl-next {
        right: 3px !important;
    }
    
    /* Banner Section Mobile Pequeno */
    .banner-section .bs-text {
        padding: 15px 12px !important;
    }
    
    .banner-section .bs-text img {
        max-height: 170px !important;
        min-height: 130px !important;
    }
    
    .banner-section .bs-text h2 {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }
    
    .banner-section .bs-text .bt-tips,
    .banner-section .bs-text div[style*="font-size: 17px"] {
        font-size: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .banner-section .bs-text .primary-btn {
        font-size: 11px !important;
        padding: 10px 20px !important;
    }
    
    /* Pricing Section Mobile Pequeno */
    .pricing-section .section-title h2 {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }
    
    .pricing-section .section-title span {
        font-size: 9px !important;
    }
    
    .pricing-section h4 {
        font-size: 15px !important;
    }
    
    .pricing-section p,
    .pricing-section ul li {
        font-size: 12px !important;
    }
    
    .pricing-section div[style*="width: 120px"],
    .pricing-section div[style*="width: 120px; height: 120px"] {
        width: 70px !important;
        height: 70px !important;
    }
    
    .pricing-section div[style*="width: 120px"] i {
        font-size: 30px !important;
    }
    
    .pricing-section .primary-btn {
        font-size: 10px !important;
        padding: 9px 18px !important;
    }
    
    /* Classes Section Mobile Pequeno */
    .class-item .ci-text span {
        font-size: 9px !important;
    }
    
    .class-item .ci-text h5 {
        font-size: 14px !important;
    }
    
    .class-item .ci-text p {
        font-size: 11px !important;
    }
    
    /* Cards de cursos */
    .ps-item h3 {
        font-size: 18px !important;
        padding: 18px 12px !important;
        letter-spacing: 0.5px !important;
    }
    
    .ps-item ul li {
        font-size: 13px !important;
    }
    
    /* Card de Lançamento Mobile Pequeno */
    .ribbon-novo span {
        font-size: 8px !important;
        padding: 4px 12px !important;
    }
    
    .lancamento-badge {
        font-size: 9px !important;
        padding: 8px 8px !important;
        letter-spacing: 0.5px !important;
    }
    
    .lancamento-badge i {
        margin: 0 3px !important;
    }
    
    .badge-premium {
        font-size: 9px !important;
        padding: 5px 12px !important;
    }
    
    /* Ajuste de padding geral */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .row {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }
    
    .col-md-6, .col-lg-6 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Ícones sociais menores */
    .canvas-social a,
    .to-social a {
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
        margin: 0 4px !important;
    }
}

/* Destaque amarelo em textos */
.text-highlight {
    color: var(--primary-yellow);
    font-weight: 700;
}

/* Links */
a {
    color: var(--primary-yellow);
    transition: all 0.3s;
}

a:hover {
    color: #fdc536;
    text-decoration: none;
}

/* ===================================
   CARROSSEL DE VÍDEOS
   =================================== */

.team-section {
    background: #000000;
    padding: 50px 0;
    overflow: hidden;
}

.team-section .ts-slider {
    margin-top: 25px;
}

/* Permite que o Owl Carousel controle a exibição correta dos slides */
.team-section .owl-stage-outer {
    overflow: hidden;
}

.team-section .owl-stage {
    display: flex !important;
}

.team-section .ts-slider .owl-item {
    opacity: 1 !important;
    visibility: visible !important;
}

.team-section .ts-slider .ts-item {
    background: transparent;
    border-radius: 8px;
    border: 1px solid #FDB915;
    transition: border-color 0.3s ease;
    padding: 0;
    overflow: hidden;
}

.team-section .ts-slider .ts-item:hover {
    border-color: #ffd44d;
}

/* Estilo minimalista para video cards */
.ts_slider .video-card {
    background: transparent;
    border-radius: 8px;
    border: 1px solid #FDB915;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.ts_slider .video-card:hover {
    border-color: #ffd44d;
}

.ts_slider .video-info {
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
}

.ts_slider .video-info h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.ts_slider .video-info p {
    color: #FDB915;
    font-size: 12px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-section .ts-slider .ts-item iframe {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    border: none !important;
    border-radius: 10px 10px 0 0 !important;
}

.team-section .ts-slider .ts-item .video-wrapper,
.ts_slider .ts-item .video-wrapper {
    position: relative;
}

.team-section .ts-slider .ts-item div {
    padding: 15px;
}

.team-section .ts-slider .ts-item h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
}

.team-section .ts-slider .ts-item p {
    color: #FDB915;
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dots com ícone de caminhão - REMOVER COMPLETAMENTE */
.team-section .owl-dots,
.ts_slider .owl-dots,
.ts_slider.owl-carousel .owl-dots,
.ts_slider.owl-theme .owl-dots,
.owl-dots,
.owl-carousel .owl-dots,
.owl-theme .owl-dots {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

/* REMOVIDO - Estilos dos dots não são mais necessários */

/* Garantir que o carrossel não corte os cards */
.team-section,
.team-section .container {
    overflow: visible !important;
    position: relative;
    z-index: 1;
}

.ts_slider,
.ts_slider.owl-carousel,
.ts-item {
    overflow: visible !important;
}

/* Container do ts_slider precisa ter posição relativa para os dots absolutos */
.ts_slider,
.ts_slider.owl-carousel {
    position: relative !important;
    padding-bottom: 50px !important;
    z-index: 1 !important;
}

/* Adicionar padding extra na seção para os efeitos visuais */
.team-section {
    padding: 50px 0 120px 0 !important;
    margin-top: 0 !important;
}

.ts_slider .owl-stage-outer {
    overflow: visible !important;
    padding: 30px 0 0 0 !important;
    margin-bottom: 0 !important;
}

.ts_slider .owl-stage {
    padding-left: 10px !important;
}

/* Navegação do carrossel de vídeos - Estilo Minimalista */
.ts_slider.owl-carousel .owl-nav {
    margin-top: 0;
}

.ts_slider.owl-carousel .owl-nav button {
    position: absolute;
    bottom: -60px;
    top: auto;
    transform: none;
    width: 40px;
    height: 40px;
    background: transparent !important;
    color: #FDB915 !important;
    border: 1px solid #FDB915 !important;
    border-radius: 4px;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.ts_slider.owl-carousel .owl-nav button:hover {
    background: #FDB915 !important;
    color: #000 !important;
}

.ts_slider.owl-carousel .owl-nav button.owl-prev {
    left: 50%;
    transform: translateX(-50px);
}

.ts_slider.owl-carousel .owl-nav button.owl-next {
    right: 50%;
    transform: translateX(50px);
}

/* Responsivo para vídeos */
@media (max-width: 991px) {
    .ts_slider.owl-carousel .owl-nav button {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 16px;
    }
    
    .ts_slider.owl-carousel .owl-nav button.owl-prev {
        left: -18px;
    }
    
    .ts_slider.owl-carousel .owl-nav button.owl-next {
        right: -18px;
    }
}

@media (max-width: 767px) {
    .team-section .ts-slider .ts-item {
        margin: 0 5px;
    }
    
    .ts_slider.owl-carousel .owl-nav button {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 14px;
    }
    
    .ts_slider.owl-carousel .owl-nav button.owl-prev {
        left: 0;
    }
    
    .ts_slider.owl-carousel .owl-nav button.owl-next {
        right: 0;
    }
    
    .team-section .owl-dots,
    .ts_slider .owl-dots {
        margin-top: 20px !important;
    }
    
    .team-section .owl-dots .owl-dot i,
    .ts_slider .owl-dots .owl-dot i,
    .team-section .owl-dots .owl-dot .fa-solid,
    .ts_slider .owl-dots .owl-dot .fa-solid,
    .team-section .owl-dots .owl-dot .fas,
    .ts_slider .owl-dots .owl-dot .fas {
        font-size: 18px !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* GARANTIR EXIBIÇÃO NO DESKTOP - FORÇAR CAMINHÕEZINHOS */
@media (min-width: 768px) {
    .ts_slider .owl-dots,
    .ts_slider.owl-carousel .owl-dots,
    .ts_slider.owl-theme .owl-dots {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .ts_slider .owl-dots .owl-dot,
    .ts_slider.owl-carousel .owl-dots .owl-dot,
    .ts_slider.owl-theme .owl-dots .owl-dot {
        display: inline-block !important;
        visibility: visible !important;
    }
    
    .ts_slider .owl-dots .owl-dot i,
    .ts_slider .owl-dots .owl-dot .fa-solid,
    .ts_slider .owl-dots .owl-dot .fas {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 20px !important;
    }
}

/* ===================================
   REMOVER LINHA DECORATIVA DO MENU
   Desabilitar efeito de risco ao passar o mouse
   =================================== */
.nav-menu ul li a:after,
.nav-menu ul li.active>a:after,
.nav-menu ul li:hover>a:after {
    display: none !important;
    opacity: 0 !important;
}

/* ===================================
   VÍDEOS SHORTS - DESIGN MODERNO
   Visual tipo Instagram/YouTube Shorts
   =================================== */

/* Container do card de shorts */
.shorts-card {
    max-width: 320px;
    margin: 0 auto;
    background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 20px;
    overflow: visible;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(253, 185, 21, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Borda com gradiente animado - DESABILITADO */
.shorts-card::before {
    display: none !important;
}

/* Animação removida */
.shorts-card:hover::before {
    display: none !important;
}

.shorts-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 
        0 15px 50px rgba(253, 185, 21, 0.3),
        inset 0 0 25px rgba(253, 185, 21, 0.15);
}

/* Wrapper do vídeo */
.shorts-wrapper {
    width: 100%;
    height: 540px;
    position: relative;
    background: #000;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    z-index: 1;
}

/* Overlay para capturar clique */
.shorts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.shorts-overlay:hover {
    background: rgba(0, 0, 0, 0.15);
}

.shorts-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.shorts-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: relative;
    z-index: 1;
}

/* Informações do vídeo */
.shorts-info {
    padding: 20px 18px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    position: relative;
    text-align: center;
    z-index: 1;
    border-radius: 0 0 20px 20px;
}

/* Ícone do YouTube */
.shorts-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
    border: 3px solid #0d0d0d;
    transition: all 0.3s ease;
    z-index: 10;
}

.shorts-icon i {
    color: #fff;
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.shorts-card:hover .shorts-icon {
    transform: translateX(-50%) scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.7);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.shorts-info h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 30px 0 8px 0;
    text-transform: none;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.shorts-info p {
    color: #FDB915;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    opacity: 0.9;
}

/* Efeito de brilho removido - DESABILITADO */
.shorts-card::after {
    display: none !important;
}

/* Responsivo para Shorts */
@media (max-width: 768px) {
    .team-section {
        padding: 40px 0 100px 0 !important;
        margin-top: 0 !important;
    }
    
    /* Forçar 1 vídeo por vez no mobile */
    .ts_slider .owl-item {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .ts_slider .owl-stage {
        display: flex !important;
        align-items: center !important;
    }
    
    /* Card maior no mobile */
    .shorts-card {
        max-width: 90% !important;
        width: 90% !important;
        margin: 0 auto !important;
        border-radius: 16px;
    }
    
    .ts_slider .owl-stage-outer {
        padding: 20px 0 0 0 !important;
        margin-bottom: 0 !important;
    }
    
    .team-section .owl-dots .owl-dot i,
    .ts_slider .owl-dots .owl-dot i,
    .ts_slider.owl-carousel .owl-dots .owl-dot i,
    .ts_slider.owl-carousel .owl-dots .owl-dot .fa-solid,
    .ts_slider.owl-carousel .owl-dots .owl-dot .fas {
        font-size: 18px !important;
    }
    
    .shorts-card {
        max-width: 280px;
        border-radius: 16px;
    }
    
    .shorts-card::before {
        border-radius: 19px;
    }
    
    .shorts-wrapper {
        height: 500px !important;
        border-radius: 16px 16px 0 0;
    }
    
    .shorts-info {
        padding: 18px 15px;
        border-radius: 0 0 16px 16px;
    }
    
    .shorts-icon {
        width: 45px;
        height: 45px;
        top: -22px;
    }
    
    .shorts-icon i {
        font-size: 20px;
    }
    
    .shorts-info h4 {
        font-size: 14px;
        margin: 26px 0 6px 0;
    }
    
    .shorts-info p {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 30px 0 80px 0 !important;
        margin-top: 0 !important;
    }
    
    /* Forçar 1 vídeo por vez no mobile pequeno */
    .ts_slider .owl-item {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Garantir apenas 1 vídeo visível no mobile */
    .ts_slider .owl-stage-outer {
        padding: 15px 0 0 0 !important;
    }
    
    .shorts-card {
        max-width: 85% !important;
        width: 85% !important;
        margin: 0 auto !important;
    }
    
    .shorts-card::before {
        border-radius: 18px;
    }
    
    .shorts-wrapper {
        height: 450px !important;
    }
    
    .shorts-info h4 {
        font-size: 15px !important;
        margin: 28px 0 8px 0 !important;
    }
    
    .shorts-info p {
        font-size: 11px !important;
    }
}
