* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

:root {
    --bg-color: #ffffff;
    --second-bg-color: #f9f9f9;
    --text-color: #272727;
    --main-color: #2E287D;
    --box-shadow: var(--main-color) transparent;
    --box-shadow2: 0 0 20px rgb(180, 180, 180);
    --nav-color: rgba(255, 255, 255, 0.856);
    /* Ensure transparency */
}

/*DARK THEME*/
.dark-theme {
    --bg-color: #000000;
    --second-bg-color: #131313;
    --text-color: white;
    --main-color: #332f7e;
    --box-shadow: var(--main-color);
    --nav-color: rgba(0, 0, 0, 0.822);
    /* Ensure transparency */
}

html {
    font-size: 60%;
    overflow: auto;
    scrollbar-color: var(--main-color) var(--bg-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 3% 1rem;
    background: var(--nav-color);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.logo {
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.logo span {
    text-shadow: 0 0 25px var(--main-color);
}

.navbar {
    display: flex;
    align-items: center;
    /*center toggle with menus*/
}

.navbar a {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 2px solid transparent;
}

.navbar a:hover

/* , .navbar a.active  */
/**/
    {
    color: var(--main-color);
    /* border-bottom: 3px solid var(--main-color); */
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--main-color);
    display: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/*TOGGLE SLIDER*/
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    /*HIDE DEFAULT CHECKBOX*/
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--main-color);
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="5"></circle><line x1="12" y="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg>');
    height: 26px;
    /*BALL SIZE*/
    width: 26px;
    left: 4px;
    /*push ball from corner*/
    bottom: 4px;
    background-color: var(--bg-color) transparent;
    /*BALL COLOR*/
    -webkit-transition: .4s;
    transition: .5s;
}

input:checked+.slider {
    background-color: var(--main-color);
    /*BAR COLOR*/
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--bg-color);
}

/*lua*/
input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    color: white;
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"></path></svg>');
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
    /*radius bar*/
}

.slider.round:before {
    border-radius: 50%;
    /*radius ball*/
}

/*END TOGGLE*/

section {
    min-height: 100vh;
    padding: 10rem 5% 10rem;
}

.home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8rem;
    margin-bottom: -116px;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    text-align: left;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: -50px;
}

span {
    color: var(--main-color)
}

.logo span {
    color: var(--main-color);
}

.home-content h3 {
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-size: 3.5rem;
}

.home-content h1 {
    font-size: 6rem;
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 1;
}

.home-img {
    /* width: 100%; */
    height: auto;
}

.home-img img {
    display: flex;
    justify-content: center;
    position: relative;
    top: 3rem;
    width: 600px;
    border-radius: 5px;
    box-shadow: 0 0 15px var(--box-shadow);
    cursor: pointer;
    transition: 0.4s ease-in-out;
    margin-bottom: 90px;
}

.home-img img:hover {
    box-shadow: 0 0 25px var(--box-shadow),
        0 0 50px var(--box-shadow),
        0 0 100px var(--box-shadow);
    transform: scale(1.02);
    opacity: 0.8;
}

.home-content p {
    display: block;
    text-align: justify;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.8;
    max-width: 1000px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7.5rem;
    height: 7.5rem;
    background: transparent;
    /* border: 2px solid var(--main-color); */
    /*argola redonda das redes sociais*/
    font-size: 2rem;
    border-radius: 50%;
    color: var(--main-color);
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease-in-out;
}

.social-icons a:hover {
    color: var(--text-color);
    transform: scale(1.1)translateY(-5px);
    box-shadow: 0 0 25px var(--main-color);
    background-color: var(--main-color);
    color: var(--bg-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    box-shadow: 0 0 25px var(--box-shadow);
    border-radius: 4rem;
    font-size: 1.6rem;
    color: var(--bg-color);
    border: 2px solid transparent;
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--main-color);
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-group a:nth-of-type(2) {
    background-color: var(--bg-color);
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 25px transparent;
}

.btn-group a:nth-of-type(2):hover {
    box-shadow: 0 0 25px var(--box-shadow);
    background-color: var(--main-color);
    color: var(--bg-color);
}

.text-animation {
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
}

.text-animation span {
    position: relative;
}

.text-animation span::before {
    content: "Frontend Developer";
    color: var (--main-color);
    animation: words 20s infinite;
}

.text-animation span::after {
    content: "";
    background-color: var(--bg-color);
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    border-left: 2px solid var(--bg-color);
    right: -8px;
    animation: cursor 0.6s infinite, typing 20s steps(14) infinite;
}

@keyframes cursor {
    to {
        border-left: 2px solid var (--main-color);
    }
}

@keyframes words {

    0%,
    20% {
        content: "Marketing";
    }

    21%,
    40% {
        content: "Sites";
    }

    41%,
    60% {
        content: "Social Mídia";
    }

    61%,
    80% {
        content: "SEO";
    }

    81%,
    100% {
        content: "Fotografia";
    }
}

@keyframes typing {

    10%,
    15%,
    30%,
    35%,
    50%,
    55%,
    70%,
    75%,
    90%,
    95% {
        width: 0;
    }

    5%,
    20%,
    25%,
    40%,
    45%,
    60%,
    65%,
    80%,
    85% {
        width: calc(100% + 8px);
    }
}

.heading {
    font-size: 5rem;
    text-align: center;
    margin: 5rem 0;
}

.education {
    padding: 100px 15px;
    background: var(--second-bg-color);
}

.education h2 {
    margin-bottom: 5rem;
}

.timeline-items {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.timeline-items::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: var(--main-color);
    left: calc(50% - 1px);
}

.timeline-item {
    margin-bottom: 40px;
    width: 100%;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    height: 21px;
    width: 21px;
    background-color: var(--main-color);
    box-shadow: 0 0 25px var(--main-color),
        0 0 50px var (--main-color);
    position: absolute;
    left: calc(50% - 8px);
    border-radius: 50%;
    top: 10px;
}

.timeline-date {
    font-size: 20px;
    font-weight: 800;
    color: --text-color;
    margin: 6px 0 15px;
}

.timeline-content {
    background-color: var(--bg-color);
    border: 2px solid var(--main-color);
    padding: 30px 50px;
    border-radius: 4rem;
    box-shadow: 0 0 10px var(--main-color);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--main-color);
}

.timeline-content h3 {
    font-size: 20px;
    color: --text-color;
    margin: 0 0 10px;
    font-weight: 500;
}

.timeline-content p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}

/* ::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}

::-webkit-scrollbar-track {
    background-color: grey;
    width: 50px;
} */

.bx {
    font-size: 6rem;
    cursor: pointer;
}

/*RESIZE SOCIAL ICON*/
/* .projects {
    background-color: var(--bg-color);
    color: var(--bg-color);
}

.projects h2 {
    margin-bottom: 5rem;
    color: --text-color;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2.5rem;
}

.project-box {
    background-color: var(--main-color);
    height: 300px;
    border-radius: 3rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.project-box:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    border: 5px solid var(--main-color);
    transform: scale(1.03);
    box-shadow: 0 0 50px var(--main-color);
}

.project-box .project-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    max-height: 200px;
    padding: 5rem 5rem;
}

.project-info h4 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 2;
}

.project-info p {
    font-size: 1.6rem;
    font-weight: 600;
    max-height: 100px;
    line-height: 1.7;
    margin: auto;
} */


/*price new, era o blog*/
.pricing {
    background-color: var(--bg-color);
    padding: 4rem 2rem;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 6rem;
    padding: 1rem;
}

.price-box {
    background: var(--second-bg-color);
    /* border: 2px solid var(--main-color); */
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    align-self: self-start;
    max-width: 450px;
}

.price-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.price-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--main-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-item {
    font-size: 1.26rem;
    padding: 0.5rem 0;
    text-align: left;
    position: relative;
    padding-left: 2.5rem;
}

.feature-item:nth-child(odd) {
    background: rgba(46, 40, 125, 0.1);
}

.feature-item::before {
    content: '\2714';
    position: absolute;
    left: 1rem;
    color: var(--main-color);
    font-weight: bold;
}

.price-btn {
    background: var(--main-color);
    color: var(--bg-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 1.5rem;
    font-size: 1.4rem;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.price-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

/* Blog Section */
.heading {
    font-size: 5rem;
    text-align: center;
    margin: 5rem 0;
    color: var(--text-color);
    margin-top: 116px;
}

.blog-posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px var(--main-color);
}

.blog-post-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post-info {
    padding: 2rem;
}

.post-date {
    font-size: 1.4rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.post-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.post-description {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--main-color);
    color: var(--bg-color);
    border-radius: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--main-color);
}

/* Responsive Design for Blog Section */
@media (max-width: 991px) {
    .blog-posts-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        overflow: hidden;
    }
    .blog-posts-container {
        grid-template-columns: 1fr;
    }
    .price-box{
        align-self: center;
    }

    .blog-post-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .heading {
        font-size: 4rem;
    }
}

/* Blog Posts Section */
.blog-posts {
    background-color: var(--bg-color);
    padding: 4rem 2rem;
}

.blog-posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 60px;
}

/*verdadeiro*/
.blog-post-card {
    background: var(--second-bg-color);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--box-shadow2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 10px rgb(98, 98, 98);
}

.blog-post-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post-info {
    padding: 2rem;
}

.post-date {
    font-size: 1.4rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.post-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.post-description {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--main-color);
    color: var(--bg-color);
    border-radius: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--main-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .blog-posts-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-posts-container {
        grid-template-columns: 1fr;
    }

    .blog-post-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Blog Post Section */
.blog-post {
    background-color: var(--bg-color);
    /* padding: 8rem 2rem; */
    padding-top: 116px;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--second-bg-color);
    border-radius: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.blog-post h2 {
    font-size: 3.6rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.blog-image {
    width: 80%;
    height: auto;
    border-radius: 1.5rem;
    margin: 3rem 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 2rem 0;
}

.blog-content p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
    margin-bottom: 2.5rem;
    padding: 0 25px 0 25px;
}

/* Highlight keywords */
.blog-content strong {
    color: var(--main-color);
    font-weight: 700;
}

/* Numbered list styling */
.blog-content p:nth-child(-n+5) {
    position: relative;
    padding: 0 25px 0 25px;
}

.blog-content p:nth-child(-n+5)::before {
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: 700;
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .blog-post h2 {
        font-size: 2.8rem;
    }

    .blog-content p {
        font-size: 1.6rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .blog-post {
        padding: 6rem 1rem;
    }

    .blog-post h2 {
        font-size: 2.4rem;
    }

    .blog-content p {
        font-size: 1.5rem;
    }
}

/* Custom scrollbar for webkit browsers */
.blog-content::-webkit-scrollbar {
    width: 8px;
}

.blog-content::-webkit-scrollbar-track {
    background: var(--second-bg-color);
}

.blog-content::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 4px;
}

/* Print styles */
@media print {
    .blog-post {
        padding: 0;
    }

    .container {
        box-shadow: none;
    }

    .blog-content p {
        page-break-inside: avoid;
    }
}

.avaliacoes {
    margin-bottom: -180px;
    margin-top: -80px;
}

.avaliacoes-container {
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
    position: relative;
    background-color: var(--second-bg-color);
    width: 100%;
    margin-bottom: 10px;
    box-shadow: 0 1px 10px var(--main-color), 0 1px 10px var(--main-color);
    font-size: 1.6rem;

}

.avaliacao {
    max-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    text-align: center;
    transition: transform 0.5s ease;
}

.h2-avaliacao {
    text-align: center;

}

.avaliacao h3 {
    margin-top: -10px;
    margin-bottom: -10px;
}

.foto-cliente {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.estrelas {
    color: #ffb400;
    font-size: 1.9rem;
    margin: 0.3rem 0;
}

.texto-avaliacao {
    width: 75%;
    margin: 0 auto;
    /* max-height: 200px; */
    padding: 20px;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    border: none;
    padding: 5px 5px;
    font-size: 50px;
    margin-left: 2rem;
    margin-right: 2rem;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: var(--second-bg-color);
}

.prev:hover,
.next:hover {
    background-color: var(--primary-color);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.bullets {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.bullet {
    width: 10px;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 50%;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

/*wapp*/
/*Whatsapp button*/
.whatsapp-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: rgba(37, 211, 10);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: rgba(37, 211, 10, .9);
    z-index: -1;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

.bullet.active,
.bullet:hover {
    background-color: var(--primary-color);
}


@media (max-width: 1200px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        display: flex;
        /* flex-direction: column; */
        /* align-items: center; */
        justify-content: center;
        min-width: 400px;
    }
}

@media (max-width: 768px) {
    .pricing-container {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}


.testimonials {
    background-color: var(--second-bg-color);
}

.testimonials-box {
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonials .heading {
    margin-bottom: 5rem;
}

.testimonials-box img {
    width: 15rem;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    box-shadow: 0 0 25px var(--box-shadow);
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testimonial-item a {
    color: var(--text-color);
    /* padding: 5px; */
}

.testimonial-item {
    min-height: 450px;
    min-width: 350px;
    background: var(--second-bg-color);
    border: 2px solid var(--main-color);
    border-radius: 2rem;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    /* color: var(--text-color); doesn't matter */
    transition: 0.4s ease-in-out;
}

.testimonial-item:hover {
    border: 3px solid var(--main-color);
    transform: translateY(-10px)scale(1.03);
    box-shadow: 0 0 50px var(--main-color);
}

.testimonial-item h2 {
    font-size: 2.8rem;
}

.testimonial-item p {
    font-size: 1.4rem;
}

.bxs-star {
    color: gold;
    font-size: 2rem;
}

.contact {
    background-color: var(--bg-color);
    margin-top: -116px;
}

.contact h2 {
    margin-bottom: 3rem;
    color: --text-color;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem auto;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact form .input-box input,
.contact form textarea {
    width: 80%;
    /* Adjust the width to be less wide */
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: var(--bg-color);
    border-radius: 1rem;
    border: 2px solid var(--main-color);
    margin: 1rem 0;
    resize: none;
}

textarea {
    height: 138px;
    /* Set height to a maximum of three fields */
    width: 80%;
}

.contact-form .btn {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1.4rem;
}

.footer,
.footer-2 {
    position: relative;
    bottom: 0;
    width: 100%;
    /* padding: 40px 0; */
    background-color: var(--second-bg-color);
}

.footer .social {
    text-align: center;

    padding-top: 20px;
    /* margin-bottom: -20px; */
    color: var(--main-color);
}

.footer .social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background: transparent;
    border: 2px solid var(--main-color);
    font-size: 2rem;
    border-radius: 50%;
    color: var(--main-color);
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease-in-out;
}

.footer .social a:hover {
    transform: scale(1.02)translateY(-10px);
    background-color: var(--main-color);
    color: var(--bg-color);
    box-shadow: 0 0 25px var(--main-color);
}

.footer ul {
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul li a {
    color: var(--text-color);
    border-bottom: 2px solid transparent;
    transition: 0.3s ease-in-out;
}

.footer ul li a:hover {
    border-bottom: 3px solid var(--main-color);

}

.footer ul li {
    display: inline-block;
    padding: 0 15px;
}


/*responsive tablet*/
@media(max-width:1185px) {
    html {
        font-size: 45%;
    }

    .projects-container {
        padding-bottom: 6rem;
        grid-template-columns: repeat(2, 1fr);
        margin: 0 4rem;
    }

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

    .testimonial-item p {
        font-size: 1.8rem;
    }

    .testimonial-item a {
        font-size: x-large;
        padding: 30px;
    }

    .feature-item {
        font-size: 1.7rem;
    }

    .price-btn {
        width: 90px;
        font-size: 1.6rem;
    }
}

/*responsive tablet mini*/
@media(max-width: 991px) {
    header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;
    }

    .feature-item {
        font-size: 1.8rem;
    }

    .timeline-items::before {
        left: 7px;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 37px;
    }

    .timeline-dot {
        left: 0;
    }

    .projects {
        padding-bottom: 7rem;
    }

    .testimonials .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact form {
        flex-direction: column;
        align-items: center;
    }

    .footer {
        padding: 2rem 3%;
    }
}

@media(max-width: 895px) {
    #menu-icon {
        display: block;
        font-size: 6.6rem;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .navbar {
        position: absolute;
        height: 100vh;
        top: 100%;
        right: 0;
        width: 50%;
        padding: 1rem 3%;
        background: var(--nav-color);
        /* Ensure transparency */
        backdrop-filter: blur(4px);
        /* Add backdrop filter */
        -webkit-backdrop-filter: blur(4px);
        /* Add for better browser support */
        border-bottom-left-radius: 2rem;
        /* border-left: 1px solid var(--main-color); */
        border-bottom: 2px solid var(--main-color);
        display: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: translateX(100%);
        opacity: 0;
    }

    .navbar.active {
        display: block;
        transform: translateX(0);
        opacity: 1;
        backdrop-filter: blur(4px);
        /* Ensure blur effect is applied */
        -webkit-backdrop-filter: blur(4px);
        /* Add for better browser support */
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        color: var (--text-color);
    }

    .home {
        flex-direction: column-reverse;
        margin: 3rem 2rem;
        gap: 5rem;
    }

    .home-content h3 {
        font-size: 2.6rem;
    }

    .home-content h1 {
        font-size: 8rem;
        margin-top: 2rem;
    }

    .home-content p {
        font-size: 1.6rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .home-img img {
        width: 56vw;
        margin-bottom: 0;
    }

    .projects h2 {
        margin-bottom: 3rem;
    }

    .projects-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .education {
        margin-top: -70px;
    }

    .projects {
        margin-top: -120px;
    }

    .testimonials {
        margin-top: -120px;
    }

    .contact {
        margin-top: -50px;
    }

    .footer ul {
        font-size: 15px;
    }

}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem auto;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact form .input-box input,
.contact form textarea {
    width: 80%;
    /* Adjust the width to be less wide */
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: var(--bg-color);
    border-radius: 1rem;
    border: 2px solid var(--main-color);
    margin: 1rem 0;
    resize: none;
}

.contact form textarea {
    height: 80px;
    /* Set height to a maximum of three fields */
}

.contact-form .btn {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1.4rem;
}


.call-to-action .contact-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--main-color);
    color: var(--bg-color);
    border-radius: 4rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.call-to-action .contact-button:hover {
    background: var(--bg-color);
    color: var(--main-color);
    border-color: var(--main-color);
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--main-color);
}

.contact-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--main-color);
    color: var(--bg-color);
    border-radius: 4rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .call-to-action {
        margin: 3rem 2rem;
        padding: 3rem 1.5rem;
    }

    .call-to-action p {
        font-size: 2rem;
    }

    .call-to-action .contact-button {
        font-size: 1.6rem;
        padding: 1.2rem 2.5rem;
    }
}


/*novo rodapé*/
.footer {
    background-color: var(--main-color);
    color: var(--bg-color);

    text-align: center;
    box-shadow: 0 0 5px var(--main-color);
}

.footer .social {
    margin-bottom: 5px;
}

.footer .social a {
    color: var(--bg-color);
    margin: 0 10px;
    font-size: 20px;
}

.footer-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-self: center;
    gap: 28px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    position: relative;
    /* linha de separar colunas do footer */
    text-align: start;
}

.footer h4 {
    font-size: 18px;
    padding-top: 30px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column p,
.footer-column a {
    color: var(--bg-color);
    font-size: 14px;
    margin: 5px 0;
    text-decoration: none;
}

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



.copyright {
    /* margin-top: 20px; */
    font-size: 14px;
    padding-top: 10px;
    background-color: var(--main-color);
}

.copyrightimin {
    background-color: var(--main-color);
    padding: 3px;
    padding-bottom: 3px;
}

hr {
    border: 0;
    height: 1px;
    background: var(--bg-color);
}

/* sobre */
.sobre {
    background-color: var(--bg-color);
    padding: 4rem 2rem;
}


.about {
    background-color: var(--bg-color);
    padding: 8rem 2rem;
    min-height: 100vh;
}




.about-img {
    flex: 1;
    min-width: 40%;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 0 3px var(--text-color);
    border-radius: 5px;
}

.about-text {
    flex: 1.5;
    padding: 4rem;
}

.about-text h2 {
    font-size: 3.2rem;
    color: var(--main-color);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
    margin-bottom: 1.5rem;
}




.founder-img {
    margin-bottom: 2rem;
    box-shadow: 0 0 3px var(--text-color);
    transition: transform 0.3s ease;
}



.founder h3 {
    font-size: 2.4rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.founder p {
    font-size: 1.8rem;
    color: var(--text-color);
}

/* tablet */
/* @media (max-width: 968px) {
    .about-content {
        flex-direction: column;
    }

    .about-img {
        min-height: 300px;
    }

    .about-text {
        padding: 3rem;
    }
} */

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 2.8rem;
    }

    .about-text p {
        font-size: 1.6rem;
    }

    .founder h3 {
        font-size: 2rem;
    }

    .founder p {
        font-size: 1.6rem;
    }
}

.blog-post-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}



@media (max-width: 768px) {
    .blog-post-img {
        height: 200px;
    }
}



.about {
    background-color: var(--bg-color);
    padding: 8rem 0;
    /* Removed horizontal padding */
    min-height: 100vh;
}

.about-content {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 65px 0 65px 0;
    gap: 4rem;
    background: var(--second-bg-color);
    border-radius: 0;
    /* Removed border radius */
    overflow: hidden;
    box-shadow: 0 0 5px var(--box-shadow2);
    transition: transform 0.3s ease;
}

/* Rest of about-content styles remain the same */

.founder {
    text-align: center;
    margin-top: 5rem;
    background: var(--second-bg-color);
    width: 100%;
    box-shadow: 0 0 5px px var(--box-shadow2);
    padding: 20px 0 20px 0;
}

p.founder-bach {
    font-size: 1.3rem;
}

/* ...existing code... */

.projects-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    margin-top:-50px;
}

.project-box {
    background-color: var(--second-bg-color);
    border-radius: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    margin-top: 60px;
}

.project-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.project-info {
    padding: 2rem;
    text-align: center;
}

.project-info h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--main-color);
}

.project-info p {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.project-img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
    }
}

/* ...existing code... */