/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

header .container{
    display: flex;
    justify-content: space-between;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #34a853;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .nav-links {
    list-style: none;
    display: flex;
}

header .nav-links li {
    margin: 0 10px;
}

header .nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.register-btn {
    background: #34a853;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    background: #f4f4f4;
}

.hero .container{
    display: flex;
    justify-content: space-between;
}

.hero-text h2 {
    font-size: 36px;
    color: #333;
}

.hero-text span {
    color: #34a853;
}

.hero-text p {
    margin: 20px 0;
    font-size: 18px;
    color: #666;
}

.hero-text .btn {
    background: #34a853;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.clients {
    text-align: center;
    padding: 40px 0;
    background: #fff;
}

.clients h3 {
    font-size: 24px;
}

.clients .client-logos img {
    margin: 10px;
    width: 80px;
    height: auto;
}

.features {
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.features h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.features .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.feature-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    width: calc(33.33% - 20px); /* Divide o espaço igualmente */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card .icon {
    margin-bottom: 20px;
}

.card .icon img {
    width: 60px;
    height: auto;
}

.card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Primeira Seção (Hero) */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-text {
    max-width: 50%;
}

.hero-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.btn-green {
    display: inline-block;
    background-color: #34a853;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-green:hover {
    background-color: #2a8b44;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Segunda Seção (Estatísticas) */
.stats {
    padding: 40px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.stats-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.stats-header h3 span {
    color: #34a853;
}

.stats-header p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #34a853;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Depoimento */
.testimonial {
    background-color: #f8f8f8;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.testimonial-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

.customer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.customer-logos img {
    height: 40px;
    width: auto;
}

.btn-link {
    color: #34a853;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #2a8b44;
}

/* Artigos */
.articles {
    padding: 40px 20px;
    text-align: center;
}

.articles h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.articles .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.articles-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.article-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    width: calc(33.33% - 20px); /* Ajusta três cartões na mesma linha */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.article-card img {
    width: 100%;
    height: auto;
}

.article-card h3 {
    font-size: 18px;
    color: #333;
    margin: 15px;
}

.article-card .btn-link {
    display: inline-block;
    margin: 0 15px 15px;
    color: #34a853;
    text-decoration: none;
    font-weight: bold;
}

.article-card .btn-link:hover {
    color: #2a8b44;
}
/* Reset Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Estilização da seção de depoimento */
.testimonial-section {
    background-color: #f8f9fb;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: left;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

.author-name {
    color: #34a853;
    font-weight: bold;
    font-size: 16px;
}

/* Logotipos */
.logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logos img {
    height: 40px;
    width: auto;
}

.btn-link {
    color: #34a853;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #2a8b44;
}
/* Reset Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Container Geral */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Estilo do Título da Seção */
.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.blog-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Cartões de Blog */
.blog-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    max-width: 32%;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: left;
}

.card-content h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.read-more {
    color: #34a853;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2a8b44;
}

/* Seção de Chamada */
.cta-section {
    background-color: #f8f9fb;
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #34a853;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2a8b44;
}
.hero {
    background-color: #f8f9fa;
    text-align: center;
    padding: 50px 20px;
  }
  
  .hero h1 {
    margin: 0 0 20px;
    font-size: 2rem;
  }
  
  .hero .button {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
  }
  
  .hero .button:hover {
    background-color: #218838;
  }
  
  .footer {
    background-color: #232629;
    color: #fff;
    padding: 40px 20px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .brand {
    max-width: 300px;
  }
  
  .brand h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .brand p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .socials a {
    margin-right: 10px;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
  }
  
  .socials a:hover {
    color: #ccc;
  }
  
  .links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .column h3 {
    margin-bottom: 15px;
    font-size: 1rem;
  }
  
  .column ul {
    list-style: none;
    padding: 0;
  }
  
  .column ul li {
    margin-bottom: 10px;
  }
  
  .column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .column ul li a:hover {
    text-decoration: underline;
  }
  
  form {
    display: flex;
    gap: 5px;
    align-items: center;
  }
  
  form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
  }
  
  form button {
    padding: 10px 15px;
    border: none;
    background-color: #28a745;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: #218838;
  }
  