/* ====================================
   CRIAÇÃO DE BANNERS - CSS ULTRA MODERNO
   Cores: #000000 (preto), #FF4000 (laranja), #FFFFFF (branco)
   
   IMPORTANTE: Todos os estilos são aplicados apenas dentro das sections específicas
   para não interferir com o resto do site
   ==================================== */

/* ========== VARIÁVEIS ========== */
:root {
    --primary-orange: #FF4000;
    --secondary-orange: #FF6B35;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --white: #FFFFFF;
    --gradient-orange: linear-gradient(135deg, #FF4000 0%, #FF8C00 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

/* ========== HERO SECTION ========== */
.banner-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
    padding: 180px 0 100px;
}

.banner-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grid-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 64, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 64, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-orange);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary-orange);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-orange);
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

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

.banner-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-orange);
    margin-bottom: 20px;
    display: inline-block;
}

.banner-hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.banner-hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 520px;
}

.banner-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 64, 0, 0.1);
    border: 1px solid rgba(255, 64, 0, 0.3);
    border-radius: 30px;
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
}

.feature-badge i {
    color: var(--primary-orange);
    font-size: 18px;
}

.banner-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
}

.banner-primary-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;
}

.banner-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 64, 0, 0.4);
    color: var(--white);
}

.banner-primary-btn:hover::before {
    left: 100%;
}

.banner-secondary-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.banner-secondary-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Preview Container com Banners Animados */
.banner-preview-container {
    position: relative;
    height: 500px;
}

.preview-screen {
    position: relative;
    width: 100%;
    height: 450px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 64, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.preview-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.preview-banner.active {
    opacity: 1;
    transform: scale(1);
}

.banner-mockup {
    width: 100%;
    max-width: 400px;
    height: 250px;
    background: var(--gradient-orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 64, 0, 0.3);
}

.banner-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mockup-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.mockup-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.mockup-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.mockup-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.mockup-cta {
    display: inline-block;
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary-orange);
    font-weight: 700;
    border-radius: 30px;
}

.banner-mockup.style-2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.banner-mockup.style-3 {
    background: linear-gradient(135deg, #FF8C00 0%, #FFB300 100%);
}

.preview-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.control-btn {
    width: 12px;
    height: 12px;
    background: rgba(255, 64, 0, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn.active {
    background: var(--primary-orange);
    width: 40px;
    border-radius: 10px;
}

.control-btn:hover {
    background: var(--primary-orange);
}

/* ========== BANNER TYPES SECTION ========== */
.banner-types-section {
    padding: 120px 0;
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.banner-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 64, 0, 0.08) 0%, transparent 60%);
}

.section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.banner-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.type-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(255, 64, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-orange);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.type-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 60px rgba(255, 64, 0, 0.2);
}

.type-card:hover::before {
    opacity: 0.08;
}

.type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.type-card:hover .type-icon {
    transform: rotateY(360deg);
}

.type-icon i {
    font-size: 36px;
    color: var(--white);
}

.type-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.type-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.type-dimensions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.type-dimensions span {
    padding: 8px 16px;
    background: rgba(255, 64, 0, 0.1);
    border: 1px solid rgba(255, 64, 0, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-orange);
    font-weight: 600;
}

.type-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.type-card:hover .type-hover-effect {
    transform: scaleX(1);
}

/* ========== CREATIVE PROCESS SECTION ========== */
.creative-process-section {
    padding: 120px 0;
    background: var(--black);
    position: relative;
}

.process-interactive {
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline-vertical {
    position: relative;
}

.process-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-number {
    font-size: 80px;
    font-weight: 900;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 120px;
    text-align: center;
}

.process-content {
    flex: 1;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(255, 64, 0, 0.2);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.5s ease;
}

.process-item:hover .process-content {
    border-color: var(--primary-orange);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(255, 64, 0, 0.2);
}

.process-item:nth-child(even):hover .process-content {
    transform: translateX(-10px);
}

.process-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-icon-wrapper i {
    font-size: 28px;
    color: var(--white);
}

.process-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.process-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.process-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.process-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* ========== DIFFERENTIALS SECTION ========== */
.differentials-section {
    padding: 120px 0;
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.differentials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(255, 64, 0, 0.08) 0%, transparent 60%);
}

.differential-card {
    background: var(--black);
    border: 1px solid rgba(255, 64, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s ease;
    height: 100%;
    margin-bottom: 30px;
}

/* Adicionar espaço extra na segunda linha */
.differentials-section .row > div:nth-child(n+4) .differential-card {
    margin-top: 30px;
}

.differential-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 60px rgba(255, 64, 0, 0.2);
}

.diff-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.differential-card:hover .diff-icon {
    transform: scale(1.1) rotate(360deg);
}

.diff-icon i {
    font-size: 32px;
    color: var(--white);
}

.differential-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.differential-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ========== FAQ SECTION ========== */
.banner-faq-section {
    padding: 120px 0;
    background: var(--dark-gray);
}

.faq-container {
    margin-top: 60px;
}

.faq-item {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(255, 64, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-orange);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 64, 0, 0.05);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 20px;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ========== CTA FINAL ========== */
.banner-final-cta {
    padding: 120px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-particles {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 64, 0, 0.15) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    text-decoration: none;
}

.cta-final-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.cta-final-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 64, 0, 0.4);
    color: var(--white);
}

.cta-final-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 991px) {
    .banner-hero-title {
        font-size: 48px;
    }
    
    .banner-hero-section {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .banner-preview-container {
        margin-top: 50px;
    }
    
    .process-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .process-number {
        min-width: auto;
    }
    
    .process-item:hover .process-content {
        transform: translateY(-10px) !important;
    }
    
    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .banner-hero-title {
        font-size: 36px;
    }
    
    .banner-hero-section {
        padding: 20px 0 30px;
        min-height: auto;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .banner-cta-buttons {
        flex-direction: column;
    }
    
    .banner-primary-btn,
    .banner-secondary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .banner-types-grid {
        grid-template-columns: 1fr;
    }
    
    .styles-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-final-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Alinhar listas à esquerda no mobile */
    .process-list {
        text-align: left;
    }
    
    .process-content {
        text-align: left !important;
    }
    
    /* Reduzir espaço do hero no mobile */
    .banner-hero-content {
        padding: 0;
    }
    
    .banner-hero-description {
        margin-bottom: 30px;
    }
    
    .banner-hero-features {
        margin-bottom: 30px;
    }
}

/* ========== ANIMAÇÕES AOS ========== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-up"] {
    transform: perspective(1000px) rotateX(-90deg);
}

[data-aos="flip-up"].aos-animate {
    transform: perspective(1000px) rotateX(0);
}