:root {
      --cor-laranja: rgb(242, 99, 33);
    --cor-violeta: rgb(72, 42, 114);
    --cor-amarelo: rgb(241, 206, 0);
    --cor-branco: rgb(255, 255, 255);

    /* Cores de apoio */
    --whatsapp-green: #25D366;
    --light-gray: #f9f6f2; /* Um cinza-quente claro */
    --text-color: #333;

    /* Fonte (Mantendo Montserrat) */
    --font-family: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--cor-branco);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 40px; 
    width: auto;
}

.btn-cta-header {
    background-color:  #20b056;
    color: var(--cor-branco);
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-cta-header:hover {
   background-color: #20b056;
}

/* Hero Section */
.hero {
    background-color: var(--cor-laranja);
    padding: 80px 0;
    color: var(--cor-branco);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text .subtitle {
    font-weight: 700;
    color: var(--cor-violeta);
    background-color: var(--cor-amarelo);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-text h2 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0.9;
}

.btn-whatsapp-main {
    background-color: var(--whatsapp-green);
    color: var(--cor-branco);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.btn-whatsapp-main:hover {
    transform: scale(1.05);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cor-laranja);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--cor-branco);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--cor-laranja);
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-container {
    color: var(--cor-violeta);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.2rem;
    color: var(--cor-violeta);
    font-weight: 700;
    margin-bottom: 10px;
}

/* CTA Section */
.cta {
    background-color: var(--cor-violeta);
    color: var(--cor-branco);
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    background-color: var(--whatsapp-green);
    border-color: var(--cor-branco);
}

.cta-button:hover {
    background-color: #20b056;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #e9ecef;
    padding: 20px 0;
    text-align: center;
    color: #6c757d;
    border-top: 1px solid #dee2e6;
}

/* Ícone do WhatsApp (Bootstrap Icons) */
.btn-whatsapp-main i.bi-whatsapp {
    font-size: 1.2rem;
    vertical-align: middle;
    margin-right: 2px;
}

/* ================================================== */
/* ================= Responsividade ================= */
/* ================================================== */

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image {
        margin-top: 40px;
        order: -1; /* Joga a imagem para cima do texto */
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero-text h2, .cta h2, .section-title {
        font-size: 2rem;
    }
    .hero, .features, .cta {
        padding: 60px 15px;
    }
}