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

@import url('https://fonts.googleapis.com/css2?family=Momo+Signature&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* Atualizando esquema de cores para azul e branco */
  --primary-color: #1e5cc4;
  --primary-dark: #1547a0;
  --primary-light: #3b7dd8;
  --secondary-color: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --background: #ffffff;
  --background-alt: #f5f8fc;
  --accent-blue: #2d7ff9;
  --shadow: rgba(30, 92, 196, 0.1);
  --shadow-hover: rgba(30, 92, 196, 0.2);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: url('backbody.jpg') no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  font-family: 'Momo Signature', cursive;
   font-size: 2.5rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

.nav-mobile {
    display: none;
    background-color: white;
    border-top: 1px solid var(--border-light);
    padding: 1rem 0;
}

.nav-mobile ul {
    list-style: none;
    margin-bottom: 1rem;
}

.nav-mobile li {
    margin-bottom: 0.5rem;
}

.nav-mobile a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    text-align: center;
}


.nav {
  display: flex;
  gap: 2rem;

}

.header i{
  font-size: 2em;
  margin-left: 15px;
  margin-right: -30px;
  color: var(--text-dark);
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::after {
  width: 100%;
}

/* Certificado Fixo - Inferior Direita */
/* Movendo certificado para parte inferior direita e removendo todas animações */
.certificado-fixo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  max-width: 220px;
}

.premiere {
  width: 180px;
  height: auto;
  display: block;
  border-radius: 8px;
}

.certificado-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.certificado-icon {
  font-size: 2.2rem;
}

.certificado-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.certificado-text strong {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.certificado-text span {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.2;
}

.space-video {
  position: relative;
  width: 100%;
  height: 800px; /* A altura que você quer */
  overflow: hidden;
  background-color: var(--primary-dark);
}

.video-bg {
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  object-fit: cover; 
}

/* Hero Section */
/* HERO BASE */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding-top: 80px;
  overflow: hidden;
}

/* --- VÍDEO DE FUNDO --- */
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0; /* fica no fundo */
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 85px;
}

/* --- PELÍCULA AZUL --- */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #012b73c9; /* sua película */
  z-index: 1; /* acima do vídeo */
}

/* --- CONTEÚDO --- */
.hero .container {
  position: relative;
  z-index: 2; /* acima da película */
  margin-top: 40px;
}

.hero-content {
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}


.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.highlight {
  color: white;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); 
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: white;
  color: var(--primary-color);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

.scroll-indicator {
  margin-left: 50%;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  opacity: 0.8;
  margin-top: 100px;
}


.scroll-arrow {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  margin-top: 20px;
}

.products {
    padding: 1rem 0;
    padding-bottom: 4rem;
    text-align: center;
}
.product {
    padding: 4rem;
    background-color: #608ed3;
   
}

.video-wrappe {
  border-radius: 20px;
}

.video{
  width: 50%;
  border-radius: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}


.product-item2 img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 30px;
}

.product-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 360px;
}

.product-item h3 {
    font-size: 1.2rem;
    color: #403f40;
    font-family: Palatino, serif;
}

.button {
    display: inline-block;
    background-color: #5e5f63;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-family: Palatino, serif;
    font-size: 20px;
}

.button:hover {
    background-color: #262428;
}


@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.carousel {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.carousel-images {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 15px;
  pointer-events: none;
}

.control-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: all;
}

.control-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 70px;
}

.indicator.active {
  background-color: #e74c3c;
}


/* Breed Sections */
.breed-section {
  padding: 60px ;
  background: var(--background);
  padding-bottom: 100px;
  border-top: solid 4px #2d378f;
  border-bottom: solid 4px #2d378f;
}

.breed-section h2{
 text-align: center;
 font-size: 3.5rem;
}


.breed-section-alt {
  /* Fundo alternado em tom azul claro */
  background: var(--background-alt);
}

.breed-grid {
    display: flex;
    justify-content: center;   /* Centraliza horizontalmente */
    align-items: center;       /* Centraliza verticalmente */
    gap: 100px;                 /* Espaço entre os vídeos */
    flex-wrap: wrap;
}

.breed-grid-reverse {
  flex-direction: row-reverse;
}

.breed-image {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow);
  max-width: 600px;
  height: 500px;
}

.breed-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.breed-image .video {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* Deixa todos do mesmo tamanho */
    display: block;
    border-radius: 12px;       /* Se quiser bordas arredondadas também no vídeo */
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 102, 204, 0.2) 100%);
  pointer-events: none;
}

.breed-content {
  flex: 1;
}

.section-badge {
  display: inline-block;
  /* Badge com cor azul primária */
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  /* Título em azul primário */
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.feature-text p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  /* Seção CTA com gradiente azul */
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.8;
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.cta-card {
  background: white;
  color: var(--text-dark);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.cta-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cta-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-link:hover {
  background: var(--primary-color);
  color: white;
}

.garantias {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.garantias-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.garantias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.garantia-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.garantia-icon {
  font-size: 1.5rem;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  /* Logo do footer em azul claro */
  color: var(--primary-light);
}

.footer-description {
  color: #999;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-info {
  list-style: none;
  color: #999;
}

.footer-info li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #999;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  /* Hover dos links sociais em azul */
  color: var(--primary-light);
}

/* Animações */
/* Mantendo apenas animações essenciais e suaves */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.2s;
}

.fade-in-up-delay {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.4s;
}

.fade-in-up-delay-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.6s;
}

.fade-in-up-delay-3 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.8s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  /* Transições mais direcionadas e suaves */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
  transform: translateX(-20px);
}

.reveal-right {
  transform: translateX(20px);
}

.reveal-scale {
  transform: scale(0.98);
}

.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

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

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: -1px;
}

.mobile-menu-toggle {
        display: block;
        margin-right: 40px;
        font-size: 20px;
      
    }

    .nav-mobile.active {
        display: block;
    }

.nav a{
  display: none !important;
}

.nav-mobile i{
  display: none !important;
}

nav {
  padding-bottom: -80px;
}

.premiere {
  width: 140px;
  height: auto;
  display: block;
  border-radius: 8px;
}

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .breed-grid,
  .breed-grid-reverse {
    flex-direction: column;
  }

  .cta-cards {
    grid-template-columns: 1fr;
  }

  .garantias-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  /* Ajustando certificado para mobile no canto inferior direito */
  .certificado-fixo {
    bottom: 10px;
    right: 10px;
    max-width: 160px;
    padding: 12px 15px;
  }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  font-family: 'Momo Signature', cursive;
   font-size: 1.5rem;
}

.nav {
  display: flex;
  gap: 2rem;

}

.header i{
  font-size: 2em;
  margin-left: 15px;
  margin-right: -30px;
  color: var(--text-dark);
}

.nav-link {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover {
color: var(--primary-color);
}

.nav-link:hover::after {
  width: 100%;
}

@media (max-width: 480px) {
 
.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: -0.5px;
}

.hero{
  margin-top: 8px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
}

.mobile-menu-toggle {
        display: block;
        margin-right: 30px;
  width:40px;
 
    }

    .nav-mobile.active {
        display: block;
    }

.nav a{
  display: none !important;
}

.nav-mobile i{
  display: none !important;
}

nav {
  padding-bottom: -80px;
}

.premiere {
  width: 140px;
  height: auto;
  display: block;
  border-radius: 8px;
}

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .breed-grid,
  .breed-grid-reverse {
    flex-direction: column;
  }

  .cta-cards {
    grid-template-columns: 1fr;
  }

  .garantias-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  /* Ajustando certificado para mobile no canto inferior direito */
  .certificado-fixo {
    bottom: 10px;
    right: 10px;
    max-width: 160px;
    padding: 12px 15px;
  }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}


.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  font-family: 'Momo Signature', cursive;
   font-size: 1.5rem;
}

.nav {
  display: flex;
  gap: 2rem;

}

.header i{
  font-size: 2em;
  margin-left: 15px;
  margin-right: -30px;
  color: var(--text-dark);
}

.nav-link {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover {
color: var(--primary-color);
}

.nav-link:hover::after {
  width: 100%;
}

}
}
