@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* General Styles */
:root {
    --primary-color: #181A1B;
    --secondary-color: #00ff99;
    --accent-color: #00c37e;
    --text-color: #fff;
    --light-bg: #232526;
    --card-bg: #232526;
    --card-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
}

body {
    background: var(--primary-color);
    color: var(--text-color);
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 80px;
}

/* Navbar Styles */
.navbar, .footer, footer {
    background: var(--primary-color) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.navbar-brand i {
    color: var(--secondary-color);
}

.nav-link, .navbar-brand, .footer, footer, .section-header h2 {
    color: var(--text-color) !important;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #181A1B 60%, #00ff99 100%);
    color: var(--text-color);
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.hero .logo-hero {
    max-width: 220px;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--secondary-color);
    text-shadow: 0 2px 16px rgba(0,255,153,0.10);
}

.hero .lead {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 32px;
}

.hero .btn-cta {
    background: var(--secondary-color);
    color: #181A1B;
    font-weight: 700;
    border-radius: 30px;
    padding: 14px 38px;
    font-size: 1.1rem;
    box-shadow: 0 4px 24px 0 rgba(0,255,153,0.15);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hero .btn-cta:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

/* Services Section */
.service-card {
    background: var(--card-bg);
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    padding: 38px 24px 32px 24px;
    margin-bottom: 32px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    border: none;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 40px 0 rgba(0,255,153,0.10);
}

.service-icon {
    background: #181A1B;
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 2.7rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px auto;
    box-shadow: 0 2px 12px 0 rgba(0,255,153,0.10);
}

/* Marketing Digital Cards */
.marketing-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, #2a2d2e 100%);
    border: 1px solid rgba(0,255,153,0.1);
    position: relative;
    overflow: hidden;
}

.marketing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.marketing-card:hover::before {
    opacity: 1;
}

.marketing-card .service-icon {
    background: linear-gradient(145deg, var(--secondary-color), var(--accent-color));
    color: #181A1B;
    font-weight: bold;
}

.marketing-card h3 {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.marketing-card p {
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    color: #bdbdbd;
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.service-features li:last-child {
    margin-bottom: 0;
}

/* Marketing Section Background */
#marketing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#marketing .section-header h2,
#marketing .section-header p {
    color: #181A1B !important;
}

#marketing .section-header h2 {
    color: var(--primary-color) !important;
}

#marketing .section-header p {
    color: #6c757d !important;
}

.diferencial-item {
    background: var(--card-bg);
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    padding: 32px 24px;
    margin-bottom: 32px;
    text-align: center;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.diferencial-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(0,255,153,0.10);
}

.diferencial-icon {
    background: #181A1B;
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 2.2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    box-shadow: 0 2px 12px 0 rgba(0,255,153,0.10);
}

/* Cases Section */
.case-card {
    background: none;
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 32px;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.case-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.3s, transform 0.3s;
}

.case-card:hover img {
    filter: brightness(0.95);
    transform: scale(1.04);
}

.case-card .p-4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(24,26,27,0.95) 70%, rgba(24,26,27,0.0) 100%);
    color: #fff;
    padding: 28px 24px 18px 24px;
}

/* Contact Form (restaurado para fundo preto e texto branco) */
.contact-form {
    background: var(--card-bg);
    padding: 40px 32px;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    margin-bottom: 32px;
    color: #fff;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #333;
    padding: 14px;
    background: #181A1B;
    color: #fff;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,255,153,0.10);
}

/* WhatsApp Button */
.whatsapp-button {
    background-color: var(--secondary-color);
    color: #181A1B;
    border: 2px solid var(--accent-color);
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 16px rgba(0,255,153,0.15);
    transition: transform 0.3s, background 0.2s;
    z-index: 1000;
}

.whatsapp-button:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: scale(1.08);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero {
        padding: 80px 0 40px 0;
    }
    .hero h1 {
        font-size: 2.1rem;
    }
    .case-card img {
        height: 160px;
    }
    .marketing-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .service-card, .diferencial-item, .contact-form {
        padding: 18px 10px;
    }
    .hero {
        padding: 60px 0 20px 0;
    }
    .marketing-card {
        padding: 24px 16px;
    }
    .service-features li {
        font-size: 0.85rem;
    }
    .marketing-card .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .marketing-card {
        padding: 20px 12px;
    }
    .service-features {
        text-align: center;
    }
    .service-features li {
        justify-content: center;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2,
.section-header p {
    color: #fff !important;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

/* Contact Section Text Colors */
#contato .p-4,
#contato .p-4 h3,
#contato .p-4 h5,
#contato .p-4 p {
    color: #fff !important;
}

#contato .p-4 h3 {
    color: var(--secondary-color) !important;
}

#contato .p-4 h5 {
    color: var(--secondary-color) !important;
}

footer {
    background: var(--primary-color);
    color: #bdbdbd;
    padding: 40px 0 20px 0;
    font-size: 1rem;
}

footer h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 18px;
}

footer .social-links a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 12px;
    transition: color 0.2s;
}

footer .social-links a:hover {
    color: var(--accent-color);
} 