/******************** Fontes usadas */
@import url('https://fonts.cdnfonts.com/css/tt-hoves-pro-trial');
@import url('clash-grotesk.css');

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


:root {
    --font-grande: 'Georgia', serif;
    --font-pequena: 'ClashGrotesk-Light', sans-serif;

    --color-black: #070908;
    --color-gray1: #111816;
    --color-gray2: #848d79;
    --color-white: #e3ddd3;

    --color-destaque1: #d84848;
    --color-destaque2: #1e362b;
    --color-destaque3: #1d362b;
    --primary-color: #2d483a;

    --bg-card: rgba(12, 18, 16, 0.9);
    --border-glass: rgba(128, 0, 0, 0.4);
    --shadow-glow: rgba(128, 0, 0, 0.2);

    --bg-roxo: #20212A;

    --bg-gradient: linear-gradient(180deg, #070908 0%, #200505 100%);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    background: var(--color-destaque1);
    border-radius: 10px;
    border: 2px solid var(--color-black);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-white);
    box-shadow: 0 0 10px var(--shadow-glow);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-black);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-pequena);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.3s ease-out;
    background:
        radial-gradient(900px 700px at 80% 90%, color-mix(in oklab, var(--color-destaque1) 15%, transparent), transparent 70%),
        var(--color-black);
    background-attachment: fixed;

}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('../img/texturapapel.png');
    background-size: cover;
    background-position: center;

    /* opacity: 0.12; */
    opacity: 0.4;
    mix-blend-mode: overlay;
    filter: brightness(75%) contrast(276%) saturate(0%) blur(0px) hue-rotate(0deg);

    pointer-events: none;
    z-index: 9999;
}

body {
    position: relative;
    background-color: var(--color-black);
}


.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
}


li {
    list-style: none;
}

a {
    text-decoration: none;
}


.fixed-button {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-black);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease, box-shadow 0.5s ease;
}

#backToTop {
    position: fixed;
    display: flex;
    opacity: 1;
    bottom: 20px;
    left: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#whatsappButton {
    position: fixed;
    display: flex;
    opacity: 1;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    box-shadow: 0px 0px 10px rgba(0, 255, 0, 0.5);
    animation: pulse 1s infinite;
}

#whatsappButton i {
    font-size: 24px;
    color: #fff;
    position: fixed;
    display: flex;
    opacity: 1;
}

.fixed-button i {
    font-size: 24px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }
}

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

/*************** HEADER  *****/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;

    background-color: var(--color-black);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);

    transition: all 0.3s ease-in-out;
}

.logo img {
    height: 40px;
    width: auto;
    cursor: pointer;
}

.hamburger svg {
    height: 2.5em;
    stroke: var(--color-white);
}

.line {
    stroke: var(--color-white);
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 1000;
}

.hamburger {
    cursor: pointer;
    display: block;
    height: 3em;
    width: 3em;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 100%;
    width: 100%;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: var(--color-white);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke 0.3s ease;
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
    transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
    stroke: var(--color-destaque1);
}

.hamburger input:checked+svg .line {
    stroke: var(--color-destaque1);
}

.hamburger:hover .line {
    stroke: var(--color-destaque1);
}

.menu-aberto {
    background-color: var(--color-black);
    position: fixed;
    left: 0;
    top: 0;
    height: 0;
    width: 100%;
    z-index: 98;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: height 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    opacity: 0;
}

.menu-aberto.active {
    height: 100vh;
    opacity: 1;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-white);
    font-family: var(--font-grande);
    font-size: clamp(2.5rem, 3vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease;
}

.menu-aberto.active .nav-menu a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.1s * var(--i));
}

.nav-menu a:hover {
    color: var(--color-destaque1);
    transform: scale(1.05);
    padding-left: 20px;
}

.nav-menu a::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 50%;
    width: 0;
    height: 4px;
    background-color: var(--color-destaque1);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.nav-menu a:hover::before {
    width: 20px;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 2rem;
    }

    .nav-menu a {
        font-size: 3rem;
        letter-spacing: -1px;
    }
}

/***************  INICIAL  *****/
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.inicio {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.titulo-inicio .greeting {
    font-family: var(--font-pequena);
    color: var(--color-destaque1);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.2rem;
}

.titulo-inicio h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-family: var(--font-grande);
    font-weight: 900;
    line-height: 1;
    margin: 10px 0;
    color: var(--color-white);
}

.texto-animado {
    color: var(--color-gray2);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-family: var(--font-pequena);
    min-height: 1.5em;
}

.cta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    text-decoration: none;
    position: relative;
}

.cta:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--color-destaque2);
    border-radius: 50px;
    transition: all 0.4s ease;
    z-index: -1;
}

.cta span {
    font-family: var(--font-pequena);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-left: 10px;
}

.cta:hover:before {
    width: 110%;
    background: var(--color-destaque1);
}

.cta:hover span {
    color: var(--color-black);
}

.cta:hover svg {
    stroke: var(--color-black);
}

/*************** SOBRE  *****/
.sobre {
    background-color: var(--color-black);
    /* width: 100%; */
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.container-sobre {
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.headline-sobre {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.headline-scroll {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: scroll 7s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.headline-scroll span {
    font-family: var(--font-grande);
    font-size: clamp(2rem, 5vw, 4rem);
    text-transform: uppercase;
}

.headline-scroll .divisor {
    width: 12px;
    height: 12px;
    background-color: var(--color-destaque1);
    border-radius: 50%;
}

.headline-scroll .bold {
    font-weight: 800;
    color: var(--color-white);
}

.headline-scroll .light {
    font-weight: 200;
    color: var(--color-gray2);
    -webkit-text-stroke: 1px var(--color-gray2);
}

.conteudo-sobre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.left-sobre {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.textos-sobre h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-family: var(--font-grande);
    color: var(--color-white);
}

.name-highlight {
    color: var(--color-destaque1);
}

.textos-sobre p {
    font-size: 1.15rem;
    color: var(--color-gray2);
    line-height: 1.7;
    font-family: var(--font-pequena);
}

.textos-sobre p strong {
    color: var(--color-white);
}

.redes-sociais {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

.StyleLink {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 500;
    transition: 0.4s;
}

.StyleLink i {
    color: var(--color-destaque1);
    transition: 0.4s;
}

.StyleLink:hover {
    color: var(--color-destaque1);
    padding-left: 10px;
}

.StyleLink:hover i {
    transform: translateX(10px);
}

.right-sobre {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.imagem-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.foto-perfil {
    width: 100%;
    border-radius: 30px;
    z-index: 2;
    position: relative;
    filter: grayscale(20%);
    transition: 0.5s;
}

.imagem-wrapper:hover .foto-perfil {
    filter: grayscale(0%);
}

.elemento-giratorio {
    position: absolute;
    top: -15%;
    right: -15%;
    width: 50%;
    z-index: 1;
    animation: rotate 15s linear infinite;
    opacity: 0.8;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .conteudo-sobre {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .left-sobre {
        align-items: center;
        order: 2;
    }

    .right-sobre {
        order: 1;
        margin-bottom: 40px;
    }

    .redes-sociais {
        align-items: stretch;
        margin: 0 auto;
    }
}

.skills {
    width: 100vw;
    padding: 100px 5%;
    background-color: var(--color-black);
    background:
        radial-gradient(900px 700px at 80% 90%, color-mix(in oklab, var(--color-destaque3) 15%, transparent), transparent 70%),
        var(--color-black);
    /* background-color: var(--bg-roxo); */

}

.container-skills {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.skills-headline {
    margin-bottom: 60px;
    text-align: left;
}

.skills-headline h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-family: var(--font-grande);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.skills-headline h1 .dot {
    color: var(--color-destaque1);
}

.skills-headline p {
    font-size: 1.2rem;
    color: var(--color-gray2);
    max-width: 600px;
    margin-top: 15px;
    font-family: var(--font-pequena);
}

.skills-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 30px;
    width: 100%;
}

.card-tech {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.tech-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.card-tech img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.card-tech p {
    color: var(--color-gray2);
    font-family: var(--font-pequena);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.card-tech:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-destaque1);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(231, 252, 0, 0.1);
}

.card-tech:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.card-tech:hover p {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .skills-info {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .card-tech {
        padding: 20px 10px;
    }

    .skills-headline {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .skills-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*************** SERVIÇOS *****/
.services {
    width: 100vw;
    padding: 100px 5%;
    background-color: var(--color-black);
    /* background-color: var(--bg-roxo); */
    color: var(--color-white);
}

.container-services {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headline {
    text-align: center;
    margin-bottom: 80px;
}

.headline .destaque {
    font-family: var(--font-pequena);
    color: var(--color-destaque1);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: bold;
}

.servicos-headline h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-family: var(--font-grande);
    color: var(--color-white);
    margin-top: 10px;
}

.servicos-headline .dot {
    color: var(--color-destaque1);
}

.content-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.card-service {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-service:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-destaque1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--color-gray1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.4s;
}

.card-service i {
    font-size: 2.5rem;
    color: var(--color-destaque1);
}

.card-service:hover .icon-box {
    background: var(--color-destaque1);
    transform: rotate(-10deg);
}

.card-service:hover i {
    color: var(--color-black);
}

.card-service h2 {
    font-size: 1.5rem;
    font-family: var(--font-grande);
    margin-bottom: 15px;
    color: var(--color-white);
}

.card-service p {
    font-size: 1rem;
    color: var(--color-gray2);
    line-height: 1.6;
    font-family: var(--font-pequena);
}

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

    .card-service {
        padding: 40px 20px;
    }
}


/* PORTOFOLIO */
.portfolio {
    padding: 100px 5%;
    /* background-color: var(--color-black); */
    background-color: var(--bg-roxo);
    width: 100vw;
}

.headline-portfolio {
    margin-bottom: 80px;
    text-align: center;
}

.headline-portfolio .titulo {
    font-size: clamp(3rem, 12vw, 8rem);
    font-family: var(--font-grande);
    color: var(--color-white);
    line-height: 0.9;
}

.headline-portfolio .dot {
    color: var(--color-destaque1);
}

.container-case {
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.project-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    width: 70%;
    margin: auto;
}

.project-card.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.project-card.reverse .project-img {
    order: 2;
}

.project-card.reverse .project-content {
    order: 1;
}

.project-img {
    width: 100%;
    border-radius: 24px;
    background: var(--bg-card);
    padding: 15px;
    border: 1px solid var(--border-glass);
    transition: 0.5s ease;
}

.project-img:hover {
    border-color: var(--color-destaque1);
    box-shadow: 0 0 30px var(--shadow-glow);
}

.slide {
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tag {
    color: var(--color-destaque1);
    font-family: var(--font-pequena);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 0.9rem;
}

.project-content h2 {
    font-size: 3rem;
    color: var(--color-white);
    font-family: var(--font-grande);
}

.project-content p {
    color: var(--color-gray2);
    font-size: 1.2rem;
    line-height: 1.6;
}

.tech-stack {
    display: flex;
    gap: 15px;
    margin: 10px 0;
}

.tech-stack img {
    width: 40px;
    height: 40px;
    filter: grayscale(1) opacity(0.7);
    transition: 0.3s;
}

.tech-stack img:hover {
    filter: grayscale(0) opacity(1);
    transform: translateY(-5px);
}

/* Botão Moderno */
.btn-main {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-destaque2);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.btn-main:hover {
    background: var(--color-destaque1);
    color: var(--color-black);
    border-color: var(--color-destaque1);
    transform: scale(1.05);
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--color-destaque1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    border: 1px solid var(--border-glass);
}

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

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

@media (max-width: 1024px) {

    .project-card,
    .project-card.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-card.reverse .project-img {
        order: 1;
    }

    .project-card.reverse .project-content {
        order: 2;
    }

    .project-content h2 {
        font-size: 2.2rem;
    }

    .slide {
        height: 350px;
    }
}



/*************** CONTATO ****/
.contato {
    width: 100vw;
    min-height: 100vh;
    padding: 100px 5%;
    background-color: #20212A;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* .contato::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/texturapapel.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: -1;
    filter: brightness(75%) contrast(276%) saturate(0%) blur(0px) hue-rotate(0deg);
} */

.container-contato {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.headline-contato {
    margin-bottom: 60px;
}

.titulo-contato {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-family: var(--font-grande);
    color: var(--color-white);
    letter-spacing: -2px;
}

.titulo-contato .dot {
    color: var(--color-destaque1);
}

.conteudo-contato {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}


.info-contato h2 {
    font-size: 3rem;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.info-contato .highlight {
    color: var(--color-destaque1);
}

.info-contato p {
    font-size: 1.2rem;
    color: var(--color-gray2);
    margin-bottom: 40px;
    max-width: 90%;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: transparent;
    border: 1px solid var(--color-destaque2);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s ease;
}

.btn-whatsapp:hover {
    background: var(--color-destaque2);
    transform: translateY(-5px);
}

.formulario-wrapper {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-moderno {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-moderno input,
.form-moderno textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 18px 25px;
    color: var(--color-white);
    font-family: var(--font-pequena);
    font-size: 1rem;
    outline: none;
    transition: 0.3s ease;
}

.form-moderno textarea {
    min-height: 150px;
    resize: none;
}

.form-moderno input:focus,
.form-moderno textarea:focus {
    border-color: var(--color-destaque1);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(231, 252, 0, 0.1);
}

.btn-enviar {
    background-color: var(--color-destaque1);
    color: var(--color-black);
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-enviar:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 10px 30px rgba(231, 252, 0, 0.3);
}

@media (max-width: 992px) {
    .conteudo-contato {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .info-contato {
        text-align: center;
    }

    .info-contato p {
        margin: 0 auto 30px auto;
    }

    .input-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .formulario-wrapper {
        padding: 20px;
    }

    .info-contato h2 {
        font-size: 2.2rem;
    }
}

/*************** FOOTER *****/
.footer {
    background-color: var(--color-black);
    width: 100vw;
    padding: 80px 5% 40px 5%;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.container-footer {
    width: 100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.logo-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.logo-column img {
    width: 200px;
    height: auto;
    filter: brightness(1.1);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--color-gray2);
    font-family: var(--font-pequena);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-nav a:hover {
    color: var(--color-destaque1);
    transform: translateX(5px);
}

.social-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a {
    text-decoration: none;
    color: var(--color-gray2);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.social-links a i {
    font-size: 1.3rem;
    color: var(--color-destaque1);
}

.social-links a:hover {
    color: var(--color-white);
    transform: translateY(-3px);
}

.credits-column {
    width: 100%;
    max-width: 1300px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-gray3, #666);
    font-size: 0.9rem;
}

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

    .logo-column {
        grid-column: span 2;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .container-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav,
    .social-links {
        align-items: center;
    }

    .logo-column {
        grid-column: span 1;
    }

    .credits-column {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


.portfolio::after,
.sobre::after,
.services::after {
    content: "◈";
    display: block;
    text-align: center;
    color: var(--color-destaque1);
    font-size: 1.5rem;
    padding: 40px 0;
    opacity: 0.5;
    text-shadow: 0 0 15px var(--shadow-glow);
    background: linear-gradient(to right, transparent, var(--border-glass), transparent);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: center;
}




/* testes */

.mythic-divider {
    position: relative;
    width: 100%;
    height: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 0;
    padding-right: 5%;
}

.mythic-divider img {
    position: absolute;
    top: -100px;
    right: -10%;
    width: 100%;
    max-width: 360px;

    opacity: 0.12;
    filter: sepia(1) hue-rotate(-50deg) saturate(3) brightness(0.3);
    mix-blend-mode: screen;
    pointer-events: none;
    user-select: none;

    transform: rotate(15deg);
}

.mythic-divider2 {
    position: relative;
    width: 100%;
    height: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
    padding-right: 5%;
}

.mythic-divider2 img {
    position: absolute;
    top: -10px;
    left: -24%;
    width: 100%;
    max-width: 360px;
    rotate: 20deg;
    opacity: 0.12;
    filter: sepia(1) hue-rotate(-50deg) saturate(3) brightness(0.1);
    mix-blend-mode: screen;
    pointer-events: none;
    user-select: none;

    transform: rotate(15deg);
}

@media (max-width: 768px) {
    .mythic-divider {
        padding-right: 2%;
    }

    .mythic-divider img {
        max-width: 200px;
        top: -400px;
        right: 2%;
    }
}