/* ============================================
   Zanad Bull Terrier
   style.css
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange:   #51A8B1;
  --orange2:  #003333;
  --grad:     linear-gradient(135deg, #51A8B1 0%, #003333 100%);
  --grad-h:   linear-gradient(135deg, #3d9199 0%, #002222 100%);
  --black:    #1a1a1a;
  --gray:     #888888;
  --light:    #f5f5f5;
  --white:    #ffffff;
}

/* ── UTILITÁRIO: TEXTO COM DEGRADÊ ── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 50px; height: 50px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.logo-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--black);
  display: block;
}

.logo-text strong span { color: var(--orange); }

.logo-text small {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav ul { list-style: none; display: flex; gap: 35px; }

nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

nav a:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SIDE DOTS ── */
.side-dots {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #cccccc;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.side-dot.active {
  background: var(--grad);
  transform: scale(1.4);
}

/* ── SIDE ICONS ── */
.side-icons {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.side-icon {
  width: 55px; height: 55px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
}

.side-icon:nth-child(2) { background: linear-gradient(135deg, #3d9199 0%, #002a2a 100%); }
.side-icon:nth-child(3) { background: linear-gradient(135deg, #2d8188 0%, #002020 100%); }
.side-icon:hover        { background: #111111; }

/* ── LAYOUT HELPERS ── */
.section-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label::after {
  content: '';
  height: 2px;
  width: 55px;
  background: var(--grad);
  display: block;
  flex-shrink: 0;
}

/* ── TYPOGRAPHY ── */
.big-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.98;
  margin-bottom: 28px;
  font-weight: 700;
}

.big-title .orange {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-text {
  font-size: 15px;
  line-height: 1.82;
  color: #555555;
  max-width: 470px;
}

.section-text strong { color: var(--black); }

/* ── BUTTONS ── */
.btn-orange,
.btn-outline {
  position: relative;
  overflow: hidden;
}

.btn-orange::after,
.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0s;
  pointer-events: none;
}

.btn-orange:hover::after,
.btn-outline:hover::after {
  left: 150%;
  transition: left 0.55s ease;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--grad);
  color: white;
  padding: 15px 32px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: 32px;
  transition: opacity 0.3s;
  font-family: 'Open Sans', sans-serif;
}

.btn-orange:hover { opacity: 0.9; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #51A8B1;
  background: transparent;
  padding: 13px 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  margin-top: 32px;
  transition: all 0.3s;
  font-family: 'Open Sans', sans-serif;
  color: #003333;
}

.btn-outline:hover {
  background: var(--grad);
  color: white;
  border-color: transparent;
}

/* ── HERO ── */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding: 0;
}

.hero-left {
  background: #fdf7f0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-left img {
  max-height: 88vh;
  max-width: 95%;
  object-fit: contain;
  filter: drop-shadow(10px 20px 30px rgba(0,0,0,0.12));
}

.hero-right {
  display: flex;
  align-items: center;
  padding: 80px 60px 80px 50px;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(52px, 6.5vw, 92px);
  line-height: 0.94;
  margin-bottom: 30px;
  font-weight: 700;
}

.hero-title .orange {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── VIDEO ── */
.video-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.video-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.video-wrap:hover img { transform: scale(1.04); }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 75px; height: 75px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: transform 0.3s;
  padding-left: 6px;
  box-shadow: 0 8px 30px rgba(81,168,177,0.5);
}

.video-wrap:hover .play-btn {
  transform: translate(-50%,-50%) scale(1.1);
}

/* ── TIMELINE ── */
.timeline {
  display: flex;
  align-items: center;
  margin: 28px 0 32px;
  flex-wrap: wrap;
  gap: 2px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 18px;
}

.tl-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.3s;
}

.tl-year.active,
.tl-year:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tl-dash {
  width: 40px;
  height: 1px;
  background: #cccccc;
  margin: 0 8px;
}

.history-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ── BLOG CARD ── */
.blog-card {
  background: white;
  box-shadow: 0 4px 30px rgba(0,0,0,0.09);
  overflow: hidden;
}

.blog-card-img-wrap {
  overflow: hidden;
  height: 270px;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-img { transform: scale(1.04); }

.blog-card-body { padding: 25px 28px; }

.blog-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.3;
}

.blog-meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--gray);
  flex-wrap: wrap;
}

.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta i {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-dots { display: flex; gap: 8px; margin-top: 18px; }

.blog-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #dddddd;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.blog-dot.active { background: var(--grad); }

/* ── TRAINING WHEEL ── */
.training-wheel {
  position: relative;
  width: 430px; height: 430px;
  margin: 0 auto;
}

.wheel-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 370px; height: 370px;
  border: 1px dashed #d0d0d0;
  border-radius: 50%;
}

.wheel-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -78px);
  width: 115px; height: 115px;
  background: #111111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  z-index: 2;
}

.wheel-dog-img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.wheel-info {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, 48px);
  text-align: center;
  width: 190px;
  z-index: 2;
}

.wheel-info-title {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  color: var(--black);
  margin-bottom: 7px;
}

.wheel-info-text {
  font-size: 12px;
  color: #777777;
  line-height: 1.6;
}

.wheel-info-link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wheel-info-link:hover { opacity: 0.7; }

.wicon {
  position: absolute;
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── PUPPIES ── */
.puppy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.puppy-img-card {
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.puppy-img-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.puppy-img-card:hover img { transform: scale(1.06); }

.puppy-info-block { padding: 8px 0; }

.puppy-name {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.puppy-gender {
  font-size: 13px;
  font-weight: 600;
  color: #444444;
  margin: 5px 0 12px;
}

.puppy-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 14px;
}

.puppy-learn {
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.puppy-learn:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.puppy-learn i {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CONTACT ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  position: relative;
  border: 1px solid #dddddd;
  display: flex;
  transition: border-color 0.3s;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 17px 38px 17px 20px;
  border: none;
  outline: none;
  font-size: 11px;
  font-family: 'Open Sans', sans-serif;
  color: var(--black);
  background: transparent;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-field textarea  { height: 130px; resize: none; }
.form-field::after    { content: '*'; position: absolute; right: 14px; top: 17px; color: #bbbbbb; font-size: 15px; }

.form-field input::placeholder,
.form-field textarea::placeholder { color: #bbbbbb; }

.form-field:focus-within {
  border-image: var(--grad) 1;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.contact-info i {
  font-size: 26px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.phone-num       { font-family: 'Oswald', sans-serif; font-size: 30px; color: var(--black); }
.phone-hours     { font-size: 13px; color: var(--gray); margin-top: 2px; }

/* ── LOGO IMAGEM NO MENU ── */
.logo-img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── FOOTER ── */
.footer-main {
  position: relative;
  background: linear-gradient(160deg, #51A8B1 0%, #1a6a72 40%, #003333 100%);
  overflow: hidden;
  color: rgba(255,255,255,0.85);
}

/* canvas da rede neural — ocupa todo o footer */
.footer-neural {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.footer-grid {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 60px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 60px;
}

/* ── Coluna genérica ── */
.footer-col {}

/* Logo */
.footer-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  display: block;
  margin-bottom: 20px;
}

.footer-about {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  max-width: 300px;
  margin-bottom: 28px;
}

/* Ícones sociais */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.25s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
  transform: translateY(-3px);
}

/* Títulos das colunas */
.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 26px;
  padding-bottom: 14px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
}

/* Links de navegação */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s, gap 0.25s;
}

.footer-links a::before {
  content: '›';
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: #fff;
  gap: 12px;
}

.footer-links a:hover::before {
  color: rgba(255,255,255,0.8);
}

/* Lista de contato */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.footer-contact-list i {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Botão CTA no footer */
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.footer-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0s;
}

.footer-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

.footer-cta:hover::after {
  left: 150%;
  transition: left 0.55s ease;
}

/* Barra inferior */
.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px 60px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-credit-line a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

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

/* ── BOTÃO TOPO ── */
@keyframes float-up {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 6px 20px rgba(0,51,51,0.35);
  animation: float-up 2s ease-in-out infinite;
  transition: background 0.3s, box-shadow 0.3s;
}

.back-to-top:hover {
  background: var(--grad-h);
  box-shadow: 0 8px 28px rgba(0,51,51,0.45);
}

.back-to-top i   { font-size: 15px; }
.back-to-top span { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-family: 'Open Sans', sans-serif; }

/* ── BANNER DE COOKIES ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-text {
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
}

.cookie-text i {
  color: var(--orange);
  margin-right: 8px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.cookie-btn:hover { opacity: 0.85; }

.cookie-accept {
  background: var(--grad);
  color: var(--white);
}

.cookie-refuse {
  background: transparent;
  color: #aaa;
  border: 1px solid #555;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero           { grid-template-columns: 1fr; }
  .hero-left      { min-height: 50vh; }
  .two-col        { grid-template-columns: 1fr; gap: 40px; }
  .container      { padding: 0 20px; }
  nav ul          { display: none; }
  .side-icons     { display: none; }
  .training-wheel { width: 300px; height: 300px; }
  .wheel-ring     { width: 260px; height: 260px; }
  .footer-grid     { grid-template-columns: 1fr; gap: 40px; padding: 50px 20px 40px; }
  .footer-bottom   { padding: 18px 20px; flex-direction: column; text-align: center; }
  .footer-about    { max-width: 100%; }
  .footer-logo img { height: 54px; }
  .cookie-banner   { flex-direction: column; padding: 20px; text-align: center; }
  .cookie-actions  { width: 100%; justify-content: center; }
  .logo-img        { height: 54px; }
  .back-to-top     { bottom: 80px; right: 20px; width: 50px; height: 50px; }
}
