
:root{
  --bg:#070707;
  --bg-2:#0e0e0e;
  --bg-3:#111111;
  --line:#222;
  --line-2:#2f2f2f;
  --text:#ffffff;
  --muted:#cfcfcf;
  --muted-2:#9a9a9a;
  --orange:#f5721b;
  --orange-2:#ff8b3d;
  --shadow:0 22px 60px rgba(0,0,0,.45);
  --radius:22px;
  --max:1280px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(245,114,27,.12), transparent 24%),
    radial-gradient(circle at left bottom, rgba(245,114,27,.08), transparent 20%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  color:var(--text);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(calc(100% - 32px), var(--max)); margin:0 auto}
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(0,0,0,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.nav{
  min-height:92px; display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.brand{display:flex; align-items:center; gap:14px; min-width:0}
.brand img{width:220px; max-width:38vw; object-fit:contain}
.menu{display:flex; align-items:center; gap:28px; flex-wrap:wrap}
.menu a{
  color:#fff;
  font-weight:700;
  font-size:.96rem;
  position:relative;
  padding-bottom:8px;
}
  
  .videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.video-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.video-card:hover {
  transform: translateY(-8px);
}

.video-top {
  height: 180px;
  background: linear-gradient(135deg,#2b2b2b,#111);
  display:flex;
  align-items:center;
  justify-content:center;
}

.play {
  font-size:40px;
  color:#fff;
  background:#e1306c;
  width:70px;
  height:70px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.video-modal {
  position: fixed;
  inset:0;
  background: rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.video-box {
  width:90%;
  max-width:800px;
  position:relative;
}

.video-box video {
  width:100%;
  border-radius:12px;
}

.close {
  position:absolute;
  top:-35px;
  right:0;
  color:#fff;
  font-size:28px;
  cursor:pointer;
}
}
.menu a:hover, .menu a.active{color:var(--orange)}
.menu a.active::after, .menu a:hover::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:3px; border-radius:999px; background:var(--orange);
}
.mobile-toggle{display:none}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height:52px; padding:0 22px; border-radius:14px; font-weight:800;
  border:1px solid var(--orange); transition:.2s ease;
}
.btn-primary{
  background:linear-gradient(180deg, var(--orange-2), var(--orange));
  box-shadow:0 14px 34px rgba(245,114,27,.28);
}
.btn-primary:hover{transform:translateY(-2px); filter:brightness(1.03)}
.btn-outline{
  background:transparent;
}
.btn-outline:hover{background:rgba(245,114,27,.1)}
.section{padding:78px 0}
.section-tight{padding:38px 0}
.section-head{max-width:820px; margin:0 auto 34px; text-align:center}
.eyebrow{
  color:var(--orange); text-transform:uppercase; letter-spacing:1.6px; font-size:.78rem; font-weight:800; margin-bottom:10px;
}
h1,h2,h3,h4{margin:0 0 14px; line-height:1.08}
h1{font-size:clamp(2.2rem, 4vw, 4.7rem)}
h2{font-size:clamp(1.7rem, 3vw, 3rem)}
h3{font-size:1.2rem}
p{margin:0; color:var(--muted); line-height:1.7}
.highlight{color:var(--orange)}
.page-hero{
  padding:34px 0 26px;
}
.hero-wrap{
  display:grid; grid-template-columns:1.1fr .9fr; gap:0;
  border:1px solid rgba(255,255,255,.07);
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}
.hero-copy{
  padding:54px;
  background:
    linear-gradient(135deg, rgba(245,114,27,.12), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.34));
}
.hero-copy p{max-width:650px}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-top:28px}
.hero-media{
  min-height:580px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.10), rgba(0,0,0,.48)),
    radial-gradient(circle at 70% 12%, rgba(245,114,27,.22), transparent 18%),
    url("assets/hero-dog.png") center right / contain no-repeat,
    linear-gradient(135deg, #111 0%, #070707 100%);
}
.service-strip{
  display:grid; grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.26);
}
.service-strip .item{
  padding:28px 24px; text-align:center; border-right:1px solid rgba(255,255,255,.06);
}
.service-strip .item:last-child{border-right:0}
.service-strip strong{
  display:block; margin-bottom:8px; color:#fff; font-size:1.18rem;
}
.icon-circle{
  width:58px; height:58px; border-radius:18px; margin:0 auto 14px;
  display:grid; place-items:center; background:rgba(245,114,27,.12); border:1px solid rgba(245,114,27,.25);
  color:var(--orange); font-size:28px;
}
.breed-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
}
.breed-card{
  background:var(--bg-3); border:1px solid rgba(255,255,255,.06);
  border-radius:22px; overflow:hidden; box-shadow:var(--shadow);
}
.breed-card .thumb{aspect-ratio: 4 / 4.3; overflow:hidden; background:#111}
.breed-card img{width:100%; height:100%; object-fit:cover}
.breed-card .content{padding:18px}
.breed-card h3{margin-bottom:8px}
.instagram-section{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:22px; align-items:start;
}
.instagram-copy{
  padding:28px; border-radius:26px; background:linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.06); box-shadow:var(--shadow);
}
.instagram-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:14px;
}
.instagram-card{
  overflow:hidden; border-radius:18px; border:1px solid rgba(255,255,255,.06); box-shadow:var(--shadow);
  background:#111;
}
.instagram-card img{width:100%; aspect-ratio: 11 / 13; object-fit:cover}
.cta-band{
  display:grid; grid-template-columns:1fr 1fr; gap:24px;
  align-items:end;
  border-radius:30px; overflow:hidden;
  border:1px solid rgba(255,255,255,.07);
  background:
    linear-gradient(135deg, rgba(245,114,27,.16), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  box-shadow:var(--shadow);
}
.cta-copy{padding:42px}
.contact-box{
  margin-top:18px;
  display:grid; gap:12px;
}
.contact-line{
  padding:16px 18px; border-radius:14px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
}
.cta-art{
  min-height:360px;
  background:
    radial-gradient(circle at 70% 12%, rgba(245,114,27,.20), transparent 20%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3)),
    url("assets/contact-dog.png") center bottom / contain no-repeat;
}
.page-banner{
  padding:38px 0 18px;
}
.page-banner-box{
  border-radius:28px; padding:40px;
  border:1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(135deg, rgba(245,114,27,.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  box-shadow:var(--shadow);
}
.cards-3{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
.card{
  border-radius:22px; padding:26px;
  background:linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.06); box-shadow:var(--shadow);
}
.card .icon-circle{margin-left:0; margin-right:0}
.cards-2{display:grid; grid-template-columns:repeat(2,1fr); gap:20px}
.text-block{padding:30px}
.gallery-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
.gallery-item{
  border-radius:22px; overflow:hidden; border:1px solid rgba(255,255,255,.06); background:#111; box-shadow:var(--shadow);
}
.gallery-item img{width:100%; aspect-ratio:4/3; object-fit:cover}
.videos-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.video-card{
  border-radius:22px; overflow:hidden; border:1px solid rgba(255,255,255,.06); box-shadow:var(--shadow); background:#111;
}
.video-top{
  aspect-ratio:16/10; display:grid; place-items:center;
  background:linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55)), radial-gradient(circle at center, rgba(245,114,27,.16), transparent 22%), #131313;
}
.play{
  width:82px; height:82px; border-radius:999px; display:grid; place-items:center;
  background:var(--orange); color:#fff; font-size:30px; box-shadow:0 14px 34px rgba(245,114,27,.34);
}
.video-card .content{padding:22px}
.form-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.field{
  width:100%; min-height:56px; border-radius:14px; border:1px solid rgba(255,255,255,.08); background:#101010; color:#fff; padding:0 16px;
}
textarea.field{min-height:150px; padding:14px 16px; resize:vertical}
.footer{
  margin-top:40px; border-top:1px solid rgba(255,255,255,.06);
  padding:26px 0 34px; background:rgba(0,0,0,.22);
}
.footer-wrap{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
}
.small{font-size:.92rem; color:var(--muted-2)}
.badge{
  display:inline-flex; align-items:center; gap:8px; padding:12px 16px; border-radius:999px;
  border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.03); color:#fff; font-weight:700;
}
.spacer-24{height:24px}
.spacer-14{height:14px}
@media (max-width: 1120px){
  .hero-wrap, .cta-band, .instagram-section{grid-template-columns:1fr}
  .breed-grid, .cards-3, .videos-grid, .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .instagram-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 820px){
  .nav{min-height:78px}
  .brand img{width:180px}
  .menu{display:none}
  .mobile-toggle{display:inline-flex}
  .hero-copy{padding:34px 26px}
  .hero-media{min-height:360px}
  .service-strip, .cards-2, .cards-3, .breed-grid, .videos-grid, .gallery-grid, .form-grid{grid-template-columns:1fr}
  .instagram-grid{grid-template-columns:1fr}
  .section{padding:64px 0}
  .page-banner-box{padding:28px}
}


/* =========================
   MENU MOBILE CONTROL
========================= */

/* ESCONDE bot達o mobile no desktop */
.mobile-toggle {
  display: none;
}

/* DESKTOP MENU */
.menu {
  display: flex;
  gap: 24px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  /* MOSTRA bot達o menu */
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ESCONDE menu padr達o */
  .menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    padding: 20px;
  }

  /* MENU ABERTO */
  .menu.active {
    display: flex;
  }

}

/* MAPA FULL WIDTH */

.google-maps-full {
  background:#0f0f0f;
  color:#fff;
  padding-top:60px;
}

.maps-header {
  text-align:center;
  margin-bottom:30px;
}

.maps-full iframe {
  width:100%;
  height:420px;
  border:0;
  display:block;
}

.footer {
  background: #111;
  color: #ddd;
  padding: 60px 20px 20px;
  font-size: 14px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-title {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-text {
  line-height: 1.6;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.footer-social {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #fff;
}

/* CTA BAND */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* TEXTO */
.cta-copy {
  flex: 1;
  min-width: 320px;
}

/* IMAGEM */
.cta-art {
  flex: 1;
  text-align: center;
}

.cta-art img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .cta-band {
    flex-direction: column;
    text-align: center;
  }

  .cta-art {
    margin-top: 25px;
  }
}

.destaque-experiencia {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 70px 0;
}

.experience-box {
  max-width: 850px;
  margin: 0 auto;
}

.experience-box h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

.experience-box p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

.beneficios-servicos {
  background: #0f0f0f;
  color: #fff;
}

.section-head.center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.beneficio-card {
  background: #181818;
  padding: 28px;
  border-radius: 14px;
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.beneficio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
}

.beneficio-card .icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.beneficio-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.beneficio-card p {
  opacity: 0.85;
  line-height: 1.6;
}

.footer-social a{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
}

.avaliacoes-clientes {
  background: #0f0f0f;
  color: #fff;
}

.section-head.center {
  text-align: center;
  margin-bottom: 45px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.review-card {
  background: #171717;
  padding: 24px;
  border-radius: 14px;
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
}

.review-card p {
  margin: 14px 0;
  line-height: 1.6;
  opacity: 0.9;
}

.review-card strong {
  font-size: 14px;
  opacity: 0.8;
}

.stars {
  color: #FFD700;
  font-size: 18px;
  letter-spacing: 2px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: 0.3s ease;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37,211,102,0.6);
}

/* ANIMAÇÃO PULSO */
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

/* =========================
   AJUSTES HEADER MOBILE
========================= */

@media (max-width: 768px) {

  /* 1️⃣ Esconde botão WhatsApp do header */
  .topbar .btn.btn-primary {
    display: none;
  }

  /* 2️⃣ Mostra botão menu no lugar correto */
  .mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  /* 3️⃣ Ajusta alinhamento da navegação */
  .nav {
    justify-content: space-between;
  }

  /* 4️⃣ Corrige cor do menu mobile */
  .menu a {
    color: #fff !important;
  }

}

/* botão menu escondido no desktop */
.mobile-toggle {
  display: none;
}

/* =========================
   BOTÃO MENU MOBILE
========================= */

.mobile-toggle{
  color: var(--orange);   /* texto MENU laranja */
  font-weight: 800;
  border-color: var(--orange);
  background: transparent;
}

/* hover */
.mobile-toggle:hover{
  background: rgba(245,114,27,.12);
  color: var(--orange-2);
}