@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --color-primary: #6DDB3A;
    --color-tech: #2FD3C9;
    --color-automotive: #E38B1C;
    --color-metal: #C9D0D6;
    --color-dark: #111827;
    --color-light: #ffffff;
    --font-primary: 'Poppins', sans-serif;
    --header-height: 100px;
}

body {
    font-family: var(--font-primary);
    background-color: #f3f4f6;
    overflow-x: hidden;
}

.category-scroll {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-pill {
    scroll-snap-align: start;
    white-space: nowrap;
}

/* Glassmorphism Header Ultra Premium */
.glass-header {
    background: rgba(255, 255, 255, 0.75); /* Mais transparência */
    backdrop-filter: blur(25px) saturate(180%); /* Efeito "Frosted Glass" Apple-like */
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    height: var(--header-height);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    height: 80px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .glass-header.scrolled {
        height: 100px !important; /* Força altura original no mobile */
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Garante que a logo não seja cortada */
    .glass-header {
        overflow: visible !important;
    }
    
    .glass-header .container {
        overflow: visible !important;
    }
}

/* Logo Wrapper - Sobressaindo e Centralizado */
.logo-wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 50;
    /* Gradiente sutil que some suavemente */
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 40%, rgba(255,255,255,0) 100%);
    padding: 0 30px 25px 30px; /* Reduzido para ficar justo ao redor da logo */
    border-radius: 0 0 60px 60px; /* Curva ajustada */
    transition: all 0.5s ease;
    /* Luz superior sutil */
    box-shadow: inset 0 1px 0 rgba(255,255,255,1); 
}

/* Linha de "Neon" sutil no topo do container da logo */
.logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.5;
}

.logo-wrapper img {
    height: 190px; 
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: top center;
    position: relative;
    z-index: 10;
    /* Efeito mask removido conforme solicitado */
}

/* Hover Effect: Gentle Float (No Scale) */
.logo-wrapper:hover img {
    transform: translateY(5px);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.12));
    cursor: pointer;
}

.logo-wrapper:hover {
    /* Mantém sem fundo, mas a interação física da logo já é rica */
}

.glass-header.scrolled .logo-wrapper {
    padding: 0 30px 20px 30px;
    border-radius: 0 0 40px 40px;
}

.glass-header.scrolled .logo-wrapper img {
    height: 100px;
}

/* Navigation Items - Premium & Minimalista */
.nav-item-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500; /* Peso mais elegante */
    color: #4b5563;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    background: transparent; /* Remove qualquer fundo */
}

/* Ícones com fundo suave */
.nav-item-premium .icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Default Brand Colors for Icons */
.nav-item-premium .icon-box.search {
    color: var(--color-tech);
    background: rgba(47, 211, 201, 0.08);
    border-color: rgba(47, 211, 201, 0.2);
}

.nav-item-premium .icon-box.building {
    color: var(--color-automotive);
    background: rgba(227, 139, 28, 0.08);
    border-color: rgba(227, 139, 28, 0.2);
}

.nav-item-premium span {
    position: relative;
    transition: color 0.3s ease;
}

/* Hover Interactions */
.nav-item-premium:hover .icon-box {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
    background: white;
}

/* Intensify colors on hover */
.nav-item-premium:hover .icon-box.search { 
    color: #25a89f; /* Darker tech */
    border-color: var(--color-tech); 
}

.nav-item-premium:hover .icon-box.building { 
    color: #c77200; /* Darker automotive */
    border-color: var(--color-automotive); 
}

.nav-item-premium:hover span {
    color: #111827; /* Preto quase puro */
    font-weight: 600;
}

/* Underline Gradiente Sofisticado */
.nav-item-premium span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, var(--color-primary), var(--color-tech));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    opacity: 0.8;
}

.nav-item-premium:hover span::after {
    width: 100%;
}

/* Botão Login - Clean */
.btn-login-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #4b5563;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-login-modern i {
    color: var(--color-primary);
    filter: drop-shadow(0 2px 4px rgba(109, 219, 58, 0.2));
}

.btn-login-modern:hover {
    color: var(--color-dark);
    background: rgba(255,255,255,0.5);
}

/* Botão Automotive "Nitro" Style - Refinado */
.btn-automotive {
    background: linear-gradient(135deg, #FF4B1F 0%, #FF9068 100%);
    color: white;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 6px;
    transform: skew(-12deg); /* Inclinação levemente ajustada */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 20px -5px rgba(255, 75, 31, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border: none;
}

.btn-automotive span, .btn-automotive i {
    transform: skew(12deg);
    position: relative;
    z-index: 2;
}

/* Efeito de Brilho "Passando" Rápido */
.btn-automotive::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: skew(-12deg);
    transition: none;
}

.btn-automotive:hover::after {
    left: 150%;
    transition: all 0.6s ease-in-out;
}

.btn-automotive:hover {
    transform: skew(-12deg) translateY(-2px);
    box-shadow: 0 15px 30px -8px rgba(255, 75, 31, 0.5);
}

/* Hero Section Premium Styles */
.hero-premium-bg {
    background-color: #f8f9fa;
    background-image: 
        radial-gradient(at 0% 0%, rgba(109, 219, 58, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(227, 139, 28, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(47, 211, 201, 0.1) 0px, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero-vagas {
    min-height: 70vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-vagas .hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
    margin-bottom: 16px;
}

.hero-vagas .hero-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.hero-vagas .hero-description {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.hero-vagas .hero-cta-group {
    margin-bottom: 28px;
}

.hero-vagas .btn-hero-modern,
.hero-vagas .btn-hero-clean {
    padding: 14px 28px;
    font-size: 0.95rem;
}

.hero-vagas .stats-card {
    padding: 12px 20px;
}

.hero-vagas .stats-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.hero-vagas .stats-info strong {
    font-size: 1.3rem;
}

.hero-vagas .stats-info span {
    font-size: 0.8rem;
}

/* Grid Pattern Overlay */
.hero-premium-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(200, 200, 200, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 200, 200, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

/* Background Image Workshop Effect */
.hero-premium-bg::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.12; /* Aumentado de 0.04 para 0.12 para melhor visibilidade */
    filter: blur(2px) grayscale(100%); /* Blur reduzido para definir melhor a forma */
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
}

/* Mascote Premium Effect */
.mascote-float {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: all 0.5s ease;
}

.mascote-float:hover {
    filter: drop-shadow(0 30px 60px rgba(109, 219, 58, 0.25));
    transform: scale(1.02);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Elementos de Texto do Hero */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(109, 219, 58, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 20px;
}

.hero-badge i {
    color: var(--color-primary);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem; /* Mobile Pequeno */
    }
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-tech) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

@media (max-width: 640px) {
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
}

/* CTA Buttons no Hero - Modernizados */
.hero-cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

@media (max-width: 640px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-cta-group .btn-hero-modern,
    .hero-cta-group .btn-hero-clean {
        width: 100%;
        justify-content: center;
        padding: 14px 20px; /* Touch target otimizado */
        min-height: 48px; /* Acessibilidade */
    }
}

/* Botão Primário: Efeito Neon/Glass */
.btn-hero-modern {
    position: relative;
    background: var(--color-dark);
    color: white;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.btn-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.btn-hero-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(109, 219, 58, 0.25); /* Sombra verde */
    border-color: var(--color-primary);
}

.btn-hero-modern:hover::before {
    transform: translateX(100%);
}

.btn-hero-modern i {
    color: var(--color-primary);
}

/* Botão Secundário: Outline Clean */
.btn-hero-clean {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    color: #4b5563;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.btn-hero-clean:hover {
    background: white;
    color: var(--color-automotive);
    border-color: var(--color-automotive);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(227, 139, 28, 0.15);
}

.btn-hero-clean i {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.btn-hero-clean:hover i {
    color: var(--color-automotive);
}

/* Stats Cards Modernos */
.stats-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stats-card:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stats-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stats-icon.vagas {
    background: rgba(47, 211, 201, 0.1);
    color: var(--color-tech);
}

.stats-icon.empresas {
    background: rgba(227, 139, 28, 0.1);
    color: var(--color-automotive);
}

.stats-info strong {
    display: block;
    font-size: 1.5rem;
    color: #111827;
    line-height: 1;
    margin-bottom: 2px;
}

.stats-info span {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

/* =========================================
   📱 ENHANCED MOBILE RESPONSIVENESS (ELITE)
   ========================================= */

/* Global Touch Targets & Accessibility */
@media (max-width: 1024px) {
    button, a.btn, .btn-hero-modern, .btn-hero-clean, .nav-item-premium, input, select {
        min-height: 48px; /* Touch target size minimum standard */
        touch-action: manipulation;
    }
}

/* 📱 Breakpoint: 320px (iPhone SE 1st Gen, Small Android) */
@media screen and (max-width: 320px) {
    :root {
        --header-height: 80px; /* Reduz altura do header */
    }

    .hero-title {
        font-size: clamp(1.5rem, 8vw, 1.8rem) !important;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.9rem !important;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .hero-cta-group {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .btn-hero-modern, .btn-hero-clean {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    /* Ajuste de Margem Negativa Crítica */
    .container.-mt-10 {
        margin-top: -1.5rem !important; /* Suaviza a subida */
    }

    /* Stats Cards Stacked Tight */
    .stats-card {
        padding: 12px 15px;
        width: 100%;
    }
    
    .stats-info strong {
        font-size: 1.2rem;
    }
}

/* 📱 Breakpoint: 375px - 414px (Modern Phones) */
@media screen and (min-width: 321px) and (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.2rem) !important;
    }

    /* Stats em Grid de 2 Colunas se couber */
    .flex-wrap.gap-6 {
        gap: 1rem;
    }

    .stats-card {
        flex: 1 1 calc(50% - 0.5rem); /* 2 colunas */
        min-width: 140px;
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
    }
    
    .stats-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* 📱 General Mobile Improvements (Up to Tablet) */
@media screen and (max-width: 768px) {
    /* Mascote Responsivo */
    .mascote-float {
        max-width: 85% !important; /* Evita que ocupe toda a largura */
        height: auto;
        margin: 0 auto;
        display: block;
    }

    /* Container do Mascote */
    .relative.flex.justify-center {
        margin-top: 2rem;
        padding-bottom: 2rem;
    }

    /* Background Circle Adjust */
    .absolute.w-\[400px\].h-\[400px\] {
        width: 280px !important;
        height: 280px !important;
    }

    /* Fix Layout Grid Spacing */
    .grid.gap-12 {
        gap: 2rem !important;
    }
    
    /* Better Touch Form Elements */
    input[type="text"], input[type="email"], select {
        font-size: 16px !important; /* Previne zoom no iOS */
    }
}

/* 📱 Landscape Mode Fixes */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero-premium-bg {
        min-height: auto !important;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .mascote-float {
        display: none; /* Esconde mascote em landscape curto para priorizar conteúdo */
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
}

/* 🌐 Browser Compatibility Fixes */
/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-metal) transparent;
}

/* Safari Notch Support */
@supports (padding-top: env(safe-area-inset-top)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* =========================================
   📱 SECTION: VAGAS DESTAQUE - MOBILE FIXES
   ========================================= */

@media (max-width: 768px) {
    /* Ajuste do botão de Vagas para evitar quebra de texto */
    .min-w-\[300px\] .block.w-full.py-3.rounded-xl {
        display: flex;
        flex-direction: row; /* Mantém linha, mas ajusta */
        align-items: center;
        justify-content: center;
        gap: 0.5rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        white-space: nowrap; /* Tenta manter numa linha */
        font-size: 0.85rem !important; /* Fonte levemente menor */
    }

    /* Se o texto for muito longo, permite ellipsis ou ajuste */
    /* Melhoria: Ocultar o ícone da seta se necessário para ganhar espaço */
    .min-w-\[300px\] .block.w-full.py-3.rounded-xl .fa-arrow-right {
        display: none; 
    }
    
    /* Melhorar o Scroll Horizontal dos Cards de Vagas */
    /* Adicionar padding-right no container para o último card não ficar cortado */
    .overflow-x-auto.pb-8 {
        padding-right: 3rem !important; /* Mais espaço para compensar o gradiente */
        scroll-padding-right: 3rem;
    }
}

/* Ajuste do Gradiente "Linha Branca" - Tornando Sutil */
@media (max-width: 1024px) {
    .bg-gradient-to-l.from-gray-50 {
        width: 2rem !important; /* Reduz largura drasticamente */
        opacity: 0.0 !important; /* Remove visualmente se estiver atrapalhando muito, ou use 0.5 */
        pointer-events: none !important;
        display: none !important; /* Solução definitiva para "linha branca atrapalhando" */
    }
}

/* =========================================
   📱 SECTION: PLANOS (PRICING) - MOBILE ELITE
   ========================================= */


@media (max-width: 768px) {
    /* Ajuste de Espaçamento Vertical da Seção */
    #planos {
        padding-top: 3.5rem !important; /* Reduz de py-24 para ~py-14 */
        padding-bottom: 3.5rem !important;
    }

    /* Cabeçalho da Seção Compacto */
    #planos .text-center.mb-16 {
        margin-bottom: 2.5rem !important; /* Reduz de mb-16 para ~mb-10 */
        padding: 0 1rem;
    }

    /* Título Fluido para evitar quebras bruscas */
    #planos h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem) !important;
        line-height: 1.2;
        margin-bottom: 1rem !important;
    }

    #planos p.text-lg {
        font-size: 1rem !important;
        line-height: 1.6;
        max-width: 100%;
    }

    /* Grid Gap Otimizado */
    #planos .grid {
        gap: 1.5rem !important; /* Reduz gap-8 para gap-6 */
        padding: 0 0.5rem; /* Margem de segurança lateral */
    }

    /* Cards Otimizados para Mobile (Mais compactos internamente) */
    #planos .bg-white.rounded-3xl {
        padding: 1.5rem !important; /* Reduz de p-8 para p-6 */
        border-radius: 1.5rem !important; /* Suaviza borda */
        box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important; /* Sombra mais leve no mobile */
    }

    /* Ajuste do Card Destaque (Planos Anuais) */
    #planos .md\:-mt-8 {
        margin-top: 0 !important; /* Remove sobreposição negativa no mobile */
    }

    /* Badge "Mais Popular" Posicionamento */
    #planos .absolute.top-0.left-1\/2 {
        top: 0 !important;
        transform: translate(-50%, -50%) !important;
    }

    /* Ícones dos Cards - Proporção Visual */
    #planos .w-14.h-14 {
        width: 3.5rem !important;
        height: 3.5rem !important;
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }

    /* Títulos dos Cards */
    #planos h3 {
        font-size: 1.35rem !important;
    }

    /* Preço Grande */
    #planos .text-4xl {
        font-size: 2rem !important;
    }

    /* Lista de Benefícios */
    #planos ul {
        margin-bottom: 1.5rem !important;
        space-y: 0.75rem !important; /* space-y-3 */
    }

    #planos ul li {
        font-size: 0.95rem !important;
        align-items: flex-start; /* Garante alinhamento topo em textos longos */
    }
    
    /* Botões Touch-Friendly (Mínimo 48px altura) */
    #planos a.block {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
        font-size: 1rem !important;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Ajustes Específicos para Telas Muito Pequenas (320px - iPhone SE/5S) */
@media (max-width: 360px) {
    #planos h2 {
        font-size: 1.5rem !important;
    }

    #planos .bg-white.rounded-3xl {
        padding: 1.25rem !important; /* p-5 */
    }
    
    #planos .text-4xl {
        font-size: 1.75rem !important;
    }
}
