/* 
    TiGenius Portfolio - Core Design System
    Theme: Executive Dark & Tech Blue
*/

:root {
    --bg-primary: #000000;
    --bg-secondary: #0f1115;
    --bg-accent: #141519;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #6b7280;
    
    --accent-primary: #f47521; /* Crunchyroll Orange */
    --accent-secondary: #ff8c42;
    --accent-gradient: linear-gradient(135deg, #f47521 0%, #d85c0b 100%);
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    --header-height: 80px;
    --container-width: 1200px;
    --border-radius: 4px; /* Sharper edges */
    --glass-bg: rgba(20, 21, 25, 0.95);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* Progress Bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 10001;
    transition: width 0.1s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 70px 0;
    position: relative;
}

/* Alternating Backgrounds on the wrapper divs */
main > div:nth-child(odd) {
    background-color: #0d0f13;
}

main > div:nth-child(even) {
    background-color: #000000;
}

/* Section Divider Element */
main > div {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

main > div::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    box-shadow: 0 0 15px rgba(244, 117, 33, 0.4);
    z-index: 10;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800; /* Extra bold for impact */
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 4px; /* Sharper corners like Crunchyroll */
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 0.75rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
}

/* Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cards Design */
.card-elegant {
    background: var(--bg-accent);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.card-elegant:hover {
    border-color: var(--accent-primary);
    background: #1c1e24;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244, 117, 33, 0.15);
}

/* Section Titles */
.section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--accent-primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 4px 12px;
    background: rgba(244, 117, 33, 0.1);
    border-radius: 20px;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

#planos .section-subtitle {
    text-align: justify;
    text-justify: inter-word;
    max-width: 780px;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .section { padding: 30px 0; }
    .section-title { font-size: 2.2rem; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section-title { font-size: 1.8rem; }
    h1 { font-size: 2rem; }
    .btn { padding: 0.8rem 1.5rem; width: 100%; }
}

/* ==========================================================================
   Back to Top
   ========================================================================== */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 20px rgba(244, 117, 33, 0.3);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(244, 117, 33, 0.5);
    background: #fff;
    color: var(--accent-primary);
}

/* ==========================================================================
   Planos e Preços (Dark Theme)
   ========================================================================== */
.planos {
    padding: 100px 0;
}

.planos .section-subtitle {
    margin-bottom: 12px;
}

.planos-incluso {
    margin-top: 2rem;
    margin-bottom: 48px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.planos-incluso-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.planos-incluso-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem 2rem;
}

.incluso-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    text-align: left;
    white-space: nowrap;
}

.incluso-item i {
    color: var(--accent-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.incluso-item:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.beneficios-destaque{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
    margin-bottom:30px;
}

.beneficio{
    background:rgba(244,117,33,.08);
    border:1px solid rgba(244,117,33,.25);
    padding:10px 15px;
    border-radius:8px;
    color:#fff;
    font-size:.9rem;
}

.beneficio i{
    color:var(--accent-primary);
    margin-right:6px;
}

@media (max-width: 768px) {
    .planos-incluso {
        padding: 1.5rem;
    }
    
    .planos-incluso-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .planos-incluso-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        max-width: 250px;
        margin: 0 auto;
    }
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    align-items: start;
}

.plano-card {
    background: var(--bg-accent);
    border-radius: 12px;
    padding: 3rem 2rem;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.plano-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: #1c1e24;
}

.plano-card.highlight {
    border: 2px solid var(--accent-primary);
    box-shadow: 0 15px 35px rgba(244, 117, 33, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.plano-card.highlight:hover {
    transform: scale(1.05) translateY(-5px);
    background: #1c1e24;
}

.plano-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plano-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
}

.plano-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.plano-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    min-height: 45px;
    margin-bottom: 1.5rem;
}

.plano-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: #ffffff;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 4px;
    color: var(--accent-primary);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.plano-promo-badge {
    display: inline-block;
    background: rgba(244, 117, 33, 0.15);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 1rem;
    align-self: center;
}

.plano-price-details {
    margin-top: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plano-original-strike {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 500;
}

.plano-promo-duration {
    font-weight: 600;
    color: #ffffff;
}

.plano-after-period {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}
.plano-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plano-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plano-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.plano-features li i {
    color: var(--accent-primary); /* Green check swapped for branding orange check for high dark-theme elegance, or green */
    margin-top: 4px;
    margin-right: 12px;
    font-size: 1.1rem;
}

.plano-footer {
    text-align: center;
    margin-top: auto;
}

.w-100 {
    width: 100%;
}

@media (max-width: 992px) {
    .plano-card.highlight {
        transform: scale(1);
    }
    
    .plano-card.highlight:hover {
        transform: translateY(-5px);
    }

    .planos-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

/* ==========================================================================
   Card Informativo — Desenvolvimento (cobrado à parte)
   ========================================================================== */
.plano-card--info {
    background: rgba(244, 117, 33, 0.04);
    border: 2px dashed rgba(244, 117, 33, 0.35) !important;
    box-shadow: 0 10px 30px rgba(244, 117, 33, 0.07);
    display: flex;
    flex-direction: column;
    gap: 0;
    cursor: default;
}

.plano-card--info:hover {
    border-color: var(--accent-primary) !important;
    box-shadow: 0 20px 40px rgba(244, 117, 33, 0.15);
    transform: translateY(-5px);
    background: rgba(244, 117, 33, 0.07);
}

.plano-card-info-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

.plano-card-info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(244, 117, 33, 0.35);
}

.plano-card-info-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.plano-card-info-subtitle {
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plano-card-info-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plano-card-info-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.plano-card-info-desc strong {
    color: #fff;
    font-weight: 600;
}

.dev-pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.dev-pricing-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    transition: var(--transition-smooth);
}

.dev-pricing-item:hover {
    border-color: rgba(244, 117, 33, 0.3);
    background: rgba(244, 117, 33, 0.06);
}

.dev-pricing-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(244, 117, 33, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-primary);
    font-size: 1rem;
}

.dev-pricing-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.dev-pricing-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
}

.dev-pricing-value {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.plano-card-info-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 4px 4px 0;
}

.plano-card-info-note i {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.85rem;
}

/* ==========================================================================
   Custom Premium Scrollbar
   ========================================================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0d0f13;
}

::-webkit-scrollbar-thumb {
    background: #1c1e24;
    border: 2px solid #0d0f13;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Email Obfuscated Links Hover */
.footer-contact a:hover,
.contact-methods a:hover {
    color: var(--accent-primary) !important;
    text-shadow: 0 0 10px rgba(244, 117, 33, 0.4);
}


/* Card Glow Hover Effect */
.plano-card.highlight::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: var(--accent-gradient);
    z-index: -1;
    opacity: 0.3;
    transition: var(--transition-smooth);
    filter: blur(10px);
}

.plano-card.highlight:hover::after {
    opacity: 0.8;
    filter: blur(15px);
}

/* ==========================================================================
   Simulador de Investimento
   ========================================================================== */
.simulador-container {
    margin-top: 6rem;
    background: var(--bg-accent);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3.5rem 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.simulador-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
}

.simulador-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    display: block;
}

.simulador-title i {
    color: var(--accent-primary);
    margin-right: 0.5rem;
}

.simulador-desc {
    color: var(--text-secondary);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.05rem;
}

.simulador-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.simulador-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.simulador-group {
    margin-bottom: 0;
}

.simulador-group-title {
    display: flex;
    align-items: flex-start;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.simulador-radio-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.simulador-radio-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.simulador-radio-card:not(.disabled):hover {
    border-color: rgba(244, 117, 33, 0.4);
    background: rgba(244, 117, 33, 0.03);
}

.simulador-radio-card.active:not(.disabled) {
    border-color: var(--accent-primary);
    background: rgba(244, 117, 33, 0.06);
    box-shadow: 0 0 15px rgba(244, 117, 33, 0.1);
}

.simulador-radio-card.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    border-color: var(--glass-border) !important;
    background: rgba(255, 255, 255, 0.01) !important;
    box-shadow: none !important;
}

.simulador-radio-card.disabled * {
    cursor: not-allowed;
}

.simulador-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    margin-right: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    margin-top: 2px;
}

.simulador-radio-card.active .radio-custom {
    border-color: var(--accent-primary);
}

.radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-primary);
    transform: scale(0);
    transition: var(--transition-smooth);
}

.simulador-radio-card.active .radio-custom::after {
    transform: scale(1);
}

.radio-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex-grow: 1;
}

.radio-label {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}

.radio-price {
    font-size: 0.85rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.radio-price-detail {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Coluna Resumo Resultados */
.simulador-results-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.results-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
    font-family: var(--font-heading);
    color: #ffffff;
    text-align: center;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.results-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.results-item-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.results-item-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
}

.results-item.highlight {
    background: rgba(244, 117, 33, 0.06);
    border-left: 4px solid var(--accent-primary);
    padding: 1.2rem 1.25rem;
    border-radius: 0 8px 8px 0;
}

.results-item.highlight .results-item-label {
    color: #ffffff;
    font-weight: 700;
}

.results-item.highlight .results-item-value {
    font-size: 2.2rem;
    color: var(--accent-primary);
    line-height: 1.1;
}

.results-item-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.results-subtext {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.results-note {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 2rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.results-note i {
    color: var(--accent-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ==========================================================================
   Tabela Comparativa de Recursos
   ========================================================================== */
.comparativo-container {
    margin-top: 3rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--bg-accent);
    overflow: hidden;
}

.comparativo-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.8rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
}

.comparativo-trigger:hover {
    background: rgba(244, 117, 33, 0.03);
    color: var(--accent-secondary);
}

.comparativo-trigger i.fas.fa-list-check {
    margin-right: 0.75rem;
    color: var(--accent-primary);
}

.comparativo-arrow {
    font-size: 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
}

.comparativo-container.active .comparativo-arrow {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.comparativo-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.15);
}

.comparativo-container.active .comparativo-content {
    max-height: 1200px; /* Suficiente para a tabela */
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    padding: 0 2.5rem 2.5rem 2.5rem;
}

.comparativo-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.comparativo-table th {
    padding: 1.5rem 1.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.01);
}

.comparativo-table th:nth-child(2),
.comparativo-table th:nth-child(3) {
    text-align: center;
}

.comparativo-table th:nth-child(3) {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
    background: rgba(244, 117, 33, 0.04);
}

.comparativo-table td {
    padding: 1.4rem 1.2rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    line-height: 1.6;
    vertical-align: middle;
}

.comparativo-table td:nth-child(2),
.comparativo-table td:nth-child(3) {
    text-align: center;
}

.comparativo-table td:nth-child(3) {
    background: rgba(244, 117, 33, 0.01);
}

.comparativo-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
}

.comparativo-table tr:hover td:nth-child(3) {
    background: rgba(244, 117, 33, 0.03);
}

.comparativo-table .feature-name {
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
}

/* Premium Badges inside the table */
.project-type-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.project-type-tag.highlight {
    background: rgba(244, 117, 33, 0.15);
    color: var(--accent-primary);
    border: 1px solid rgba(244, 117, 33, 0.3);
}

.badge-table {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-table.check {
    color: #2ec4b6; /* Premium cyan/mint green for check */
    background: rgba(46, 196, 182, 0.1);
    border: 1px solid rgba(46, 196, 182, 0.2);
}

.badge-table.check.highlight {
    color: var(--accent-primary);
    background: rgba(244, 117, 33, 0.1);
    border: 1px solid rgba(244, 117, 33, 0.2);
}

.badge-table.mute {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 600;
}

.detail-text {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.35rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsividade */
@media (max-width: 992px) {
    .simulador-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .simulador-container {
        padding: 2.5rem 1.5rem;
    }
    
    .simulador-title {
        font-size: 1.7rem;
    }
    
    .simulador-desc {
        margin-bottom: 2.5rem;
    }
    
    .comparativo-trigger {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .table-responsive {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .comparativo-table th, 
    .comparativo-table td {
        padding: 1rem 0.75rem;
        font-size: 0.88rem;
    }
}

@media (max-width: 576px) {
    .simulador-container {
        padding: 2rem 1.25rem;
    }
    
    .simulador-radio-card {
        padding: 1rem 1.2rem;
    }
    
    .simulador-results-card {
        padding: 1.5rem 1.25rem;
    }
    
    .results-item.highlight .results-item-value {
        font-size: 1.8rem;
    }
    
    .promo-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        padding: 1rem;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .timeline-step {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .timeline-step-content {
        flex-direction: row;
        align-items: baseline;
        gap: 0.4rem;
        flex-wrap: wrap;
    }
    
    .step-months::after {
        content: ":";
    }
}

@media (max-width: 400px) {
    .simulador-container {
        padding: 1.5rem 1rem;
    }
    
    .simulador-radio-card {
        padding: 0.85rem 1rem;
    }
    
    .radio-custom {
        margin-right: 0.85rem;
    }
    
    .results-item.highlight .results-item-value {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   Estilização do Passo a Passo e Linha do Tempo do Simulador
   ========================================================================== */
/* Step Numbers in Option Headers */
.simulador-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--accent-gradient);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    margin-right: 0.6rem;
    box-shadow: 0 3px 10px rgba(244, 117, 33, 0.4);
    position: relative;
    top: -1px;
    flex-shrink: 0;
}

/* Billing Detail Container */
.billing-detail-container {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
}

/* Timeline Style for Promo Billing Flow */
.promo-timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.timeline-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
}

.promo-timeline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    position: relative;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.timeline-badge {
    background: rgba(244, 117, 33, 0.15);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 4px;
    align-self: flex-start;
}

.timeline-badge.normal {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--text-muted);
    color: var(--text-secondary);
}

.timeline-step-content {
    display: flex;
    flex-direction: column;
}

.step-months {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.step-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
}

.timeline-connector {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    align-self: center;
    margin-top: 1.25rem;
}


