* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text {
    color: #fff;
}

.logo-text h1 {
    font-size: 28px;
    color: #00D9FF;
}

.logo-text p {
    font-size: 12px;
    color: #ccc;
}

.header-cta {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #00D9FF, #0099cc);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00D9FF;
    border: 2px solid #00D9FF;
}

.btn-secondary:hover {
    background: #00D9FF;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content h2 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #00D9FF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content > p {
    font-size: 22px;
    margin-bottom: 30px;
    color: #fff;
    max-width: 800px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Hero Highlight Box - CORES MELHORADAS */
.hero-highlight {
    background: #FFD700;
    padding: 20px 40px;
    border-radius: 15px;
    margin: 20px 0 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    animation: pulse 2s infinite;
    border: 3px solid #FFA500;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.highlight-icon {
    font-size: 40px;
}

.hero-highlight p {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.hero-highlight strong {
    font-size: 22px;
    text-decoration: underline;
    color: #000;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-whatsapp {
    background: #25D366;
    color: #fff;
}

.cta-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.cta-email {
    background: linear-gradient(135deg, #00D9FF, #0099cc);
    color: #fff;
}

.cta-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.5);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #00D9FF;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00D9FF, #0099cc);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a2e;
    text-align: center;
}

.service-card p {
    color: #666;
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.service-price {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #00D9FF;
    margin: 15px 0;
}

.service-features {
    list-style: none;
    padding: 15px 0;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 13px;
}

.service-features li:before {
    content: "✓ ";
    color: #00D9FF;
    font-weight: bold;
    margin-right: 8px;
}

/* Differential Section */
.differential {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.differential-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.differential-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.differential-item h4 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #1a1a2e;
}

.differential-item p {
    color: #666;
}

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: #fff;
    text-align: center;
}

.bonus h2 {
    color: #00D9FF;
    font-size: 40px;
    margin-bottom: 30px;
}

.bonus-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid #00D9FF;
}

.bonus-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #00D9FF;
}

.bonus-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.cta p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 40px 0 20px;
    text-align: center;
}

footer p {
    margin: 10px 0;
}

.footer-contact {
    margin: 20px 0;
}

.footer-contact a {
    color: #00D9FF;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-highlight {
        flex-direction: column;
        padding: 20px;
    }

    .hero-highlight p {
        font-size: 16px;
    }

    .hero-highlight strong {
        font-size: 18px;
    }

    .header-cta {
        flex-direction: column;
        gap: 10px;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .section-title {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
