/* =========================
   RESET GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", serif;
    background: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    background: #0b0b0b;
    z-index: 9999;
}

nav.scrolled {
    border-bottom: 1px solid #FFD700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .4);
}


/* LOGO */

nav img {
    height: 70px;
}


/* =========================
MENU DESKTOP
========================= */

.menu {
    list-style: none;
    display: flex;
    gap: 40px;
    margin-left: auto;
}

.menu li a {
    text-decoration: none;
    color: #d4af37;
    font-size: 18px;
    letter-spacing: 1px;
    position: relative;
    transition: .3s;
}

.menu li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4af37;
    left: 0;
    bottom: -6px;
    transition: .3s;
}

.menu li a:hover::after {
    width: 100%;
}


/* =========================
HAMBURGER
========================= */

.menu-toggle {
    display: none;
    width: 30px;
    height: 22px;
    cursor: pointer;
    margin-left: 20px;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #d4af37;
    left: 0;
    transition: .4s;
    border-radius: 2px;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}


/* ANIMAÇÃO X */

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
}


/* =========================
MOBILE
========================= */

@media(max-width:900px) {
    .menu-toggle {
        display: block;
        margin-left: auto;
    }
    /* MENU MOBILE */
    .menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #0b0b0b;
        flex-direction: column;
        padding: 50px 30px;
        gap: 30px;
        transition: .4s;
        box-shadow: -10px 0 40px rgba(0, 0, 0, .8);
    }
    .menu.active {
        right: 0;
    }
    .menu li a {
        font-size: 20px;
    }
}


/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, .4);
    transition: .3s;
}

.whatsapp-btn svg {
    width: 35px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, .8);
}


/* =========================
   BANNER HERO
========================= */

.banner {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}


/* IMAGEM DO BANNER */

.banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(35%);
    z-index: -1;
}


/* TITULO */

.banner h1 {
    font-size: 64px;
    color: #d4af37;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 0, 0, .8);
}


/* TEXTO */

.banner p {
    margin-top: 20px;
    font-size: 22px;
    max-width: 700px;
    line-height: 1.6;
    color: #f1f1f1;
}


/* =========================
   EFEITO OVERLAY GRADIENTE
========================= */

.banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, #0b0b0b, transparent);
}


/*serviços*/

.services {
    padding: 100px 60px;
    background: #0b0b0b;
    text-align: center;
}

.services {
    position: relative;
    padding: 150px 80px;
    background: #050505;
    overflow: hidden;
}

.bg-title {
    position: absolute;
    top: 50%;
    left: 0;
    font-size: clamp(200px, 22vw, 450px);
    font-weight: 700;
    color: rgba(212, 175, 55, 0.08);
    white-space: nowrap;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    animation: moverTexto 18s ease-in-out infinite;
}


/* ANIMAÇÃO ESTICA E VOLTA */

@keyframes moverTexto {
    0% {
        transform: translate(-10%, -50%) scaleX(1);
    }
    25% {
        transform: translate(-5%, -50%) scaleX(1.08);
    }
    50% {
        transform: translate(5%, -50%) scaleX(1.15);
    }
    75% {
        transform: translate(-3%, -50%) scaleX(1.08);
    }
    100% {
        transform: translate(-10%, -50%) scaleX(1);
    }
}


/* =============================
   GRID DOS CARDS
============================= */

.services-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}


/* =============================
   CARD SERVIÇO
============================= */

.service-item {
    background: #0b0b0b;
    border: 1px solid rgba(212, 175, 55, .2);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: .4s;
}

.service-item:hover {
    transform: translateY(-12px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
}


/* IMAGEM */

.service-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}


/* TITULO */

.service-item h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 22px;
}


/* TEXTO */

.service-item p {
    color: #ddd;
    line-height: 1.6;
}


/* BOTÃO */

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 26px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: .3s;
}

.btn:hover {
    background: #f3d97c;
    transform: translateY(-3px);
}


/* =============================
   RESPONSIVO
============================= */

@media(max-width:768px) {
    .services {
        padding: 100px 20px;
    }
    .bg-title {
        font-size: 120px;
        opacity: .05;
    }
}


/* ===========================
   CARD DESTACADO
=========================== */

.service-item1 {
    position: relative;
    background: #0b0b0b;
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, .3);
    text-align: center;
    overflow: hidden;
    transition: .4s;
    animation: pulseCard 4s ease-in-out infinite;
}


/* GLOW DOURADO ANIMADO */

.service-item1::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient( 120deg, transparent, rgba(212, 175, 55, .25), transparent);
    transform: rotate(25deg);
    animation: shine 6s linear infinite;
}


/* EFEITO HOVER */

.service-item1:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .8);
    border-color: #d4af37;
}


/* IMAGEM */

.service-item1 img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}


/* TITULO */

.service-item1 h3 {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 15px;
}


/* TEXTO */

.service-item1 p {
    color: #ddd;
    line-height: 1.6;
}


/* BOTÃO ULTRA CTA */

.service-item1 .btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #d4af37;
    color: #000;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 5px;
    text-decoration: none;
    transition: .3s;
    animation: btnPulse 2.5s infinite;
}

.service-item1 .btn:hover {
    background: #f3d97c;
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(212, 175, 55, .7);
}


/* ===========================
   ANIMAÇÕES
=========================== */


/* brilho passando */

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }
    100% {
        transform: translateX(100%) rotate(25deg);
    }
}


/* card respirando */

@keyframes pulseCard {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.015);
    }
}


/* botão chamando clique */

@keyframes btnPulse {
    0%,
    100% {
        box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, .6);
    }
}


/*clientes*/

#cliente {
    padding: 140px 80px;
    background: linear-gradient( 106deg, rgba(212, 175, 55, 1) 0%, rgba(212, 208, 0, 1) 75%, rgba(252, 176, 69, 1) 100%);
    position: relative;
    overflow: hidden;
}

#cliente::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='40' viewBox='0 0 80 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='10,20 50,20' stroke='%230b0b0b' stroke-width='2' fill='none'/%3E%3Cpolyline points='40,10 50,20 40,30' stroke='%230b0b0b' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 80px 40px;
    opacity: .08;
    animation: setasMovendo 25s linear infinite;
    z-index: 0;
}

@keyframes setasMovendo {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(33%);
    }
}

.cliente-container {
    position: relative;
    z-index: 2;
}


/* TITULO */

#cliente h2 {
    text-align: center;
    font-size: 48px;
    color: #0b0b0b;
    margin-bottom: 100px;
    letter-spacing: 3px;
}


/* GRID */

.cliente-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}


/* CARD */

.cliente-item1 {
    background: #0b0b0b;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, .15);
    transition: .5s;
    overflow: hidden;
}


/* EFEITO HOVER PREMIUM */

.cliente-item1:hover {
    transform: translateY(-12px);
    border-color: #d4af37;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .8);
}


/* FOTO */

.cliente-item1 img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d4af37;
    margin-bottom: 25px;
}


/* NOME */

.cliente-info h3 {
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 20px;
}


/* TEXTO */

.cliente-info p {
    color: #ddd;
    line-height: 1.8;
    font-size: 15px;
}


/* ASPAS DECORATIVAS */

.cliente-item1::before {
    content: "“";
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    color: rgba(212, 175, 55, .05);
    font-family: serif;
}


/* RESPONSIVO */

@media(max-width:768px) {
    #cliente {
        padding: 100px 20px;
    }
    #cliente h2 {
        font-size: 34px;
    }
    .cliente-item1 {
        padding: 30px;
    }
}


/*RESULTADOS + DEPOIMENTOS*/

#resultados,
#depoimentos {
    padding: 140px 80px;
    position: relative;
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12), transparent 40%), radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08), transparent 45%), linear-gradient(135deg, #050505 0%, #0b0b0b 100%);
}


/* pequena linha de transição elegante */

#resultados {
    border-bottom: 1px solid rgba(212, 175, 55, .08);
}


/* TITULOS PADRÃO */

#resultados h2,
#depoimentos h2 {
    font-size: 48px;
    color: #d4af37;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 90px;
}


/*RESULTADOS*/

.resultados-container {
    display: flex;
    justify-content: center;
}

.resultado-item {
    background: transparent;
    padding: 70px 120px;
    border-radius: 20px;
    transition: .4s;
    text-align: center;
}

.resultado-item h3:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .7);
}

.resultado-item h3 {
    font-size: 72px;
    color: #d4af37;
    margin-bottom: 20px;
}

.resultado-item p {
    color: #ddd;
    font-size: 20px;
    letter-spacing: 2px;
}


/*DEPOIMENTOS*/

.depoimentos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
}


/* QUALIDADE */

.qualidade-box {
    text-align: center;
}

.qualidade-box h3 {
    margin-top: 20px;
    color: #d4af37;
}

.qualidade-box p {
    font-size: 14px;
    color: #aaa;
}


/* CIRCULO */

.circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: auto;
}

.circle svg {
    transform: rotate(-90deg);
}

.circle circle {
    fill: none;
    stroke-width: 10;
}

.circle circle:first-child {
    stroke: rgba(255, 255, 255, 0.08);
}

#progress {
    stroke: #d4af37;
    stroke-dasharray: 377;
    stroke-dashoffset: 0;
}

.number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: bold;
    color: #d4af37;
}


/*REVIEWS*/

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.review {
    background: #0b0b0b;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, .2);
    transition: .4s;
}

.review:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .7);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37;
}

.review h4 {
    color: #d4af37;
    margin: 0;
}

.stars {
    color: #FFD700;
    font-size: 14px;
}

.review p {
    color: #ddd;
    line-height: 1.6;
}


/*RESPONSIVO*/

@media(max-width:900px) {
    #resultados,
    #depoimentos {
        padding: 100px 20px;
    }
    .resultado-item {
        padding: 50px 40px;
    }
    .resultado-item h3 {
        font-size: 52px;
    }
    .depoimentos-header {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}


/*mapa*/


/* ==========================
   LOCALIZAÇÃO + GOOGLE REVIEW
========================== */

#localizacao {
    padding: 140px 80px;
    background: radial-gradient(circle at 20% 40%, rgba(212, 175, 55, .12), transparent 40%), linear-gradient(135deg, #050505, #0b0b0b);
}


/* GRID */

.localizacao-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}


/* TEXTO */

.local-info h2 {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 40px;
}

.local-info h3 {
    color: #fff;
    margin-bottom: 15px;
}

.local-info p {
    color: #ccc;
    line-height: 1.7;
}


/* GOOGLE RATING */

.google-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #0b0b0b;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, .2);
    margin: 25px 0;
}

.google-rating img {
    width: 40px;
}

.google-rating strong {
    color: #d4af37;
    font-size: 22px;
}

.stars {
    color: #FFD700;
    font-size: 16px;
    display: block;
}


/* BOTÃO */

.btn-local {
    display: inline-block;
    padding: 14px 28px;
    background: #d4af37;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: .3s;
}

.btn-local:hover {
    background: #f3d97c;
    transform: translateY(-3px);
}


/* MAPA */

.mapa iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .7);
}


/* RESPONSIVO */

@media(max-width:900px) {
    .localizacao-container {
        grid-template-columns: 1fr;
    }
    #localizacao {
        padding: 100px 20px;
    }
}


/* CONTATO*/

#contato {
    padding: 140px 80px;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, .12), transparent 40%), linear-gradient(135deg, #050505, #0b0b0b);
    text-align: center;
}


/* TITULO */

#contato h2 {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 90px;
    letter-spacing: 3px;
}


/* GRID */

.contato-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}


/* ==========================
   FORMULÁRIO
========================== */

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contato-form input,
.contato-form textarea {
    background: #0b0b0b;
    border: 1px solid rgba(212, 175, 55, .25);
    padding: 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: .3s;
}

.contato-form textarea {
    min-height: 150px;
    resize: none;
}


/* foco elegante */

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 12px rgba(212, 175, 55, .35);
}


/* BOTÃO */

.contato-form button {
    background: #d4af37;
    color: #000;
    padding: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.contato-form button:hover {
    background: #f3d97c;
    transform: translateY(-3px);
}


/* ==========================
   INFO CONTATO
========================== */

.contato-info {
    background: #0b0b0b;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, .2);
    text-align: left;
    transition: .4s;
}

.contato-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .7);
}

.contato-info h3 {
    color: #d4af37;
    margin-bottom: 25px;
}

.contato-info p {
    color: #ccc;
    margin-bottom: 18px;
    line-height: 1.6;
}


/* ==========================
   BOTÃO WHATSAPP
========================== */

.btn-whats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 16px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: .3s;
}

.btn-whats svg {
    width: 24px;
}

.btn-whats:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(37, 211, 102, .7);
}


/* ==========================
   RESPONSIVO
========================== */

@media(max-width:900px) {
    #contato {
        padding: 100px 20px;
    }
    .contato-container {
        grid-template-columns: 1fr;
    }
    .contato-info {
        text-align: center;
    }
}


/*whatsapp flutuante*/


/* ==========================
   WHATSAPP FLOAT
========================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .4);
    transition: .3s;
}

.whatsapp-float svg {
    width: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* ==========================
   CHAT BOX
========================== */

.whatsapp-box {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 260px;
    background: #fff;
    color: #000;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: .5s;
    z-index: 9999;
}

.whatsapp-box.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 9999;
}

.whatsapp-header {
    background: #25D366;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    z-index: 9999
}

.whatsapp-header span {
    font-size: 12px;
    display: block;
    opacity: .8;
    z-index: 9999
}

.whatsapp-action {
    display: block;
    margin-top: 10px;
    background: #25D366;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    z-index: 9999
}


/*rodapé*/

footer {
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, .25);
    padding: 35px 60px;
    margin-top: 80px;
}


/* CONTAINER */

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}


/* TEXTO */

.footer-content p {
    color: #aaa;
    font-size: 14px;
    letter-spacing: .5px;
}


/* LINK DESENVOLVEDOR */

.footer-content a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: .3s;
}


/* LINHA DOURADA */

.footer-content a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #d4af37;
    transition: .3s;
}

.footer-content a:hover::after {
    width: 100%;
}

.footer-content a:hover {
    color: #f3d97c;
}


/* =========================
   RESPONSIVO
========================= */

@media(max-width:768px) {
    footer {
        padding: 25px 20px;
        text-align: center;
    }
    .footer-content {
        flex-direction: column;
    }
}