/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-family: 'Monument', sans-serif;
    color: white;
    font-weight: 400;
    font-size: 1.5rem;
}

.header-cta {
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hero Sections */
.hero {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.whaticket-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.automation-hero {
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.subheadline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-item i {
    color: #d4af37;
    font-size: 1.2rem;
}

.hero-cta {
    background: #25d366;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    margin-top: 1rem;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: white;
}

.problems-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

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

.problem-card i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.problem-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.footer-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer-cta {
    background: #25d366;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-section h2 {
        font-size: 2rem;
    }
    
    .footer-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2rem;
    }
    
    .hero-cta, .footer-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .image-placeholder {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text, .problem-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Efeitos de hover nos cards */
.problem-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
} 

.logo-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: #111;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.banner-bg {
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
    margin-bottom: -40px;
}
.banner-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.automation-logo-img {
    width: 260px;
    height: 260px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    background: #fff;
    padding: 12px;
    margin: 0 auto;
    display: block;
} 

.banner-bg-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/logo-banner.png') center center no-repeat;
    background-size: cover;
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}

.hero.whaticket-hero {
    position: relative;
    overflow: hidden;
}

.hero.whaticket-hero .container,
.hero.whaticket-hero .hero-content,
.hero.whaticket-hero .hero-text,
.hero.whaticket-hero .hero-image {
    position: relative;
    z-index: 1;
} 

@font-face {
    font-family: 'Monument';
    src: url('../fonts/MonumentExtended-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Monument';
    src: url('../fonts/MonumentExtended-Ultrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
} 