﻿/* Hero Professional Design */
.hero-professional {
    min-height: 90vh;
    padding: 140px 0 80px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.hero-content-professional {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Lado Esquerdo - Conteúdo */
.hero-left {
    max-width: 680px;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 13px;
    color: rgba(255, 107, 53, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-breadcrumb .separator {
    color: rgba(255, 107, 53, 0.4);
}

.hero-main-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
}

/* CTAs */
.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: #FF6B35;
}

.btn-outline:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #FF6B35;
}

/* Trust Bar */
.hero-trust-bar {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FF6B35;
}

.trust-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-info strong {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
}

.trust-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Lado Direito - Visual */
.hero-right {
    position: relative;
    height: 600px;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Tech Stack Card */
.tech-stack-card {
    position: absolute;
    top: 40px;
    left: 0;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    animation: float-card 6s ease-in-out infinite;
}

.tech-stack-card h3 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-icons {
    display: flex;
    gap: 12px;
}

.tech-badge {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FF6B35;
    transition: all 0.3s;
    cursor: pointer;
}

.tech-badge:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-4px);
}

/* Floating Stats Cards */
.floating-stats-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.floating-stats-card.card-top {
    top: 180px;
    right: 60px;
    animation: float-card 5s ease-in-out infinite;
}

.floating-stats-card.card-bottom {
    bottom: 120px;
    left: 40px;
    animation: float-card 5.5s ease-in-out infinite 0.5s;
}

.floating-stats-card .stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Centro Visual com Pulso */
.hero-center-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: pulse 3s ease-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 1s;
}

.pulse-ring.delay-2 {
    animation-delay: 2s;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    animation: rotate-slow 20s linear infinite;
}

/* Animações */
@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes rotate-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content-professional {
        gap: 60px;
    }
    
    .hero-main-title {
        font-size: 52px;
    }
}

@media (max-width: 1024px) {
    .hero-content-professional {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-right {
        height: 400px;
        display: none; /* Ocultar visual em tablets */
    }
    
    .hero-main-title {
        font-size: 48px;
    }
    
    .hero-trust-bar {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero-professional {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-breadcrumb {
        flex-wrap: wrap;
        font-size: 11px;
        gap: 8px;
    }
    
    .hero-main-title {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }
    
    .hero-lead-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .hero-trust-bar {
        flex-direction: column;
        gap: 20px;
        padding-top: 24px;
    }
    
    .trust-item {
        width: 100%;
    }
    
    .trust-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .trust-info strong {
        font-size: 15px;
    }
    
    .trust-info span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-professional {
        padding: 80px 0 40px;
    }
    
    .hero-breadcrumb {
        font-size: 10px;
        gap: 6px;
    }
    
    .hero-main-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-lead-text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    
    .hero-cta-group {
        gap: 10px;
        margin-bottom: 32px;
    }
    
    .btn-large {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .btn-large i {
        font-size: 14px;
    }
    
    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .trust-info strong {
        font-size: 14px;
    }
    
    .trust-info span {
        font-size: 11px;
    }
}
