/* === CSS EXCLUSIVO DO BANNER === */

/* Reset e estilos base para o banner */
.hero-banner * {
    box-sizing: border-box;
}

.hero-banner .container {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.hero-banner .grid {
    display: grid;
    width: 100%;
    gap: 3rem;
    align-items: center;
}

.hero-banner .md\:grid-cols-2 {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .hero-banner .md\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-banner .container {
        padding: 0 1rem;
    }
    
    .hero-banner {
        padding-top: 6rem; /* Aumentado para não colar no menu */
    }
    
    /* Correção para left-content no mobile */
    #left-content {
        padding: 2rem 1rem 1rem 1rem;
        margin-top: 0;
    }
}

/* === EFEITOS MATRIX E MODERNOS PARA O BANNER === */
.matrix-title-effect {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000; /* Preto */
    text-shadow: 0 0 20px rgba(255,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    margin-bottom: 1em;
    line-height: 1.2;
    font-family: 'Orbitron', 'Inter', monospace;
}

.matrix-title-effect .matrix-highlight-red {
    color: #FF0000; /* Vermelho */
    text-shadow: 0 0 16px rgba(255,0,0,0.8), 0 0 8px rgba(255,0,0,0.6);
    font-weight: 900;
    animation: redGlow 2s ease-in-out infinite alternate;
}

@keyframes redGlow {
    from { text-shadow: 0 0 16px rgba(255,0,0,0.8), 0 0 8px rgba(255,0,0,0.6); }
    to { text-shadow: 0 0 24px rgba(255,0,0,1), 0 0 12px rgba(255,0,0,0.8); }
}

.matrix-subtitle-effect {
    font-size: clamp(0.8rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #000000; /* Preto */
    text-shadow: 0 0 12px rgba(255,0,0,0.2), 0 1px 4px rgba(0,0,0,0.1);
    margin-bottom: 1.5em;
    min-height: clamp(1.3rem, 4vw, 2.5rem);
    font-family: 'Orbitron', 'Inter', monospace;
    letter-spacing: clamp(0.2px, 0.5vw, 1px);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
}

.typewriter-cursor {
    color: #FF0000 !important; /* Vermelho */
    text-shadow: 0 0 8px rgba(255,0,0,0.8);
    animation: blink 1s infinite, digitalGlow 2s ease-in-out infinite alternate;
    font-weight: 900;
}

@keyframes digitalGlow {
    from { text-shadow: 0 0 8px rgba(255,0,0,0.8); }
    to { text-shadow: 0 0 16px rgba(255,0,0,1), 0 0 8px rgba(255,0,0,0.6); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Hero Banner Background */
.hero-banner {
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 50%, #fee2e2 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
}

/* Container do chat */
#chat-container {
    height: 100%;
    overflow: hidden;
    padding: 2px 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* Estilo para o subtítulo fixo */
.banner-subtitle-fixed {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF0000;
    text-shadow: 0 0 10px rgba(255,0,0,0.3);
}

/* Banner title */
.banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    font-family: 'Orbitron', 'Inter', monospace;
    margin-bottom: 1.5rem;
}

.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    font-family: 'Orbitron', 'Inter', monospace;
    margin-bottom: 1rem;
}

/* Estilos do conteúdo principal */
#left-content {
    padding: 2rem 1rem;
    animation: fadeInLeft 1s ease-out;
}

#right-content {
    padding: 1rem;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Estilos do Terminal */
.terminal-window {
    background: #000000;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 8px 25px rgba(0,0,0,0.3);
    font-family: 'Fira Code', 'Courier New', monospace;
    border: 2px solid #333333;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
}

.terminal-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,255,0,0.05) 0%, rgba(255,0,0,0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.terminal-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #333333;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.terminal-buttons {
    display: flex;
    gap: 6px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.terminal-button.close {
    background: #ff5f56;
}

.terminal-button.minimize {
    background: #ffbd2e;
}

.terminal-button.maximize {
    background: #27ca3f;
}

.terminal-title {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    flex: 1;
    text-align: center;
    margin-right: 60px;
}

.terminal-body {
    flex: 1;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 16px;
    overflow-y: auto;
    height: 100%;
    position: relative;
    z-index: 2;
}

.terminal-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
    min-height: 100%;
}

.terminal-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    line-height: 1.4;
}

.terminal-line.compilation {
    margin-bottom: 8px;
}

.terminal-prompt {
    white-space: nowrap;
    margin-right: 8px;
}

.prompt-user {
    color: #00ff00;
    font-weight: bold;
}

.prompt-separator {
    color: #ffffff;
}

.prompt-path {
    color: #0099ff;
}

.prompt-symbol {
    color: #ffffff;
}

.terminal-text {
    color: #ffffff;
    font-size: clamp(10px, 2vw, 13px);
    word-wrap: break-word;
    flex: 1;
    line-height: 1.3;
    padding: 2px 6px;
    border-radius: 3px;
    margin: 1px 0;
    max-width: 100%;
    overflow: hidden;
}

.terminal-text.ai {
    color: #00ff00;
    text-align: left;
    background: rgba(0,255,0,0.1);
    border-left: 3px solid #00ff00;
    box-shadow: 0 0 10px rgba(0,255,0,0.2);
}

.terminal-text.user {
    color: #ffff00;
    text-align: right;
    margin-left: auto;
    background: rgba(255,255,0,0.1);
    border-right: 3px solid #ffff00;
    box-shadow: 0 0 10px rgba(255,255,0,0.2);
}

.terminal-text.typing {
    color: #00ff00;
    font-style: italic;
    background: rgba(0,255,0,0.05);
    animation: terminalPulse 1.5s infinite;
}

.typing-dots {
    animation: terminalTypingDots 1.4s infinite;
    font-weight: bold;
    color: #00ff00;
}

@keyframes terminalTypingDots {
    0% { opacity: 0.3; }
    25% { opacity: 1; }
    50% { opacity: 0.3; }
    75% { opacity: 1; }
    100% { opacity: 0.3; }
}

@keyframes terminalPulse {
    0%, 100% { 
        background: rgba(0,255,0,0.05);
        transform: scale(1);
    }
    50% { 
        background: rgba(0,255,0,0.15);
        transform: scale(1.01);
    }
}

/* Estilos para efeito de digitação */
.typing-bubble {
    background: #FF0000 !important;
    color: #ffffff !important;
    font-style: italic;
    animation: pulse 1.5s infinite;
}

.typing-text {
    font-weight: 600;
}

.typing-dots {
    font-weight: bold;
    animation: typingDotsAnimation 1.4s infinite;
}

@keyframes typingDotsAnimation {
    0% { opacity: 0.3; }
    25% { opacity: 1; }
    50% { opacity: 0.3; }
    75% { opacity: 1; }
    100% { opacity: 0.3; }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 2px 8px rgba(255,0,0,0.3); }
    50% { transform: scale(1.02); box-shadow: 0 4px 16px rgba(255,0,0,0.5); }
    100% { transform: scale(1); box-shadow: 0 2px 8px rgba(255,0,0,0.3); }
}

.typing-indicator {
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from { 
        opacity: 0; 
        transform: translateY(20px) scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

/* Estilos do CRM Funnel do Banner - EXCLUSIVO DO BANNER */
.banner-crm-funnel {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    height: 400px;
    overflow: hidden;
    position: relative;
}

.banner-crm-funnel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.banner-crm-header {
    text-align: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.banner-crm-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 8px;
}

.banner-crm-subtitle {
    display: none;
}

.banner-crm-pipeline {
    display: flex;
    gap: 8px;
    height: 140px;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    padding: 0 4px;
    margin-bottom: 0;
}

.banner-crm-column {
    flex: 1;
    min-width: 60px;
    border-radius: 12px;
    border: 3px solid;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.banner-crm-column:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Cores vibrantes e distintas para cada etapa do funil - Todas com mesma altura */
.banner-crm-column:nth-child(1) {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    border-color: #2563eb;
    height: 100%;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.banner-crm-column:nth-child(2) {
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 50%, #fb923c 100%);
    border-color: #ea580c;
    height: 100%;
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
}

.banner-crm-column:nth-child(3) {
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 50%, #f87171 100%);
    border-color: #dc2626;
    height: 100%;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    padding: 2px;
}

.banner-crm-column:nth-child(4) {
    background: linear-gradient(135deg, #581c87 0%, #9333ea 50%, #c084fc 100%);
    border-color: #9333ea;
    height: 100%;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.banner-crm-column:nth-child(5) {
    background: linear-gradient(135deg, #065f46 0%, #059669 50%, #34d399 100%);
    border-color: #059669;
    height: 100%;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

.banner-crm-column-header {
    color: #ffffff;
    padding: 8px 4px;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(4px);
}

.banner-crm-column-content {
    padding: 6px;
    height: calc(100% - 30px);
    min-height: 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.banner-crm-card {
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    padding: 6px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(8px);
}

.banner-crm-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    background: rgba(255,255,255,1);
}

.banner-crm-card.incoming {
    animation: cardSlideIn 0.8s ease-out;
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.banner-crm-card.moving {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    border-color: rgba(147, 51, 234, 0.6);
    background: rgba(255,255,255,1);
}

.banner-crm-card.arrived {
    transform: scale(1);
    border-color: rgba(5, 150, 105, 0.6);
    background: rgba(240, 253, 244, 0.95);
}

.banner-crm-card.success {
    background: rgba(220, 252, 231, 1);
    border-color: rgba(34, 197, 94, 0.8);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
    animation: successPulse 2s infinite;
}

.banner-crm-card-name {
    color: #1e293b;
    font-size: 9px;
    font-weight: bold;
    margin-bottom: 2px;
}

.banner-crm-card-info {
    color: #64748b;
    font-size: 8px;
    line-height: 1.3;
}

.banner-crm-stats {
    margin-top: 21px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 6px;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;
}

.banner-stat-item {
    text-align: center;
    padding: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.banner-stat-label {
    color: #94a3b8;
    font-size: 8px;
    display: block;
    margin-bottom: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-stat-value {
    color: #10b981;
    font-size: 11px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
    font-family: 'Orbitron', monospace;
}

.banner-crm-success-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    z-index: 10;
}

.banner-crm-success-inner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.3));
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 
        0 0 40px rgba(16, 185, 129, 0.6),
        inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
}

.banner-success-icon {
    font-size: 48px;
    margin-bottom: 16px;
    animation: successBounce 0.6s ease-out;
}

.banner-success-text {
    color: #10b981;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
}

.banner-success-subtext {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.9;
}

/* Animações do CRM */
@keyframes cardSlideIn {
    from { 
        opacity: 0; 
        transform: translateY(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes successBounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-20px);
    }
    70% {
        transform: translateY(-10px);
    }
    90% {
        transform: translateY(-4px);
    }
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Tela Final do Banner */
.banner-final-screen {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-final-message {
    text-align: center;
    color: #ffffff;
}

.banner-final-title {
    color: #ffffff;
    font-size: clamp(1.2rem, 4vw, 1rem);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.8), 0 0 15px rgba(245, 158, 11, 0.6);
    font-family: 'Orbitron', serif;
    letter-spacing: 0.5px;
    animation: bannerTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes bannerTitleGlow {
    from { 
        filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
        transform: scale(1);
    }
    to { 
        filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.8));
        transform: scale(1.02);
    }
}

.banner-final-subtitle {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
}

.banner-contact-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.banner-contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    animation: bannerBubbleFloat 3s ease-in-out infinite;
}

.banner-contact-icon:nth-child(1) { animation-delay: 0s; }
.banner-contact-icon:nth-child(2) { animation-delay: 0.5s; }
.banner-contact-icon:nth-child(3) { animation-delay: 1s; }
.banner-contact-icon:nth-child(4) { animation-delay: 1.5s; }

@keyframes bannerBubbleFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}

.banner-final-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
    max-width: 100%;
}

.banner-final-stats .banner-stat-item {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 8px 4px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-stat-number {
    display: block;
    color: #10b981;
    font-size: clamp(1.5rem, 4vw, 1.5rem);
    font-weight: bold;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.banner-stat-label {
    color: #94a3b8;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.banner-cta-button {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.banner-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.banner-cta-text {
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
}

.banner-cta-arrow {
    color: #ffffff;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.banner-cta-button:hover .banner-cta-arrow {
    transform: translateX(4px);
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .matrix-title-effect {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .matrix-subtitle-effect {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        line-height: 1.3;
        min-height: 1.8rem;
    }
    
    .banner-subtitle-fixed {
        font-size: 1.2rem;
    }
    
    .banner-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .terminal-window {
        height: 350px;
        margin: 1rem 0;
    }
    
    .terminal-text {
        font-size: clamp(9px, 2.5vw, 12px);
        padding: 1px 4px;
    }
    
    .banner-crm-funnel {
        height: 350px;
        padding: 12px;
        margin: 1rem 0;
    }
    
    .banner-crm-pipeline {
        height: 120px;
        gap: 6px;
    }
    
    .banner-crm-column {
        min-width: 45px;
    }
    
    .banner-crm-column-header {
        font-size: 9px;
        padding: 6px 2px;
    }
    
    .banner-crm-card-name {
        font-size: 8px;
    }
    
    .banner-crm-card-info {
        font-size: 7px;
    }
    
    .banner-stat-label {
        font-size: 7px;
    }
    
    .banner-stat-value {
        font-size: 10px;
    }
    
    .banner-final-title {
        font-size: clamp(1rem, 4vw, 1.0rem);
        margin-bottom: 1rem;
    }
    
    .banner-final-subtitle {
        font-size: 13px;
    }
    
    .banner-contact-icons {
        gap: 12px;
        margin: 1rem 0;
    }
    
    .banner-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .banner-final-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin: 1rem 0;
    }
    
    .banner-stat-number {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }
    
    .banner-stat-label {
        font-size: 0.6rem;
    }
    
    #left-content {
        padding: 2rem 0.5rem 1rem 0.5rem;
        text-align: center;
        margin-top: 0;
    }
    
    #right-content {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .matrix-title-effect {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .matrix-subtitle-effect {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
        line-height: 1.2;
        min-height: 1.5rem;
    }
    
    .banner-subtitle-fixed {
        font-size: 1rem;
    }
    
    .terminal-window {
        height: 300px;
    }
    
    .terminal-text {
        font-size: clamp(8px, 2vw, 10px);
        padding: 1px 3px;
        line-height: 1.2;
    }
    
    .banner-crm-funnel {
        height: 300px;
        padding: 8px;
    }
    
    .banner-crm-pipeline {
        height: 100px;
        gap: 4px;
    }
    
    .banner-crm-column {
        min-width: 35px;
    }
    
    .banner-crm-stats {
        grid-template-columns: 1fr 1fr;
        gap: 3px;
        padding: 4px;
    }
    
    .banner-stat-item {
        padding: 3px;
    }
    
    .banner-final-stats {
        gap: 6px;
    }
    
    .banner-final-stats .banner-stat-item {
        padding: 6px 4px;
    }
    
    .banner-stat-number {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }
    
    .banner-stat-label {
        font-size: 0.5rem;
    }
    
    .banner-final-title {
        font-size: clamp(0.9rem, 3.5vw, 1.0rem);
    }
    
    .hero-banner .container {
        padding: 0 0.5rem;
    }
    
    /* Correção específica para left-content no mobile pequeno */
    #left-content {
        padding: 1.5rem 0.5rem 1rem 0.5rem;
        margin-top: 0;
    }
    
    .hero-banner {
        padding-top: 7rem; /* Ainda mais espaço em telas pequenas */
    }
}

/* Responsividade para dispositivos muito pequenos */
@media (max-width: 360px) {
    .matrix-subtitle-effect {
        font-size: 0.8rem;
        letter-spacing: 0.2px;
        line-height: 1.1;
        min-height: 1.3rem;
    }
    
    .matrix-title-effect {
        font-size: 1.4rem;
        line-height: 1.0;
    }
    
    .banner-subtitle-fixed {
        font-size: 0.9rem;
    }
}
