:root {
    --primary-text: #2a225a;
    --text: #7f73a1;
    --form-bg: #fafbff;
    --bg: #eaeefd;
    --primary-color: #25D366;
    --secondary-color: #128C7E;
    --accent-color: #34B7F1;
    --text-color: #333;
    --bg-color: #f4f4f4;
    --white: #ffffff;
  }
  
  [data-theme="light"] {
    --primary-text: #fbf9ff;
    --text: #b8bcd2;
    --form-bg: #210856;
    --bg: #493c65;
  }

 * {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
body {
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  min-height: 100vh;
  background: var(--bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.logo-menu{
  height: 48px;
  width: 48px;
}

.navbar.navbar-dark.bg-dark {
  background-color: var(--bg) !important; /* Substitua pela cor desejada */
}
.banner {
  width: auto;
  position: relative;
  margin-bottom: 1.5rem;
}
.rodape {
    background-color: var(--bg);
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-text);
    position: fixed; /* Ou absolute, dependendo do contexto */
    bottom: 0;
    
}


.rodape__texto {
  font-size: 1.1rem;
}

.rodape__icones {
  width: 80px;
  display: flex;
  justify-content: space-between;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}




h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

section {
    padding: 4rem 0;
}



.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(20px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefits {
    background-color: var(--secondary-color);
    color: var(--white);
}

.benefit-list {
    list-style-type: none;
    padding: 0;
}

.benefit-item {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.benefit-item::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

.pricing {
    text-align: center;
    background-color: var(--white);
}

.price {
    font-size: 4rem;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.price-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}


.guarantee {
    font-style: italic;
    color: var(--accent-color);
    margin-top: 1rem;
}

footer {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

