/* ===== BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
    background: #0d0d0d;
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ===== INTRO ===== */
#intro {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 1.4s ease-out forwards;
    animation-delay: 2s;
}

.intro-logo {
    width: 220px;
    opacity: 0;
    animation: logoFade 1.4s ease-out forwards;
    filter: drop-shadow(0 0 20px #fff);
}

@keyframes logoFade {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    60% {
        opacity: 1;
        transform: scale(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.hide-intro {
    animation: hideIntro .6s forwards;
}

@keyframes hideIntro {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ===== NAVBAR ===== */
/* NAVBAR GERAL */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #000;
}

/* MENU MOBILE */
.menu-btn {
    display: none; /* só aparece no mobile */
    font-size: 28px;
    cursor: pointer;
}

/* MENU MOBILE */
@media (max-width: 768px) {
    #menu {
        display: none; /* escondido por padrão */
        flex-direction: column;
        position: absolute;
        top: 60px; /* altura da navbar */
        left: 0;
        width: 100%;
        background: #000;
        padding: 10px 0;
        z-index: 999;
    }

    #menu.open {
        display: flex; /* aparece ao clicar */
    }

    #menu li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
}



nav .logo img {
    height: 50px;
    filter: drop-shadow(0 0 6px #ffffff55);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    color: #fff;
    font-size: 16px;
    transition: .3s;
}

nav ul li a:hover {
    color: #bb1e1e;
    /* vermelho profissional */
}

.menu-btn {
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    display: none;
}

.nav-socials a {
    margin-left: 15px;
    font-size: 22px;
    color: #fff;
    transition: .3s;
}

.nav-socials a:hover {
    color: #bb1e1e;
}

@media(max-width:850px) {
    nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        background: #000;
        width: 70%;
        height: 100vh;
        flex-direction: column;
        padding-top: 40px;
        padding-left: 20px;
        gap: 25px;
        border-left: 2px solid #111;
        transition: right .3s ease;
    }

    nav ul.open {
        right: 0;
    }

    .menu-btn {
        display: block;
    }

    .nav-socials {
        display: none;
    }
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: url("background.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25); /* overlay mais claro */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px; /* mais largo para desktop */
    margin-left: 5%;
    padding: 0 60px; /* espaço lateral */
}

/* HERO TITULO */
.hero-title {
    font-size: 90px;   /* grande e impactante */
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
    letter-spacing: 2px;
    text-shadow:
        0 0 10px rgba(0,0,0,0.35),
        0 0 18px rgba(0,0,0,0.25);
}

.highlight-red {
    color: #ff1e1e;
    font-weight: 900;
    text-shadow:
        0 0 12px rgba(255, 40, 40, 0.5),
        0 0 20px rgba(255, 40, 40, 0.35);
}

/* HERO SUBTITULO */
.hero-subtitle {
    margin-top: 20px;
    font-size: 22px;
    line-height: 1.6;
    color: #f8f8f8;
    font-weight: 400;
}

.hero-subtitle .highlight {
    color: #808080; /* cinza elegante para subtítulo */
    font-weight: 700;
}

.hero-subtitle .accent {
    color: #bb1e1e; /* vermelho profissional */
    font-weight: 700;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 52px; /* ainda grande no mobile */
    }

    .hero-content {
        max-width: 90%;
        padding: 0 20px;
        margin-left: auto;
        margin-right: auto;
    }
}

 /* ===== BOTÃO LÍQUIDO WHATSAPP ===== */
.btn-liquid {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: #25d366;
    color: #fff;
    font-size: 20px;
    font-weight: 700;

    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

 /* BOTÃO BASE (ESTÁVEL) */
.btn6 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;

    border-radius: 14px;
    border: none;
    outline: none;

    cursor: pointer;

    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;

    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* WHATSAPP */
.btn-whatsapp {
    background: #25d366;
}

/* SMS */
.btn-sms {
    background: #1e88e5;
}

/* HOVER (SÓ DESKTOP REAL) */
@media (hover: hover) {
    .btn6:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.35);
    }
}

/* CLICK */
.btn6:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* REMOVE BORDA VERDE MOBILE */
.btn6,
.btn6 * {
    -webkit-tap-highlight-color: transparent;
}


/* WHATSAPP */
.btn-whatsapp {
    background: #25d366;
}

/* SMS */
.btn-sms {
    background: #3b82f6; /* azul */
}

/* HOVER DESKTOP */
.btn6:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* CLICK */
.btn6:active {box-shadow: 0 6px 0 #138f45;
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* MOBILE SAFARI FIX */
.btn6,
.btn6 * {
    -webkit-tap-highlight-color: transparent;
}



.quote-buttons {
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .quote-buttons {
        flex-direction: column;
    }

    .btn6 {
        width: 100%;
    }
}


/* Botão WhatsApp (mantém seu verde) */
.btn-whatsapp {
    background: #25d366;
}

/* BOTÃO SMS - remove qualquer borda/efeito verde */
.btn-sms {
    background: #1e88e5;          /* azul */
    box-shadow: 0 6px 0 #1565c0;
    color: #fff;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent; /* iOS/Android */
}

/* Estado ao clicar (mobile) */
.btn-sms:focus,
.btn-sms:active {
    outline: none !important;
    box-shadow: 0 4px 0 #0d47a1 !important;
    border: none !important;
}

.btn-sms:hover {
    box-shadow: 0 4px 0 #1565c0;
}



/* Mobile: SMS embaixo do WhatsApp */
@media (max-width: 768px) {
    .quote-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn6 {
        width: 100%;
        justify-content: center;
        
        

    }
}
.quote-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* SMS azul */
.quote-sms {
    background: #1e88e5;
    box-shadow: 0 6px 0 #1565c0;
}

/* Mobile: SMS embaixo */
@media (max-width: 768px) {
    .quote-buttons {
        flex-direction: column;
    }

    .quote-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Botão SMS */
.quote-sms {
    background: #1e88e5 !important;
    box-shadow: 0 6px 0 #1565c0 !important;
    color: #fff !important;
}

/* Hover do SMS */
.quote-sms:hover {
    background: #1565c0 !important;
    box-shadow: 0 4px 0 #0d47a1 !important;
}
.icon-sms {
    color: #ff1e1e; /* vermelho do site */
    font-size: 22px;
    margin-left: 15px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.icon-sms:hover {
    color: #ff4d4d;
    transform: scale(1.15);
}
/* FLOAT SMS */
.sms-float {
    position: fixed;
    bottom: 110px; /* fica em cima do WhatsApp */
    right: 20px;
    width: 60px;
    height: 60px;
    background: #ff1e1e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(255, 30, 30, 0.5);
    z-index: 1000;
    transition: transform 0.2s ease, background 0.2s ease;
}

.sms-float:hover {
    background: #e60000;
    transform: scale(1.1);
}



/* Ícone */
.btn6 i {
    font-size: 22px;
}

/* EFEITO LÍQUIDO */



.btn6::after {
    opacity: .35;
    animation-direction: reverse;
}



/* ===== SECTIONS ===== */
section {
    padding: 80px 6%;
}

h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

/* ===== SERVICES ===== */
.services-section {
    background: #0d0d0d;
    text-align: center;
}

.services-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 40px;
    text-shadow: 0 0 12px rgba(230, 35, 0, 0.418);
}

.services-intro {
    font-size: 20px;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #fff;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.service-card {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 0 15px rgba(187, 30, 30, 0.3);
    transition: .35s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(187, 30, 30, 0.5);
}

.service-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}



.service-card h3 {
    color: #bb1e1e;
    margin-bottom: 15px;
    transition: .3s;
}

.service-card:hover h3 {
    color: #ffe600;
}

.service-card ul {
    list-style: disc;
    color: #ddd;
    padding-left: 20px;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
}

.services-quality {
    margin-top: 40px;
    font-size: 16px;
    color: #bb1e1e;

    font-weight: bold;
}

/* ALINHAR TUDO NO MOBILE */
@media (max-width: 768px) {
    .service-card ul {
        list-style-position: inside;
        text-align: left !important;   /* impede centralização */
        padding-left: 0;
        margin-left: 0;
    }

    .service-card ul li {
        text-align: left !important;
        margin-left: 0;
    }
}


/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: .3s;
}

.gallery-grid img:hover {
    transform: scale(1.06);
}

/* ===== REVIEWS ===== */
.reviews-section {
    background: #111;
    padding: 80px 5%;
}

.reviews-intro {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, .7);
}

.reviews-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-wrapper {
    display: flex;
    width: 100%;
    scroll-behavior: smooth;
}

.review-card {
    min-width: 280px;
    max-width: 280px;
    margin: 0 15px;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(187, 30, 30, .15);
    text-align: center;
}

.review-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 4px solid #bb1e1e;
}

.review-prev,
.review-next {
    font-size: 32px;
    color: #bb1e1e;
    cursor: pointer;
    padding: 0 12px;
    transition: .3s;
    user-select: none;
}

.review-prev:hover,
.review-next:hover {
    color: #ffe600;
}

/* ===== QUOTE ===== */
/* Layout padrão (desktop) */
.quote-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
}

.quote-image img {
    max-width: 280px;
    width: 100%;
    height: auto;
}


/* 📱 Mobile (arruma tudo abaixo de 768px) */
@media (max-width: 768px) {
    .quote-section {
        flex-direction: column;     /* imagem em cima, texto embaixo */
        text-align: center;
        gap: 20px;
    }

    .quote-image img {
        max-width: 180px;           /* diminui o tamanho da imagem */
        width: 100%;
    }

    .quote-text h2 {
        font-size: 22px;
    }

    .quote-text p {
        font-size: 16px;
    }

    .quote-btn {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
}


.quote-text {
    max-width: 500px;
    text-align: center;
}

.quote-text h2 {
    font-size: 32px;
    color: #ffffff;

    margin-bottom: 20px;
}

.quote-text p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 30px;
}

.quote-btn {
    display: inline-flex; /* para alinhar ícone e texto */
    align-items: center;
    gap: 10px; /* espaço entre ícone e texto */
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #25D366; /* verde WhatsApp */
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 0 10px #25D366, 0 0 20px #25D366;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quote-btn i {
    font-size: 20px;
}

/* Neon animado no hover */
.quote-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(37, 211, 102, 0.3);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.quote-btn:hover::before {
    opacity: 1;
    animation: neonPulse 1s infinite alternate;
}

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 10px #25D366, 0 0 20px #25D366, 0 0 30px #25D366;
    }
    50% {
        box-shadow: 0 0 15px #25D366, 0 0 30px #25D366, 0 0 45px #25D366;
    }
    100% {
        box-shadow: 0 0 10px #25D366, 0 0 20px #25D366, 0 0 30px #25D366;
    }
}

.quote-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px #25D366, 0 0 50px #25D366, 0 0 75px #25D366;
}

/* ===== MAP ===== */
.map {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}

/* ===== FOOTER ===== */
.footer-extended {
    background: #111;
    color: #ccc;
    padding: 40px 10%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h3 {
    color: #bb1e1e;
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-column p,
.footer-column a {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
}

.footer-column a:hover {
    color: #bb1e1e;
}

.footer-socials {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.footer-socials a {
    font-size: 28px;
    color: #bb1e1e;
    transition: .3s;
}

.footer-socials a:hover {
    color: #ffe600;
}

footer {
    text-align: center;
    padding: 15px 10%;
    background: #000;
    color: #777;
    font-size: 13px;
}

@media(max-width:700px) {
    .footer-extended {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        flex: 1 1 100%;
        margin-bottom: 15px;
    }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 23px;
    right: 23px;
    width: 62px;
    height: 62px;
    background: #bb1e1e;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    border-radius: 50%;
    color: #fff;
    z-index: 999;
    box-shadow: 0 0 12px #bb1e1e;
}

.whatsapp-float img {
    width: 60%;
    height: 60%;
}

/* ===== ANIMAÇÃO AO SCROLL ===== */
.appear {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 1s ease-out;
}

.hero-content,
.service-card,
.review-card,
.gallery-grid img,
.quote-section,
.footer-column {
    opacity: 0;
    transform: translateY(30px);
}
/* GALLERY menor com 2 imagens */
.gallery-small img {
    width: 100%;
    height: 180px;        /* altura ideal, não fica gigante */
    object-fit: cover;     /* mantém proporção sem distorcer */
    border-radius: 10px;
    transition: .3s;
}

.gallery-small img:hover {
    transform: scale(1.05);
}

/* Grid alinhado para apenas 2 imagens */
.gallery-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Mobile – 1 por linha */
@media(max-width:700px) {
    .gallery-small {
        grid-template-columns: 1fr;
    }

    .gallery-small img {
        height: 200px; /* mais alta pra foto não cortar no celular */
    }
}
/* Cada imagem em formato quadrado */
.gallery-box {
    width: 100%;
    aspect-ratio: 1 / 1; /* QUADRADA */
    background: #1a1a1a;
    border: 2px solid #bb1e1e;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
}

/* Imagem inteira sem cortar */
.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* mostra tudo, sem cortar */
}

/* Grid das 2 imagens */
.gallery-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media(max-width:700px) {
    .gallery-small {
        grid-template-columns: 1fr;
    }
}
.product-gallery {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.product-gallery img {
  width: 220px;          /* ajustável */
  height: 220px;         /* quadrado */
  object-fit: cover;     /* sem distorcer */
  border-radius: 12px;
  border: 2px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* BOTÃO NA COR VERMELHA DO SITE */
.btn-gallery {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: #bb1e1e;       /* vermelho principal */
  color: #fff;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(187, 30, 30, 0.6);
  transition: .2s;
}

.btn-gallery:hover {
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(187, 30, 30, 0.9);
}

/* ANIMAÇÃO CORRETA DO HERO (OBRIGATÓRIA PARA O BOTÃO FUNCIONAR) */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.site-footer {
    background-color: #111; /* fundo escuro elegante */
    color: #f5f5f5;         /* texto claro */
    text-align: center;
    padding: 25px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.site-footer a.agency-link {
    color: #ff1e1e; /* vermelho vibrante do site */
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.site-footer a.agency-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ff1e1e;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -3px;
}

.site-footer a.agency-link:hover::after {
    width: 100%; /* efeito sublinhado animado */
}

.site-footer a.agency-link:hover {
    color: #ff4b4b; /* muda levemente no hover */
}

