/* ============================================================
    ESTILOS GERAIS
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: black;
    min-height: 100vh;
}

/* INTERFACE/CONTAINER */
.interface {
    max-width: 1280px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

/* ============================================================
    CABEÇALHO
============================================================ */
header {
    padding: 40px 4%;
}

header > .interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
header .logo img {
    width: 150px;
    height: auto;
}

/* MENU DESKTOP */
header a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

header a:hover {
    color: #FF8C00;
    transform: scale(1.05);
}

header nav ul {
    list-style-type: none;
}

header nav ul li {
    display: inline-block;
    padding: 0 40px;
}

/* BOTÃO DE CONTATO */
.btn-contato button {
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: #FF8C00;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    color: #ffffff;
    transition: .2s;
}

.btn-contato button:hover {
    box-shadow: 0px 0px 10px 2px #FF8C00;
    transform: scale(1.05);
}

/* ============================================================
    TÍTULOS
============================================================ */
h2.titulo {
    color: #ffffff;
    font-size: 38px;
    text-align: center;
}

h2.titulo span {
    color: #FF8C00;
}

/* ============================================================
    TOPO DO SITE
============================================================ */
section.topo-do-site {
    padding: 40px 4%;
    min-height: 600px;
}

section.topo-do-site .flex {
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.topo-do-site img {
    max-width: 600px;
    height: auto;
    display: block;
    position: relative;
    animation: Flutuar 2s ease-in-out infinite alternate;
}

.topo-do-site .txt-topo-site {
    max-width: 50%;
}

.topo-do-site h1 {
    color: #ffffff;
    font-size: 38px;
    line-height: 50px;
}

.topo-do-site h1 span {
    color: #FF8C00;
}

/* TEXTO DO TOPO */
.topo-do-site .txt-topo-site p {
    color: #ffffff;
    margin: 40px 0;
}

/* ANIMAÇÕES */
@keyframes Flutuar {
    0% { top: 0; }
    100% { top: 30px; }
}

/* ============================================================
    SEÇÃO ESPECIALIDADES
============================================================ */
section.Especialidades {
    padding: 70px 4%;
}

.Especialidades .flex {
    justify-content: center;
    gap: 40px;
}

.especialidades-box {
    width: 300px;
    padding: 40px;
    border-radius: 20px;
    margin-top: 45px;
    transition: .2s;
    text-align: center;
    color: #ffffff;
}

.especialidades-box i {
    font-size: 70px;
    color: #FF8C00;
}

.especialidades-box h3 {
    font-size: 26px;
    margin: 15px 0;
}

.especialidades-box:hover {
    transform: scale(1.05);
    background-color: #000000;
    box-shadow: 0 0 20px #FF8C00;
}

/* ============================================================
    SEÇÃO SOBRE
============================================================ */
section.Sobre {
    padding: 80px 4%;
}

section.Sobre .flex {
    align-items: center;
    gap: 60px;
}

.Sobre .txt-sobre {
    color: #ffffff;
    max-width: 50%;
}

.Sobre .txt-sobre h2 {
    font-size: 40px;
}

.Sobre .txt-sobre h2 span {
    display: block;
    line-height: 40px;
    margin-bottom: 30px;
}

.Sobre .txt-sobre p {
    margin: 20px 0;
    text-align: justify;
}

/* BOTÕES SOCIAIS */
.Sobre .txt-sobre .btn-social button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #FF8C00;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    margin: 0 8px;
    transition: 0.3s;
}

.Sobre .txt-sobre .btn-social button:hover {
    transform: scale(1.08);
    box-shadow: 0 0 10px 2px rgba(255, 140, 0, 0.7);
}

/* ============================================================
    SEÇÃO COMO TRABALHAMOS 🚀
============================================================ */
section.processo {
    padding: 80px 4%;
    background-color: #000;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

section.processo.visivel {
    opacity: 1;
    transform: translateY(0);
}

section.processo .flex {
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.processo-box {
    background-color: #111;
    border: 2px solid #FF8C00;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #fff;
    width: 340px;
    transition: .3s;
}

.processo-box i {
    font-size: 60px;
    color: #FF8C00;
    margin-bottom: 15px;
}

.processo-box h3 {
    font-size: 24px;
    color: #FF8C00;
    margin-bottom: 10px;
}

.processo-box p {
    font-size: 15px;
    color: #ddd;
    line-height: 1.6;
}

.processo-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px 4px rgba(255, 140, 0, 0.3);
    border-color: #ffa733;
}

/* ============================================================
    PORTFÓLIO
============================================================ */
section.portifolio {
    padding: 80px 4%;
    box-shadow: 0px 0px 40px 10px #ffffff2a;
}

section.portifolio .flex {
    gap: 80px;
    justify-content: space-around;
    margin-top: 60px;
}

.img-port {
    width: 360px;
    height: 460px;
    background-color: #FF8C00;
    background-size: cover;
    background-position: 100% 0%;
    transition: 5s;
    cursor: pointer;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.img-port:hover {
    background-position: 100% 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0600a2;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0;
    transition: .5s;
}

.overlay:hover {
    opacity: 1;
}

/* ============================================================
    FORMULÁRIO
============================================================ */
section.formulario {
    padding: 80px 4%;
}

section.formulario h2 {
    text-align: center;
    color: #ffffff;
    font-size: 38px;
}

section.formulario h2 span {
    color: #FF8C00;
}

section.formulario form {
    max-width: 600px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.formulario input,
section.formulario textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #FF8C00;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: .3s;
}

section.formulario input:focus,
section.formulario textarea:focus {
    border-color: #ffffff;
}

section.formulario textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-enviar {
    text-align: center;
}

.btn-enviar input[type="submit"] {
    background-color: #FF8C00;
    border: none;
    padding: 15px 32px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.btn-enviar input[type="submit"]:hover {
    box-shadow: 0 0 10px 2px #FF8C00;
    transform: scale(1.03);
}

/* ============================================================
    RODAPÉ
============================================================ */
footer {
    background-color: #111;
    color: #fff;
    padding: 60px 4% 20px;
    text-align: center;
    margin-top: 80px;
}

.footer-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FF8C00;
}

.footer-content p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    color: #fff;
    font-size: 22px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #FF8C00;
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.footer-bottom span {
    color: #FF8C00;
    font-weight: 600;
}

/* ============================================================
    MENU MOBILE 📱
============================================================ */
.btn-abrir-menu {
    display: none;
    color: #FF8C00;
    font-size: 30px;
    cursor: pointer;
}

.menu-mobile {
    background-color: #000;
    height: 100vh;
    width: 0%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    overflow-x: hidden;
    transition: .5s;
    padding-top: 60px;
}

.menu-mobile.abrir-menu {
    width: 70%;
}

.menu-mobile nav ul {
    list-style-type: none;
}

.menu-mobile nav ul li a {
    color: #fff;
    font-size: 20px;
    padding: 20px 4%;
    display: block;
    text-decoration: none;
    text-align: center;
}

.menu-mobile nav ul li a:hover {
    background-color: #FF8C00;
}

.menu-mobile .btn-fechar {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.overlay-menu {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99998;
    display: none;
}

/* ============================================================
   RESPONSIVIDADE
============================================================ */
@media screen and (max-width: 1020px) {
    .interface { padding: 0 4%; }
    .menu-desktop, .btn-contato { display: none; }
    .btn-abrir-menu { display: block; }
    section.topo-do-site .flex { flex-direction: column-reverse; text-align: center; gap: 40px; }
    .topo-do-site .txt-topo-site { max-width: 100%; }
    .topo-do-site img { max-width: 80%; margin: 0 auto; }
    .Especialidades .flex, section.portifolio .flex { flex-direction: column; align-items: center; gap: 30px; }
    section.Sobre .flex { flex-direction: column; text-align: center; gap: 40px; }
    .Sobre .txt-sobre { max-width: 100%; }
    .img-port { width: 100%; max-width: 400px; height: 250px; }
}

@media screen and (max-width: 480px) {
    .topo-do-site h1 { font-size: 26px; line-height: 36px; }
    .processo-box { padding: 30px; }
    .processo-box i { font-size: 50px; }
    footer h3 { font-size: 22px; }
}
