/* Estilos específicos para integração do banner e elementos visuais */

/* Hero Section com Banner Integrado */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(26, 54, 93, 0.7) 0%, rgba(15, 36, 56, 0.8) 100%),
        radial-gradient(circle at 30% 70%, rgba(201, 169, 110, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border: 4px solid rgba(201, 169, 110, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    mix-blend-mode: normal;
}

.hero-image img:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(201, 169, 110, 0.4);
}

/* Integração com fundo gradiente */
.hero-image {
    position: relative;
    z-index: 2;
    background: transparent;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(201, 169, 110, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
    border-radius: 35px;
    z-index: -1;
    opacity: 0.8;
}

.hero-image img {
    position: relative;
    z-index: 1;
    background: transparent !important;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    width: 100%;
    height: auto;
}

/* Efeito de integração com o fundo */
.hero-section .hero-image img {
    background: transparent !important;
    backdrop-filter: none;
    mix-blend-mode: normal;
    opacity: 1;
}

/* Overlay nos cards de veículos */
.card-overlay {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(15, 36, 56, 0.95) 100%);
    backdrop-filter: blur(5px);
}

/* Stats Cards no Hero */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Botões do Hero */
.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

/* Cards de Contato */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid rgba(201, 169, 110, 0.2);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stats-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 110, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stats-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Icon Boxes */
.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, rgba(201, 169, 110, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(201, 169, 110, 0.3);
}

/* Footer Brand */
.footer-brand img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Social Links */
.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--gradient-secondary);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animações específicas */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

/* Responsividade para o banner */
@media (max-width: 992px) {
    .hero-section {
        text-align: center;
        padding: 6rem 0 4rem;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .stats-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Efeitos de partículas no background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
    animation: particleMove 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes particleMove {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

/* Melhorias na tipografia */
.hero-section h1 {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, #c9a96e 0%, #d4b87a 50%, #b8955a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
