body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(to right, #dcc6ff, #d3ffd8);
}

.primeiradiv{
    background: linear-gradient(to right, #3a1b6c,#370686, #4fe25e, #389741);
    padding: 1px;
}

.primeiradiv p{
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

.logo img{
    width: 210px;
    margin-left: 25px;
    margin-top: 1px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    margin-right: 20px;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    padding: 8px 15px;
    border: 2px solid #47c053;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #01700c;
    color: #ffffff;
}

nav ul li a img {
    width: 24px;
    height: 24px;
}

.banner {
    text-align: center;
}

.banner img {
    width: 94%;
}
.blog-grid {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: -20px;
}

.blog-post {
    border: 1px solid #adadad67;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    text-align: center;
}

.blog-post img {
    width: 60%;
    height: auto;
}

.blog-content {
    padding: 15px;
}

.blog-content h2 {
    margin: 0;
    font-size: 1.5em;
    text-align: left;
}

.blog-content p{
    margin: 10px 0;
    color: #696969;
    text-align: left;
}

.blog-content .tags{
    color: #370686;
    font-size: 0.9em;
    border: 1px solid #86ff76;
    background-color: #e2ffdf;
    padding: 5px;
    width: 45%;
    border-radius: 7px;
}

.blog-content .tags a {
    text-decoration: none;
}

.blog-content .tags a:hover {
    text-decoration: none;
    color: #240138;
}

.blog-content .date {
    color: #4710a0;
    font-size: 0.9em;
    text-align: right;
}

.blog-content a {
    color: #3a1b6c;
}

.blog-content a:hover {
    color: #47c053;
}

footer {
    background-color: #370686;
    color: #fff;
    width: 100%;
    padding: 5px 0;
    clear: both;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px;
    margin-left: 120px;
    font-size: 18px;
}

.footer-section {
    flex: 1;
    margin: 10px;
}

.footer-section h4 {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #4fe25e;
}

.footer-section p {
    margin: 5px 0;
}

.social-icons a {
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    border-top: 1px solid #ffffff;
    padding-top: 10px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    margin-top: -5px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.container {
    width: 95%;
    margin: 0 auto;
}

.posts {
    width: 760px;
    background-color: #fff;
    margin-top: 22px;
}

.posts {
    padding: 20px;
}

.posts span{
    color: #3a1b6c;
    font-weight: bold;
    font-size: 28px;
    text-align: right;
}

.posts {
    font-weight: normal;
    font-size: 16px;
}

h2 {
    color: #3a1b6c;
    font-weight: bold;
    font-size: 22px;
    text-align: right;
}

.reviews-container {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    height: auto;
    margin: auto;
    margin-top: -159%;
    margin-left: 65%;
}

h3 {
    margin-bottom: 20px;
    text-align: center;
    color: #3a1b6c;
    font-size: 18px;
    font-weight: bold;
}

h1 {
    margin-bottom: 20px;
    text-align: center;
    color: #3a1b6c;
    font-size: 30px;
    font-weight: bold;
}

.review {
    border-bottom: 1px solid #370686;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-header img {
    width: 60px;
    height: 63px;
    border-radius: 50%;
    margin-right: 18px;
    margin-top: -15px;
}

.review-header p {
    font-weight: bold;
    margin: 0;
    font-size: 18px;
    margin-top: -22px;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
    margin-top: -5px;
}

.review:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.imgdica1 {
    display: flex;
    margin-right: 80px;
    margin-top: -20px;
  }
  
  .img {
    order: 2;
  }

  .imgdica1 a{
    color: #240138;
    text-decoration: none;
    font-size: 13px;
    padding: 2px 6px;
    border-radius: 5px;
    border: 1px solid #8306b4;
    background-color: #d183f0;
  }
  
  .imgdica1 a:hover{
    background-color: #8306b4;
    color: #fff;
  }

  .textodica {
    order: 1; 
    font-size: 16px;
    margin: 5px;
    padding: 10px;
    color: #000000;
  }

  .container2 {
    width: 75%;
    margin: 0 auto;
}

.posts2 {
    width: 1000px;
    background-color: #fff;
    margin-top: 22px;
}

.posts2 {
    padding: 20px;
}

.posts2 span{
    color: #3a1b6c;
    font-weight: bold;
    font-size: 22px;
    text-align: right;
}

.posts2 {
    font-weight: normal;
    font-size: 16px;
}

.posts2 b {
    color: #4710a0;
}

.body3 {
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}
    .container3 {
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(197, 255, 189, 0.411);
    width: 80%;
    max-width: 1100px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.left, .right {
    padding: 40px;
}

.left {
    background-color: #389741;
    color: white;
    width: 40%;
    display: flex;
    flex-direction: column;
}

.left h2 {
    margin-top: 0;
    font-size: 1.5em;
    text-align: left;
    color: #eeffe8;
}

.left p {
    margin: 20px 0;
    font-size: 1em;
    margin-top: -5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    margin-top: -5px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.right {
    width: 60%;
}

.right h2 {
    margin-top: 0;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: left;
    color: #370686;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #370686;
}

.form-group input, .form-group textarea {
    width: 95%;
    padding: 10px;
    border: 1px solid #370686;
    border-radius: 5px;
    font-size: 1em;
    font-family: "Open Sans", sans-serif;
}

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

.buttons a{
    padding: 8px 8px;
    background-color: #3a1b6c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
}

.buttons a:hover {
    background-color: #723fc4;
}

@media screen (max-width:201px) {
    
}