@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap');

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3FFF00;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: 999999;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 0.2s ease-in;
}

#loading-percentage {
    font-size: 4rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

a,
li {
    text-decoration: none;
    list-style: none;
    color: var(--white);
}

::-webkit-scrollbar {
    width: 4px;
    color: #3FFF00;
    transition: all .4s ease;
}

::-webkit-scrollbar-thumb {
    background: #3FFF00;
    border-radius: 4px;
    width: 4px;
    transition: all .4s ease;
}

::-webkit-scrollbar-track {
    background: var(--black);
    border-radius: 4px;
    width: 4px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

:root {
    --blue: #007BFF;
    --black: #050505;
    --white: #fafafa;
    --gray: #c9c9c9;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: var(--black);
    color: var(--white);
    padding: 0rem 1.8rem;
    width: 100%;
    height: 100vh;
    line-height: 1.4;
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;

    
}
#custom-translate {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 10px;
}

#custom-translate button {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

#custom-translate button:hover {
    background-color: #ddd;
}

/* PARTICLES JS */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* BTN PADRÃO */
.btn {
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 10px;
    background-color: var(--blue);
    color: var(--white);
    font-size: 1.2rem;
}

/* HEADLINE SECTION PAGES */
.headline {
    width: 100%;
    padding: 1.5rem 0rem 1.5rem 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.headline h1 {
    font-size: 2rem;
}

.headline span {
    font-size: 1.3rem;
}

.filter-buttons {
    text-align: center;
    margin-bottom: 30px;
    padding: 1.5rem 0rem 1.5rem 0rem;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.filter-buttons button {
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 1rem;
    transition: background-color 0.3s;
    
}

.filter-buttons button:hover {
    background-color: #0056b3;
}


/* HEADER */
.header {
    width: 100%;
    padding: 1rem 0rem;
    height: 90px;
    transition: background-color 0.4s ease-in-out;
    z-index: 10;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1rem 1.8rem;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    transition: all 0.5s ease-in-out;
}

.container-header {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
}

.destaque {
    color: #3FFF00;
}

.menu-icon {
    font-size: 1.8rem;
    z-index: 999;
    user-select: none;
}

.menu-navegacao {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    background-color: var(--black);
    z-index: 99999;
    display: block;
    opacity: 0;
    transition: right 0.3s ease-out, opacity 0.3s ease-out;
    user-select: none;
}

.open {
    right: 0;
    opacity: 1;
}

.slide-in {
    right: 0;
    opacity: 1;
}

.close-icon {
    user-select: none;
    position: absolute;
    font-size: 2.2rem;
    right: 0;
    top: 0;
    margin-top: 1.7rem;
    margin-right: 1.6rem;
}

.lista-navegacao {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.lista-navegacao li {
    font-size: 2.5rem;
    transition: all.3s ease;
    cursor: pointer;
    text-decoration: none;
    padding: 5px 15px; 
    transition: all 0.3s ease;
    border-radius: 50%; 
    border: 2px solid transparent;
}

.lista-navegacao li:hover {
    color: #3FFF00;
    border-color: #3FFF00;
}

/* HOME */
.home {
    width: 100%;
    height: calc(100% - 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-home {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.text-home {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.text-home h1 {
    font-size: 2.1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin: -2px;
    z-index: 9;
}

.text-home span {
    font-size: 1.6rem;
    font-weight: 300;
    z-index: 9;
}

.redes-sociais {
    position: absolute;
    bottom: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
}

.redes-sociais a {
    transition: all 0.2s ease-in;
    font-size: 1.5rem;
    color: var(--gray);
    transform: translateY(0);
}

.redes-sociais a:hover {
    transform: translateY(-5px);
}

.redes-sociais a:hover .fa-github {
    color: #454545;
}

.redes-sociais a:hover .fa-linkedin {
    color: #0e76a8;
}

.redes-sociais a:hover .fa-tiktok {
    color: #353535;
}

.redes-sociais a:hover .fa-instagram {
    color: #e4405f;
}
.redes-sociais a:hover .fa-spotify {
    color: #3FFF00;
}

/* ABOUT */
.about {
    width: 100%;
    height: auto;
    padding: 0rem 0rem 2.5rem 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none; 
}

.container-about {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.content-about {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.content-about-left {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

.content-about-left span {
    font-size: 1.6rem;
    font-weight: 300;
}

.content-about-left h1 {
    font-size: 1.5rem;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}
.content-about-left h2 {
    font-size: 1.48rem;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

.content-about-left p {
    font-size: 1.1rem;
    font-weight: 300;
    padding-top: 1.5rem;
    color: var(--gray);
}


.cta-about {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    padding-top: 1.6rem;
}

.btn-about {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-social {
    width: 100%;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: start;
    cursor: pointer;
    padding-top: 1.6rem;
    height: 100%;
}

.about-social a {
    font-size: 1.5rem;
    color: var(--white);
    transition: transform 0.3s ease, color 0.3s ease;
    transform: translateY(0);
}

.about-social a:hover {
    transform: translateY(-5px);
}

.about-social a:hover .fa-github {
    color: #454545;
}

.about-social a:hover .fa-linkedin {
    color: #0e76a8;
}

.about-social a:hover .fa-tiktok {
    color: #353535;
}

.about-social a:hover .fa-instagram {
    color: #e4405f;
}
.about-social a:hover .fa-spotify {
    color: #3FFF00;
}
.about-social img{
    border-radius: 5px;
    width: 40px;
    height: 30px;
}  

.content-about-right {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.img-about img {
    width: 100%;
    border-radius: 50px;
    cursor: zoom-in;
    user-select: none; 
}
.img-about {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.powerbi{
    position: relative; 
    width: 100%; 
    padding-top: 56.25%; 
    margin-left: 20%;
}
.powerbi iframe{
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 80%; 
    height: 75%;
}
.inv-powerbi{
    display: none;

}

.carousel-track, .carousel-track2, .carousel-track3{
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.carousel-track img, .carousel-track2 img, .carousel-track3 img {
    width: 100%;
    flex-shrink: 0;
    user-select: none; 
    cursor: zoom-in;
}

/* Botões de navegação */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.nav-btn:hover {
    font-size: 30px;
    transition: 0.1s;
}

.prev, .prev2, .prev3 {
    left: 10px;
}

.next, .next2, .next3 {
    right: 10px;
}
.modal {
    display: none; /* Isso é ESSENCIAL */
    position: fixed;
    z-index: 1000;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

.modal-content {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
    object-fit: contain; /* Garante que a imagem se encaixe */
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

/* Oculta a scrollbar */
.carousel-track::-webkit-scrollbar, .carousel-track2::-webkit-scrollbar, .carousel-track3::-webkit-scrollbar {
    display: none;
}

/* Estilos base para o ícone do chevron */
.chevron-down {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.4s ease-out;
    opacity: 0;
    user-select: none;
}

.chevron-down img {
    width: 32px;
}

/* Animação para o movimento suave do chevron */
@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

/*SKILLS*/
.skills {
    width: 100%;
    height: auto;
    padding: 2.5rem 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-skills {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.skills-headline {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
}

.skills-headline span {
    font-size: 1.6rem;
    font-weight: 300;
}

.skills-headline h1 {
    font-size: 2rem;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.skills-headline p {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 300;
    padding-top: 1.6rem;
    color: var(--gray);
}

.list-about {
    padding-top: 1.6rem;
}

.container-list {
    display: flex;
    gap: 2rem;
}

.container-list i {
    color: var(--blue);
}

.list-about li {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gray);
}

.skills-info {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 2rem 0rem;
}

.card-tech {
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    transition: transform 0.3s ease;
}

.card-tech img {
    width: 50%;
    opacity: 1;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.card-tech:hover {
    transform: translateY(-5px);
}

.card-tech:hover img {
    opacity: 0.6;
    filter: brightness(0) invert(1);
}

.card-tech:hover img[data-tech="html"] {
    filter: sepia(1) hue-rotate(-35deg) saturate(5);
}

.card-tech:hover img[data-tech="css"] {
    filter: sepia(1) hue-rotate(180deg) saturate(10);
}

.card-tech:hover img[data-tech="js"] {
    filter: sepia(1) hue-rotate(45deg) saturate(10);
}

.card-tech:hover img[data-tech="bootstrap"] {
    filter: sepia(1) hue-rotate(265deg) saturate(8);
}

.card-tech:hover img[data-tech="wordpress"] {
    filter: sepia(1) hue-rotate(190deg) saturate(10);
}

.card-tech:hover img[data-tech="wix"] {
    filter: sepia(1) hue-rotate(55deg) saturate(10);
}

/*SERVICES*/
.services {
    user-select: none;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-services {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.content-services {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.card-service {
    background-color: #151515;
    border-radius: 25px;
    max-width: 320px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 15px;
    overflow: hidden;
}

.card-service i {
    width: 90px;
    height: 90px;
    display: flex;
    border-radius: 25%;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    background-color: var(--blue);
}

.card-service i {
    transition: all .8s ease;
}

.card-service:hover i {
    box-shadow: 0px 0px 0px 200px var(--blue);
}

.card-service h2 {
    font-size: 1.2rem;
}

.card-service p {
    color: var(--white);
    font-weight: 400;
    font-size: 1rem;
}


/* TESTIMONIAL */
.testimonial {
    width: 100%;
    height: auto;
    padding: 2.5rem 0rem 0rem 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-testimonial {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-testmonial {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-headline {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
}

.testimonial-headline span {
    font-size: 1.6rem;
    font-weight: 300;
}

.testimonial-headline h1 {
    font-size: 1.7rem;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.testimonial-headline p {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 300;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    color: var (--gray);
}

.testimonial-info {
    user-select: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0rem 2rem 0rem;
}

.item {
    user-select: none;
    background-color: #151515;
    border-radius: 25px;
    max-width: 300px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
}

.item img {
    border-radius: 100px;
    height: 100px;
    max-width: 100px;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: all .8s ease;
}

.item:hover img {
    box-shadow: 0px 0px 0px 200px var(--blue);
}

.item h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
}

.item span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--gray);
    margin-bottom: -5px;
}

.item p {
    font-size: 1rem;
    color: var(--gray);
    font-weight: normal;
    margin-top: 1rem;
}

/* PROJECTS */
.projects {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
}

.container-projects {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.content-projects {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container dos cards */
.cards-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

/* Card individual */
.card-project {
    background-color: #151515;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    height: 100%;
}

.card-project:hover {
    transform: translateY(-5px);
}

/* Imagem do projeto */
.img-project {
    background-color: var(--white);
    border-radius: 25px;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.img-project img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Conteúdo do card */
.content-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

/* Texto do projeto */
.text-project {
    width: 100%;
    text-align: left;
}

.text-project h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 1rem 0 0.5rem;
}

.text-project span {
    font-size: 1rem;
    color: var(--blue);
    font-weight: 300;
    display: block;
    margin-bottom: 0.5rem;
}

.text-project p {
    font-size: 1rem;
    font-weight: normal;
    color: var(--gray);
    margin-bottom: 1rem;
}

/* Seção de tags e botão */
.cta-project {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
}

.tag-project {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag-project i {
    font-size: 1.5rem;
    color: var(--white);
    transition: color 0.3s ease;
}

/* Efeito de hover nos ícones */
.tag-project i:hover.fa-html5 {
    color: #e34c26;
}
.tag-project i:hover.fa-database{
    color: #21759B;
}
.tag-project i:hover.fa-sheet-plastic{
    color: darkolivegreen;
}


.tag-project i:hover.fa-css3-alt {
    color: #1572B6;
}

.tag-project i:hover.fa-js {
    color: #F7DF1E;
}

.tag-project i:hover.fa-bootstrap {
    color: #7952B3;
}

.tag-project i:hover.fa-wordpress {
    color: #21759B;
}

.tag-project i:hover.fa-wix {
    color: #8c8c8c;
}


.btn-project a {
    display: block;
    text-align: center;
    padding: 0.7rem;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-project a:hover {
    background-color: #0056b3;
}

/* CONTACT */
.contact {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-contact {
    width: 100%;
    height: 100%;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    flex-grow: 1;
}

.headline {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.headline h1 {
    font-size: 2rem;
}

.headline span {
    font-size: 1.3rem;
}

.content-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-grow: 1;
}

.left-contact,
.right-contact {
    width: 100%;
}

.text-contact h1 {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}

.text-contact p {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gray);
}

.list-contact {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
}

.container-list {
    display: flex;
    gap: 1rem;
}

.container-list ul {
    width: 100%;
}

.container-list li {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.container-list i {
    color: var(--blue);
    font-size: 1.2rem;
}

.redes-sociais-contato {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 1rem;
}

.redes-sociais-contato span {
    font-size: 1.5rem;
}

.redes-sociais-contato a {
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: var(--gray);
    transform: translateY(0);
}

.redes-sociais-contato a:hover {
    transform: translateY(-5px);
}

.redes-sociais-contato a:hover .fa-github {
    color: #454545;
}

.redes-sociais-contato a:hover .fa-linkedin {
    color: #0e76a8;
}

.redes-sociais-contato a:hover .fa-tiktok {
    color: #353535;
}
.redes-sociais-contato a:hover .fa-spotify {
    color: #3FFF00;
}

.redes-sociais-contato a:hover .fa-instagram {
    color: #e4405f;
}

.right-contact h2 {
    width: 100%;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 1rem;
}

.right-contact form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.right-contact label {
    font-size: 1rem;
    color: var(--white);
}

.right-contact input,
.right-contact textarea {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: var(--white);
    font-size: 1rem;
}

.right-contact .btn {
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 10px;
    background-color: var(--blue);
    color: var(--white);
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.right-contact .btn:hover {
    background-color: #0056b3;
}

.success-message {
    display: none;
    color: var(--green);
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Footer */
.footer {
    width: 100%;
    padding: 1rem;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777777;
    font-size: 1rem;
    text-align: center;
}