body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #FFD700;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

nav a:hover {
    opacity: 0.7;
}

.btn-primary {
    background-color: #E74C3C;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #C0392B;
}

/* Hero Section */
.hero {
    background-color: #FFD700;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-secondary {
    background-color: #E74C3C;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #C0392B;
}

.btn-outline {
    background-color: transparent;
    color: #333;
    padding: 12px 30px;
    border-radius: 5px;
    border: 2px solid #333;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #333;
    color: white;
}

.hero-image {
    background: linear-gradient(135deg, #FFE082 0%, #FFC107 100%);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-align: center;
    padding: 20px;
}

/* Benefits Section */
.benefits {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.section-title.text-white {
    color: white;
}

.section-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 50px;
    font-size: 14px;
}

.section-subtitle.text-white {
    color: rgba(255,255,255,0.9);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #E0E0E0 0%, #F5F5F5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.benefit-content {
    padding: 20px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Yellow Section */
.yellow-section {
    background-color: #FFD700;
    color: #333;
    padding: 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Orange Section */
.orange-section {
    background-color: #E67E22;
    color: white;
    padding: 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.orange-image {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.orange-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.orange-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.orange-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-yellow {
    background-color: #FFD700;
    color: #333;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn-yellow:hover {
    background-color: #FFC107;
}

/* How it Works */
.how-it-works {
    padding: 80px 40px;
    background-color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    font-weight: bold;
    color: #E74C3C;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.step-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 60px 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.partners-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    background: transparent;
    border-radius: 8px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Why MYBE */
.why-mybe {
    padding: 40px 40px;
    background-color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: 20px;
}

.why-icon {
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
}

.why-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.why-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* FAQ */
.faq {
    padding: 80px 40px;
    /*background-color: #f9f9f9;*/
    background-color: #E67E22;
    color: white;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
}

.faq-subtitle {
    text-align: center;
    color: white;
    font-weight: bold;
    margin-bottom: 50px;
    font-size: 14px;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    font-size: 20px;
    color: #E74C3C;
}

/* Contact */
.contact {
    padding: 80px 40px;
    background-color: white;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px;
}

.contact-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.contact-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 40px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E74C3C;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background-color: #E67E22;
    color: white;
    padding: 14px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #C0392B;
}

/* App Download */
.app-download {
    background-color: #FFD700;
    padding: 60px 40px;
    text-align: center;
}

.app-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.app-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-btn {
    background-color: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.app-btn:hover {
    background-color: #555;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: #999;
    padding: 40px;
    font-size: 13px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-section a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #666;
}

.meu-banner {
    height: 180px;
}

/* Responsive */
@media (min-width: 1200px) {
    .meu-banner {
      height: 350px;
    }
}

@media (max-width: 768px) {
    .meu-banner {
      height: 290px;
    }

    header {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .benefits-grid,
    .steps-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .orange-section {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .meu-banner {
        height: 190px;
    }
    .hero-content h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Additional custom styles if needed */
.product-card {
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.bg_mybeblue { background-color: #1c4469; --tw-bg-opacity: 1;}
.text_mybeblue { color: #1c4469; --tw-text-opacity: 1;}
.bg_mybegray { background-color: #868783; --tw-bg-opacity: 1;}
.text_mybegray { color: #868783; --tw-text-opacity: 1;}
.bg_mybeorange { background-color: #E67E22; --tw-bg-opacity: 1;}
.text_mybeorange { color: #E67E22; --tw-text-opacity: 1;}
.bg_mybeyellow { background-color: #FFD700; --tw-bg-opacity: 1;}
.bg_mybeicon { background-color: rgb(236 158 47);}
.bg_mybeiconh { background-color: rgb(208 127 11);}