/* ESTILO GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #9423ec;
    --primary-color-light: #ac53ff;
    --secondary-color: #19b8ff;
    --dark-bg: #080808;
    --dark-bg-light: #121212;
    --text-light: #ffffff;
    --text-dim: #afafaf;
}

body {
    background-color: var(--dark-bg);
    height: 100vh;
    overflow-x: hidden;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

.flex {
    display: flex;
}

.btn-contato button {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s ease-in-out;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(148, 35, 236, 0.3);
    z-index: 1;
}

.btn-contato button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transition: width 0.3s ease-in-out;
    z-index: -1;
}

.btn-contato button:hover::before {
    width: 100%;
}

h2.titulo {
    color: var(--text-light);
    font-size: 42px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

h2.titulo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

h2.titulo span {
    color: var(--primary-color);
    position: relative;
}

h2.titulo span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s ease-out;
}

h2.titulo:hover span::after {
    transform: scaleX(1);
}

button:hover,
form .btn-enviar input:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(148, 35, 236, 0.4);
}

button:active,
form .btn-enviar input:active {
    transform: translateY(0);
}

/* ESTILO DO CABEÇALHO */
header {
    padding: 20px 4%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: 0.4s;
}

header.sticky {
    background-color: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 4%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

header>.interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    color: var(--text-dim);
    text-decoration: none;
    display: inline-block;
    transition: .3s;
    position: relative;
}

header nav.menu-desktop a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

header nav.menu-desktop a:hover::after {
    width: 100%;
}

header nav.menu-desktop a:hover {
    color: var(--text-light);
}

header nav ul {
    list-style-type: none;
}

header nav.menu-desktop ul li {
    display: inline-block;
    padding: 0 30px;
}

.logo {
    width: 400px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    max-width: 50%;
    transition: 0.3s;
}

.logo img:hover {
    filter: drop-shadow(0 0 5px var(--primary-color));
}

/* ESTILO DO MENU MOBILE */

.btn-abrir-menu {
    display: none;
    transition: 0.3s;
}

.btn-abrir-menu:hover {
    transform: scale(1.1);
}

.btn-abrir-menu i {
    color: var(--primary-color);
    font-size: 40px;
    text-shadow: 0 0 5px rgba(148, 35, 236, 0.3);
}

.menu-mobile {
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.95), rgba(20, 20, 20, 0.98));
    backdrop-filter: blur(10px);
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 0%;
    overflow: hidden;
    transition: .5s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.menu-mobile.abrir-menu {
    width: 70%;
}

.menu-mobile.abrir-menu~.overlay-menu {
    display: block;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.menu-mobile .btn-fechar {
    padding: 20px 5%;
    text-align: right;
}

.menu-mobile .btn-fechar i {
    color: var(--primary-color);
    font-size: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.menu-mobile .btn-fechar i:hover {
    transform: rotate(90deg);
    color: var(--secondary-color);
}

.menu-mobile nav ul {
    text-align: right;
}

.menu-mobile nav ul li {
    transform: translateX(100px);
    opacity: 0;
    transition: 0.5s;
}

.menu-mobile.abrir-menu nav ul li {
    transform: translateX(0);
    opacity: 1;
}

.menu-mobile.abrir-menu nav ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-mobile.abrir-menu nav ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-mobile.abrir-menu nav ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-mobile.abrir-menu nav ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.menu-mobile nav ul li a {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 300;
    padding: 20px 8%;
    display: block;
    position: relative;
    overflow: hidden;
}

.menu-mobile nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(148, 35, 236, 0.1), transparent);
    transition: 0.5s;
}

.menu-mobile nav ul li a:hover::before {
    left: 100%;
}

.menu-mobile nav ul li a:hover {
    background: linear-gradient(90deg, rgba(148, 35, 236, 0.1), rgba(25, 184, 255, 0.1));
    color: var(--secondary-color);
    transform: translateX(5px);
}

.overlay-menu {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 88888;
    display: none;
    opacity: 0;
}

/* ESTILO DO TOPO DO SITE */
section.topo-do-site {
    padding: 160px 4% 80px;
}

section.topo-do-site .flex {
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.topo-do-site h1 {
    color: var(--text-light);
    font-size: 44px;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}



.topo-do-site .txt-topo-site {
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.topo-do-site .txt-topo-site h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.topo-do-site .txt-topo-site h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 5px;
    left: 0;
    z-index: -1;
    opacity: 0.4;
}

.topo-do-site .txt-topo-site p {
    color: var(--text-dim);
    margin: 40px 0;
    font-size: 17px;
    line-height: 1.6;
}

.topo-do-site .img-topo-site {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeRight 1s forwards;
    animation-delay: 0.8s;
    position: relative;
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.topo-do-site .img-topo-site::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(148, 35, 236, 0.3), transparent 70%);
    bottom: -50px;
    right: -50px;
    z-index: -1;
    border-radius: 50%;
    filter: blur(30px);
    animation: pulse 6s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.topo-do-site .img-topo-site img {
    position: relative;
    animation: flutuar 6s ease-in-out infinite alternate;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
    transition: 0.3s;
    max-width: 100%;
}

.topo-do-site .img-topo-site img:hover {
    filter: drop-shadow(0 25px 30px rgba(148, 35, 236, 0.4));
    transform: scale(1.03);
}

@keyframes flutuar {
    0% {
        top: 0;
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
    100% {
        top: 30px;
        transform: rotate(-1deg);
    }
}

/* Texto digitando */
.texto-animado {
    position: relative;
    height: 60px;
    overflow: hidden;
}

.texto-animado h3 {
    color: var(--text-light);
    font-size: 24px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 1px;
}

.texto-animado h3 span {
    position: relative;
}

.texto-animado h3 span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--dark-bg);
    border-left: 2px solid var(--primary-color);
    animation: animate 4s steps(12) infinite;
}

@keyframes animate {
    40%, 60% {
        left: calc(100% + 4px);
    }
    100% {
        left: 0%;
    }
}

/* ESTILO DAS ESPECIALIDADES */
section.especiliadades {
    padding: 80px 4%;
    background: linear-gradient(to bottom, var(--dark-bg), var(--dark-bg-light));
}

section.especiliadades .flex {
    gap: 60px;
    justify-content: center;
}

.especiliadades .especialidades-box {
    color: var(--text-light);
    padding: 40px 30px;
    border-radius: 20px;
    margin-top: 45px;
    transition: .4s ease-in-out;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 350px;
    height: 300px;
    transform: translateY(50px);
    opacity: 0;
}

.especiliadades .especialidades-box.animated {
    transform: translateY(0);
    opacity: 1;
}

.especiliadades .especialidades-box:nth-child(1) {
    transition-delay: 0.1s;
}

.especiliadades .especialidades-box:nth-child(2) {
    transition-delay: 0.3s;
}

.especiliadades .especialidades-box:nth-child(3) {
    transition-delay: 0.5s;
}

.especiliadades .especialidades-box::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(148, 35, 236, 0.3), transparent 70%);
    top: -50px;
    right: -50px;
    border-radius: 50%;
    opacity: 0;
    transition: 0.5s;
}

.especiliadades .especialidades-box::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.5s ease-in-out;
}

.especiliadades .especialidades-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(148, 35, 236, 0.2);
}

.especiliadades .especialidades-box:hover::before {
    opacity: 1;
}

.especiliadades .especialidades-box:hover::after {
    width: 100%;
}

.especiliadades .especialidades-box i {
    font-size: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.especiliadades .especialidades-box:hover i {
    transform: scale(1.0) translateY(-6px);
}

.especiliadades .especialidades-box h3 {
    font-size: 28px;
    margin: 15px 0;
    position: relative;
    padding-bottom: 15px;
}

.especiliadades .especialidades-box p {
    color: var(--text-dim);
    line-height: 1.5;
}

/* ESTILO DO SOBRE */
section.sobre {
    padding: 100px 4%;
    background: linear-gradient(to bottom, var(--dark-bg-light), var(--dark-bg));
    position: relative;
    overflow: hidden;
}

section.sobre::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(148, 35, 236, 0.1), transparent 70%);
    top: -200px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
}

section.sobre .flex {
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.sobre .txt-sobre {
    color: var(--text-light);
    max-width: 600px;
    transform: translateX(-30px);
    opacity: 0;
    transition: all 0.8s ease-in-out;
}

.sobre .txt-sobre.animated {
    transform: translateX(0);
    opacity: 1;
}

.sobre .txt-sobre h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
}

.sobre .txt-sobre h2 span {
    color: var(--primary-color);
    display: block;
    position: relative;
}

.sobre .txt-sobre h2 span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--secondary-color);
}

.sobre .txt-sobre p {
    margin: 20px 0;
    text-align: justify;
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 16px;
}

.btn-social button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    font-size: 22px;
    color: var(--text-light);
    cursor: pointer;
    margin: 0 10px;
    transition: .3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(148, 35, 236, 0.3);
}

.btn-social button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    top: 0;
    left: -100%;
    transition: .3s;
    z-index: 0;
}

.btn-social button:hover::before {
    left: 0;
}

.btn-social button i {
    position: relative;
    z-index: 1;
}

.btn-social button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(148, 35, 236, 0.4);
}

.img-sobre {
    position: relative;
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.8s ease-in-out;
}

.img-sobre.animated {
    transform: translateX(0);
    opacity: 1;
}

.img-sobre::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(148, 35, 236, 0.3), transparent 70%);
    top: 0;
    left: 0;
    border-radius: 50%;
    filter: blur(15px);
    z-index: -1;
}

.img-sobre img {
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.4));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* CONTADOR DE ESTATÍSTICAS */
.contador {
    padding: 80px 4%;
    background: linear-gradient(135deg, rgba(148, 35, 236, 0.1), rgba(25, 184, 255, 0.1));
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.contador::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    transform: rotate(45deg);
}

.contador .flex {
    flex-direction: row;
    justify-content: space-around;
    gap: 30px;
}

.contador-item {
    text-align: center;
    color: var(--text-light);
    position: relative;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.contador-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.contador-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

.contador-item .numero {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contador-item h4 {
    font-size: 18px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ESTILO DO PORTFÓLIO */
section.portfolio {
    padding: 100px 4%;
    background: linear-gradient(to bottom, var(--dark-bg), var(--dark-bg-light));
    position: relative;
}

section.portfolio::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

section.portfolio .flex {
    justify-content: space-around;
    margin-top: 60px;
    gap: 30px;
}

.img-port {
    width: 360px;
    height: 460px;
    background-size: cover;
    background-position: 100% 0%;
    transition: 8s;
    cursor: pointer;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.img-port.animated {
    opacity: 1;
    transform: translateY(0);
}

.img-port:nth-child(1) {
    transition-delay: 0.1s;
}

.img-port:nth-child(2) {
    transition-delay: 0.3s;
}

.img-port:nth-child(3) {
    transition-delay: 0.5s;
}

.img-port::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    z-index: 1;
    opacity: 0;
    transition: 0.3s;
}

.img-port:hover {
    background-position: 100% 100%;
    box-shadow: 0 15px 30px rgba(148, 35, 236, 0.3);
    transform: translateY(-10px) scale(1.02);
}

.img-port:hover::before {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    opacity: 0;
    transition: .5s;
    z-index: 2;
}

.overlay h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.overlay .tecnologias {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.overlay .tecnologias span {
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(148, 35, 236, 0.3);
    color: var(--text-light);
    font-size: 12px;
}

.overlay .btn-ver {
    margin-top: 25px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.3s;
}

.overlay .btn-ver button {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 20px;
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.overlay .btn-ver button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(148, 35, 236, 0.4);
}

.img-port:hover .overlay {
    opacity: 1;
}

.img-port:hover .overlay h3,
.img-port:hover .overlay .tecnologias,
.img-port:hover .overlay .btn-ver {
    transform: translateY(0);
    opacity: 1;
}

/* DEPOIMENTOS */
section.depoimentos {
    padding: 100px 4%;
    background: linear-gradient(to top, var(--dark-bg), var(--dark-bg-light));
}

.depoimentos .flex {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.depoimento-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    max-width: 360px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    transform: translateY(30px);
}

.depoimento-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(148, 35, 236, 0.2);
}

.depoimento-item::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    font-family: serif;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

.depoimento-item:nth-child(1) {
    transition-delay: 0.1s;
}

.depoimento-item:nth-child(2) {
    transition-delay: 0.3s;
}

.depoimento-item:nth-child(3) {
    transition-delay: 0.5s;
}

.depoimento-item p {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.depoimento-cliente {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.depoimento-cliente img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.depoimento-cliente .info h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 5px;
}

.depoimento-cliente .info span {
    color: var(--text-dim);
    font-size: 14px;
}

.depoimento-stars {
    margin-top: 10px;
    color: #ffc107;
    font-size: 14px;
}

/* ESTILO DO FORMULÁRIO DE CONTATO */
 section.formulario {
            padding: 120px 0 100px;
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        /* EFEITOS DE FUNDO AVANÇADOS */
        section.formulario::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(148, 35, 236, 0.12), transparent 70%);
            top: -400px;
            left: -200px;
            border-radius: 50%;
            animation: pulse 6s ease-in-out infinite;
            z-index: 0;
        }

        section.formulario::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(25, 184, 255, 0.08), transparent 70%);
            bottom: -300px;
            right: -100px;
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite reverse;
            z-index: 0;
        }

        /* CONTAINER INTERFACE */
        .interface {
            max-width: 1900px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        /* TÍTULO MODERNO */
        .titulo {
            font-size: clamp(2.8rem, 6vw, 4.5rem);
            font-weight: 800;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease 0.2s forwards;
        }

        .titulo span {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .titulo::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
            animation: expand 0.8s ease 1s forwards;
            transform-origin: center;
            scale: 0;
        }

        /* MENSAGENS DE STATUS */
        .mensagem {
            padding: 20px 25px;
            margin-bottom: 30px;
            border-radius: 15px;
            font-weight: 500;
            position: relative;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: fadeInDown 0.5s ease forwards;
        }

        .mensagem.sucesso {
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
            border-color: rgba(34, 197, 94, 0.3);
            box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
        }

        .mensagem.erro {
            background: rgba(239, 68, 68, 0.15);
            color: #ef4444;
            border-color: rgba(239, 68, 68, 0.3);
            box-shadow: 0 8px 32px rgba(239, 68, 68, 0.1);
        }

        .mensagem ul {
            margin: 0;
            padding-left: 20px;
        }

        .mensagem li {
            margin-bottom: 5px;
        }

        /* FORMULÁRIO CONTAINER */
        form {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 25px;
            width:1000px;
            margin-top:20px;
            padding: 50px;
            position: relative;
            opacity: 0;
            transform: translateY(40px);
            animation: slideUp 0.8s ease 0.4s forwards;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 25px 25px 0 0;
        }

        /* GRUPOS DE FORMULÁRIO */
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group:last-of-type {
            margin-bottom: 35px;
        }

        /* INPUTS E TEXTAREA */
        form input[type="text"],
        form input[type="email"],
        form input[type="tel"],
        form textarea {
            width: 100%;
            padding: 22px 25px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            color: var(--text-light);
            font-size: 16px;
            font-family: inherit;
            outline: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        form input:focus,
        form textarea:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(148, 35, 236, 0.15);
            transform: translateY(-2px);
        }

        form input::placeholder,
        form textarea::placeholder {
            color: var(--text-dim);
            transition: opacity 0.3s ease;
        }

        form input:focus::placeholder,
        form textarea:focus::placeholder {
            opacity: 0.7;
        }

        form textarea {
            min-height: 140px;
            resize: vertical;
            font-family: inherit;
        }

        /* CAMPO OBRIGATÓRIO */
        .campo-obrigatorio {
            border-color: #ef4444 !important;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
            animation: shake 0.5s ease-in-out;
        }

        /* BOTÃO DE ENVIO */
        .btn-enviar {
            text-align: center;
            margin-top: 10px;
        }

        .btn-enviar input[type="submit"] {
            padding: 18px 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-light);
            font-weight: 600;
            font-size: 16px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 30px rgba(148, 35, 236, 0.4);
            min-width: 200px;
        }

        .btn-enviar input[type="submit"]::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color-light));
            transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .btn-enviar input[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(148, 35, 236, 0.6);
        }

        .btn-enviar input[type="submit"]:hover::before {
            left: 0;
        }

        .btn-enviar input[type="submit"]:active {
            transform: translateY(-1px);
        }

        /* ANIMAÇÕES */
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes expand {
            to {
                scale: 1;
            }
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1); 
                opacity: 0.4; 
            }
            50% { 
                transform: scale(1.05); 
                opacity: 0.8; 
            }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        /* ELEMENTOS DECORATIVOS */
        .floating-dots {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--primary-color);
            border-radius: 50%;
            opacity: 0.4;
            animation: float 8s ease-in-out infinite;
        }

        .floating-dots:nth-child(1) {
            top: 15%;
            left: 15%;
            animation-delay: 0s;
            background: var(--secondary-color);
        }

        .floating-dots:nth-child(2) {
            top: 70%;
            right: 10%;
            animation-delay: 3s;
        }

        .floating-dots:nth-child(3) {
            bottom: 20%;
            left: 10%;
            animation-delay: 6s;
            background: var(--primary-color-light);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-25px) rotate(120deg); }
            66% { transform: translateY(15px) rotate(240deg); }
        }

        /* RESPONSIVIDADE */
        @media (max-width: 768px) {
            section.formulario {
                padding: 80px 0 60px;
            }

            .interface {
                padding: 0 15px;
            }

            .titulo {
                font-size: 2.5rem;
                margin-bottom: 40px;
            }

            form {
                padding: 35px 25px;
                border-radius: 20px;
            }

            form input[type="text"],
            form input[type="email"],
            form input[type="tel"],
            form textarea {
                padding: 18px 20px;
                font-size: 15px;
            }

            .btn-enviar input[type="submit"] {
                padding: 16px 40px;
                font-size: 15px;
                min-width: 180px;
            }

            .mensagem {
                padding: 15px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .titulo {
                font-size: 2rem;
            }

            form {
                padding: 25px 20px;
            }

            .btn-enviar input[type="submit"] {
                width: 100%;
                min-width: auto;
            }
        }

        /* MICRO-INTERAÇÕES */
        form input[type="text"]:valid,
        form input[type="email"]:valid,
        form input[type="tel"]:valid,
        form textarea:valid {
            border-color: rgba(34, 197, 94, 0.5);
        }

        /* HOVER EFFECTS */
        .form-group:hover input,
        .form-group:hover textarea {
            border-color: rgba(148, 35, 236, 0.3);
            background: rgba(255, 255, 255, 0.06);
        }

        
/* ESTILO DO RODAPÉ */
   .interface {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* FOOTER APRIMORADO */
        footer {
            padding: 80px 4% 40px;
            background: 
                radial-gradient(ellipse at top, rgba(148, 35, 236, 0.15) 0%, transparent 60%),
                linear-gradient(135deg, rgba(8, 8, 8, 1) 0%, rgba(15, 15, 15, 1) 50%, rgba(8, 8, 8, 1) 100%);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        /* Efeitos de fundo animados */
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--primary-color) 20%, 
                var(--primary-light) 50%, 
                var(--primary-color) 80%, 
                transparent 100%);
            animation: shimmer 3s ease-in-out infinite;
        }

        footer::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(148, 35, 236, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(148, 35, 236, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(148, 35, 236, 0.05) 0%, transparent 50%);
            animation: float 15s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.8; transform: translateX(-100px); }
            50% { opacity: 1; transform: translateX(100px); }
        }

        @keyframes float {
            0%, 100% { transform: rotate(0deg) translate(0px, 0px); }
            33% { transform: rotate(120deg) translate(30px, -30px); }
            66% { transform: rotate(240deg) translate(-30px, 30px); }
        }

        /* Container principal */
        footer .interface {
            position: relative;
            z-index: 2;
        }

        /* Primeira linha - Logo e descrição */
        footer .line-footer {
            padding: 30px 0;
        }

        footer .flex {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        /* Logo aprimorada */
        .logo-footer {
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .logo-footer::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: radial-gradient(circle, rgba(148, 35, 236, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.4s ease;
            z-index: -1;
        }

        .logo-footer:hover::before {
            opacity: 1;
            transform: scale(1.1);
        }

        .logo-footer:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .logo-footer img {
            width: 60%;
            filter: 
                drop-shadow(0 0 10px rgba(148, 35, 236, 0.4))
                drop-shadow(0 0 20px rgba(148, 35, 236, 0.2));
            transition: all 0.4s ease;
        }

        .logo-footer:hover img {
            filter: 
                drop-shadow(0 0 15px rgba(148, 35, 236, 0.6))
                drop-shadow(0 0 30px rgba(148, 35, 236, 0.3))
                drop-shadow(0 0 45px rgba(148, 35, 236, 0.1));
        }

        /* Texto da descrição */
        .footer-description {
            font-size: 18px;
            color: var(--text-dim);
            max-width: 400px;
            line-height: 1.6;
            background: linear-gradient(135deg, var(--text-dim) 0%, var(--text-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .footer-description::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), transparent);
            border-radius: 2px;
        }

        /* Seções com bordas aprimoradas */
        .borda {
            border-top: 1px solid rgba(148, 35, 236, 0.3);
            text-align: center;
            padding-top: 30px;
            position: relative;
            background: rgba(148, 35, 236, 0.02);
            backdrop-filter: blur(5px);
            border-radius: 0 0 15px 15px;
        }

        .borda::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
            box-shadow: 0 0 10px rgba(148, 35, 236, 0.5);
        }

        /* Contato aprimorado */
        .contact-section {
            background: linear-gradient(135deg, rgba(148, 35, 236, 0.05) 0%, rgba(148, 35, 236, 0.02) 100%);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(148, 35, 236, 0.2);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(148, 35, 236, 0.1), transparent);
            transition: 0.8s;
        }

        .contact-section:hover::before {
            left: 100%;
        }

        footer .line-footer p {
            color: var(--text-dim);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
            position: relative;
            z-index: 2;
        }

        footer .line-footer p i {
            color: var(--primary-color);
            font-size: 24px;
            transition: all 0.3s ease;
            filter: drop-shadow(0 0 5px rgba(148, 35, 236, 0.5));
        }

        .contact-section:hover p i {
            color: var(--primary-light);
            transform: scale(1.2);
            filter: drop-shadow(0 0 10px rgba(148, 35, 236, 0.8));
        }

        footer .line-footer p a {
            color: var(--text-dim);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 8px 15px;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
        }

        footer .line-footer p a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(148, 35, 236, 0.2), transparent);
            transition: 0.5s;
        }

        footer .line-footer p a:hover::before {
            left: 100%;
        }

        footer .line-footer p a:hover {
            color: var(--primary-light);
            text-decoration: none;
            background: rgba(148, 35, 236, 0.1);
            border: 1px solid rgba(148, 35, 236, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(148, 35, 236, 0.3);
        }

        /* Copyright aprimorado */
        .copyright-section {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            border: 1px solid rgba(148, 35, 236, 0.15);
            padding: 20px;
            position: relative;
        }

        .copyright-section p {
            font-size: 14px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .copyright-section:hover p {
            opacity: 1;
        }

        .copyright-section a {
            color: var(--primary-color) !important;
            font-weight: 600;
            position: relative;
        }

        .copyright-section a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .copyright-section a:hover::after {
            width: 100%;
        }

        /* Responsividade aprimorada */
        @media (max-width: 768px) {
            footer {
                padding: 60px 4% 30px;
            }

            footer .flex {
                flex-direction: column;
                text-align: center;
                gap: 25px;
            }

            .footer-description {
                font-size: 16px;
                max-width: 100%;
            }

            .logo-footer img {
                width: 70%;
            }

            footer .line-footer p {
                font-size: 14px;
            }

            .contact-section, .copyright-section {
                padding: 20px 15px;
            }
        }

        /* Animações extras */
        @keyframes glow {
            0%, 100% { 
                box-shadow: 0 0 5px rgba(148, 35, 236, 0.3);
            }
            50% { 
                box-shadow: 0 0 20px rgba(148, 35, 236, 0.6);
            }
        }

        .contact-section:hover {
            animation: glow 2s ease-in-out infinite;
        }

/* BOTÃO VOLTAR AO TOPO */
.btn-topo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(148, 35, 236, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 100;
}

.btn-topo.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-topo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(148, 35, 236, 0.4);
}

/* ANIMAÇÃO DE CARREGAMENTO */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader .spinner {
    width: 70px;
    height: 70px;
    border: 5px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader .spinner::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 5px solid transparent;
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* RESPONSIVIDADE */
@media screen and (max-width: 1200px) {
    .topo-do-site h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 1020px) {
    /* CLASSES GERAIS */
    .flex {
        flex-direction: column;
    }

    .topo-do-site .flex {
        flex-direction: column-reverse;
    }

    h2.titulo {
        font-size: 34px;
        text-align: center;
    }

    /* CABEÇALHO */
    .menu-desktop,
    .btn-contato {
        display: none;
    }

    .btn-abrir-menu {
        display: block;
    }

    header {
        padding: 15px 4%;
    }

    /* TOPO DO SITE */
    section.topo-do-site {
        padding: 100px 8% 50px;
    }

    section.topo-do-site .flex {
        gap: 40px;
    }

    .topo-do-site h1 {
        font-size: 36px;
        text-align: center;
    }

    .topo-do-site .txt-topo-site p {
        text-align: center;
    }

    .topo-do-site .txt-topo-site {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .topo-do-site .img-topo-site img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    /* ESPECIALIDADES */
    section.especiliadades {
        padding: 60px 8%;
    }

    section.especiliadades .flex {
        gap: 30px;
    }

    .especiliadades .especialidades-box {
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
    }

    /* CONTADOR */
    .contador .flex {
        flex-direction: column;
        gap: 40px;
    }

    .contador-item::after {
        display: none;
    }

    /* SOBRE */
    section.sobre {
        padding: 60px 8%;
    }

    .sobre .txt-sobre h2 {
        font-size: 34px;
        line-height: 1.2;
        text-align: center;
    }

    .sobre .txt-sobre h2 span {
        display: inline;
    }

    .sobre .txt-sobre h2 span::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .btn-social {
        text-align: center;
    }

    .img-sobre {
        text-align: center;
    }

    .img-sobre img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* PORTFÓLIO */
    section.portfolio {
        padding: 60px 8%;
    }

    .img-port {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    section.portfolio .flex {
        gap: 40px;
    }

    /* DEPOIMENTOS */
    .depoimentos .flex {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .depoimento-item {
        max-width: 100%;
    }

    /* RODAPÉ */
    footer .flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    footer .line-footer {
        text-align: center;
    }

    .logo-footer {
        text-align: center;
    }

    .logo-footer img {
        width: 30%;
    }
}

@media screen and (max-width: 768px) {
    section.topo-do-site {
        padding: 80px 8% 40px;
    }

    .topo-do-site h1 {
        font-size: 32px;
    }

    h2.titulo {
        font-size: 30px;
    }

    .sobre .txt-sobre h2 {
        font-size: 30px;
    }

    .contador-item .numero {
        font-size: 40px;
    }

    .contador-item h4 {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .logo img {
        width: 80%;
    }

    .topo-do-site h1 {
        font-size: 28px;
    }

    .topo-do-site .txt-topo-site p {
        font-size: 16px;
    }

    .especialidades-box h3 {
        font-size: 24px;
    }

    .sobre .txt-sobre h2 {
        font-size: 26px;
    }

    form input, form textarea {
        padding: 15px 12px;
    }
} 


 

/* RESPONSIVIDADE PARA DISPOSITIVOS MÓVEIS */

/* Tablets e pequenos laptops (até 768px) */
@media (max-width: 768px) {
    /* Ajusta padding da seção para não ficar muito espaçoso */
    section.formulario {
        padding: 60px 0 40px;
    }
    /* Container interno com padding menor */
    .interface {
        padding: 0 15px;
    }
    /* Título menor e margin reduzida */
    .titulo {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 30px;
    }
    /* Formulário ocupa quase toda a largura */
    form {
        width: 100%;
        max-width: 100%;
        margin-top: 15px;
        padding: 30px 20px;
        border-radius: 20px;
    }
    /* Inputs menores */
    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form textarea {
        padding: 16px 18px;
        font-size: 15px;
    }
    /* Botão ocupa menos espaço lateral, mas ainda clicável */
    .btn-enviar input[type="submit"] {
        padding: 14px 30px;
        font-size: 15px;
        min-width: 160px;
    }
    /* Mensagens de status com padding reduzido */
    .mensagem {
        padding: 12px 18px;
        font-size: 14px;
    }
    /* Reduz tamanho dos elementos decorativos ou diminui sua opacidade */
    section.formulario::before,
    section.formulario::after {
        width: 500px;
        height: 500px;
        /* opcional: se quiser ocultar em telas menores */
        /* display: none; */
    }
    .floating-dots {
        width: 5px;
        height: 5px;
        opacity: 0.3;
    }
}

/* Smartphones grandes (até 480px) */
@media (max-width: 480px) {
    /* Seção com padding ainda menor */
    section.formulario {
        padding: 40px 0 30px;
    }
    .titulo {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }
    form {
        padding: 20px 15px;
        border-radius: 18px;
    }
    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    .btn-enviar input[type="submit"] {
        width: 100%;
        padding: 12px 0;
        font-size: 14px;
        min-width: auto;
    }
    .mensagem {
        padding: 10px 15px;
        font-size: 13px;
    }
    /* Melhorar legibilidade: reduzir ou ocultar pseudo-elementos de fundo */
    section.formulario::before,
    section.formulario::after {
        display: none;
    }
    /* Ocultar pontos flutuantes para não poluir visual */
    .floating-dots {
        display: none;
    }
}

/* Smartphones muito pequenos / modos retrato estreitos (até 360px) */
@media (max-width: 360px) {
    /* Padding mais enxuto */
    section.formulario {
        padding: 30px 0 20px;
    }
    .titulo {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    form {
        padding: 15px 10px;
    }
    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form textarea {
        padding: 12px 14px;
        font-size: 13px;
    }
    .btn-enviar input[type="submit"] {
        padding: 10px 0;
        font-size: 13px;
    }
    .mensagem {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Ajustes opcionais de flexibilidade para elementos internos */
/* Se houver colunas lado a lado, transformar em coluna única */
@media (max-width: 768px) {
    .form-row, /* exemplo de classe para linha de inputs */
    .duas-colunas { /* adapte conforme sua marcação HTML */
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}


/* BOTÃO VER TODOS OS PROJETOS */
.btn-todos-projetos {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn-todos-projetos button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(148, 35, 236, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-todos-projetos button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-todos-projetos button:hover::before {
    left: 100%;
}

.btn-todos-projetos button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(148, 35, 236, 0.5);
    background: linear-gradient(135deg, var(--primary-color-light), var(--secondary-color));
}

.btn-todos-projetos button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(148, 35, 236, 0.4);
}

.btn-todos-projetos button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-todos-projetos button:hover i {
    transform: translateX(5px);
}

/* RESPONSIVIDADE */
@media screen and (max-width: 768px) {
    .btn-todos-projetos button {
        padding: 16px 32px;
        font-size: 14px;
        gap: 10px;
    }
    
    .btn-todos-projetos button i {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .btn-todos-projetos {
        margin-top: 30px;
    }
    
    .btn-todos-projetos button {
        padding: 14px 28px;
        font-size: 13px;
    }
}

a {text-decoration: none;}