/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(to bottom, #f8e8d2, #f8e8d2);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utilitários */
.gradient-text {
  background: linear-gradient(135deg, #d3383d, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8a82829;
  color: #a3673d;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8c8c, #d3383d);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 179, 179, 0.4);
}

.btn-primary.large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-secondary {
  background: transparent;
  color: #e8a928;
  border: 2px solid #a3673d;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #e8a928;
  color: white;
  transform: translateY(-2px);
}

.btn-secondary.large {
  padding: 16px 32px;
  font-size: 18px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #e8a928;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 4px solid #fbbf24;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon .imglogo {
  width: 100px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.logo-text h1 {
  font-size: 24px;
  font-weight: 800;
  color: #d3383d;
  line-height: 1;
}

.logo-text p {
  font-size: 14px;
  color: #e8a928;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  text-decoration: none;
  color: #898989;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #d3383d;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #a3673d;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 16px;
}

.mobile-nav a {
  text-decoration: none;
  color: #a3673d;
  font-weight: 500;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff6ea, #ffefd9, #ffd191);
}

.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decoration {
  position: absolute;
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
}

.decoration.ball {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.brinquedo {
  width: 70px;
  height: 30px;
}

.decoration.bone {
  top: 20%;
  right: 15%;
  animation-delay: 0.5s;
}

.decoration-toy {
  position: absolute;
  bottom: 6%;
  left: -100px;
  animation: doggoRun 15s linear infinite;
  display: flex;
  align-items: center;
  z-index: 10;
}

/* Imagem do dog na frente */
.imgtoy {
  width: 80px;
  height: auto;
  position: relative;
  z-index: 10; /* Fica acima da fumaça */
}

/* Fumaça por trás */
.smoke {
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(150, 150, 150, 0.796), transparent);
  border-radius: 50%;
  margin-left: -35px;
  animation: puff 0.5s infinite;
  opacity: 0.3;
  position: absolute;
  z-index: 1; /* Fica abaixo do cachorro */
  top: 60%;
  transform: translateY(-50%);
}

/* Movimento do bulldog */
@keyframes doggoRun {
  0% {
    left: -100px;
  }
  100% {
    left: 110%;
  }
}

/* Fumaça pulsando e se dispersando */
@keyframes puff {
  0% {
    transform: scale(0.3) translateY(-50%);
    opacity: 0.7;
  }
  30% {
    transform: scale(0.8) translateY(-60%);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.5) translateY(-70%);
    opacity: 0.2;
  }
  100% {
    transform: scale(2) translateY(-80%);
    opacity: 0;
  }
}

.decoration.star {
  bottom: 15%;
  right: 10%;
  animation-delay: 1.5s;
}

.decoration.house {
  top: 20%;
  left: 15%;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  z-index: 10;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: #e8a928;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.3rem;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-weight: 500;
}

.stars {
  color: #fbbf24;
}

.number {
  color: #a3673d;
  font-weight: 700;
}

.hero-mascot {
  position: relative;
  display: flex;
  justify-content: center;
}

.mascot-card {
  background: linear-gradient(135deg, #f8e8d2, #fff6e9, #ffddae);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}

.mascot-card:hover {
  transform: rotate(0deg);
}

.mascot-content {
  background: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mascot-avatar .mascot {
  width: 170px;
  height: 130px;
  font-size: 5rem;
  margin-bottom: 16px;
}

.mascot-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d3383d;
  margin-bottom: 8px;
}

.mascot-content p {
  color: #6b7280;
  margin-bottom: 16px;
}

.mascot-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.mascot-icons span {
  font-size: 1.5rem;
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-dot {
  position: absolute;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.dot-1 {
  top: -16px;
  left: -16px;
  width: 32px;
  height: 32px;
  background: #fbbf24;
}

.dot-2 {
  bottom: -16px;
  right: -16px;
  width: 24px;
  height: 24px;
  background: #f472b6;
  animation-delay: 0.5s;
}

.dot-3 {
  top: 50%;
  right: -32px;
  width: 16px;
  height: 16px;
  background: #8b5cf6;
  animation-delay: 1s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Services Section */
.services {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff, #fff7ec);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.service-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon.pink {
  background: linear-gradient(135deg, #f472b6, #ec4899);
}
.service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.service-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}
.service-icon.green {
  background: linear-gradient(135deg, #10b981, #059669);
}
.service-icon.red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.service-icon.yellow {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e8a928;
  margin-bottom: 16px;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 8px;
}

.service-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #d3383d;
  border-radius: 50%;
}

.promo-banner {
  background: linear-gradient(135deg, #f8e8d2, #e8a8285e);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.promo-banner h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e8a928;
  margin-bottom: 16px;
}

.promo-banner p {
  color: #6b7280;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.promo-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.promo-icons span {
  font-size: 2rem;
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff6ea, #ffefd9, #ffd191);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-emoji {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-emoji {
  transform: scale(1.1);
}

.gallery-item.pink .gallery-emoji {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}
.gallery-item.purple .gallery-emoji {
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}
.gallery-item.blue .gallery-emoji {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.gallery-item.green .gallery-emoji {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.gallery-item.yellow .gallery-emoji {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.gallery-item.red .gallery-emoji {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
}
.todos-cards {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e8a928;
  margin-bottom: 8px;
  padding: 0 24px;
}

.gallery-item p {
  color: #6b7280;
  padding: 0 24px 24px;
}

.gallery-item > div:last-child {
  background: white;
  padding: 24px;
}

.visit-banner {
  background: white;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 4px solid #fbbf24;
}

.visit-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
}

.visit-banner h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e8a928;
  margin-bottom: 16px;
}

.visit-banner p {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.visit-hearts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #d3383d;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff, #fff7ec);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f8e8d2, #a3673d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
}
.avatar-img {
  width: 100%;
  height: 100%;
}

.info h4 {
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 4px;
}

.info p {
  font-size: 14px;
  color: #6b7280;
}

.stars {
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.testimonial-card > p {
  color: #6b7280;
  font-style: italic;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.testimonial-card > p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 2rem;
  color: #ff0000;
  font-weight: bold;
}

.stats-banner {
  background: linear-gradient(135deg, #fff6ea, #ffefd9);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.trophy {
  font-size: 4rem;
  margin-bottom: 16px;
}

.stats-banner h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 16px;
}

.stats-banner p {
  color: #6b7280;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.stats .stat {
  text-align: center;
}

.stats .number {
  font-size: 2rem;
  font-weight: 800;
  color: #a3673d;
  display: block;
}

.stats .label {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff6ea, #ffefd9, #ffd191);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #a3673d;
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff0000;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-card {
  background: linear-gradient(135deg, #fff6ea, #ffefd9);
  border-radius: 20px;
  padding: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.info-icon-img {
  width: 70%;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.info-icon.pink {
  background: linear-gradient(135deg, #f472b6, #ec4899);
}
.info-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}
.info-icon.green {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.info-icon.yellow {
  background: linear-gradient(135deg, #10b981, #059669);
}

.info-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 8px;
}

.info-content p {
  color: #6b7280;
  line-height: 1.5;
}

.visit-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.visit-card .visit-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
}

.visit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 16px;
}

.visit-card p {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #ffa9a9, #ca3928);
  color: white;
  padding: 60px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-columns {
  display: contents;
}

.footer-main {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: #ca3928;
}

.footer-logo p {
  color: #6b7280;
  font-size: 14px;
}

.footer-main p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
}

.icon-img {
  width: 100%;
  height: 20px;
  object-fit: cover;
  transition: all 0.3s ease;
}
.icon-img:hover {
  transform: scale(1.1);
}

.footer-services h4,
.footer-contact h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #f8e8d2;
}

.footer-services ul {
  list-style: none;
}

.footer-services li {
  margin-bottom: 12px;
}

.footer-services a {
  color: #fce7f3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-services a:hover {
  color: white;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #fce7f3;
}

.contact-item span {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: #fce7f3;
  font-size: 14px;
}
.heart {
  font-size: 15px;
  font-weight: 800;
  color: #fbbf24;
  line-height: 1;
}

.footer-love {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fce7f3;
}

.footer-love .heart {
  color: #fce7f3;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav.active {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 40px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-main {
    max-width: 100%;
    margin-bottom: 8px;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 8px;
  }

  .footer-main p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .social-links {
    justify-content: center;
    margin-bottom: 24px;
  }

  .footer-services h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    text-align: center;
  }

  .footer-services,
  .footer-contact {
    padding: 0 8px;
  }

  .footer-services ul {
    text-align: center;
  }

  .footer-services li {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .footer-contact .contact-item {
    justify-content: center;
    font-size: 13px;
  }

  .contact-item {
    justify-content: center;
    margin-bottom: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 24px;
  }

  .stats {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  body {
    overflow-x: hidden;
  }

  .hero {
    padding: 120px 0 60px;
    overflow: hidden;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 8px;
    justify-content: center;
  }

  .btn-primary.large,
  .btn-secondary.large {
    padding: 12px 20px;
    font-size: 14px;
    flex: 1;
    max-width: 160px;
  }

  .btn-primary {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mascot-card {
    padding: 24px;
  }

  .mascot-avatar {
    font-size: 4rem;
  }

  .decoration {
    font-size: 2rem;
  }

  .decoration-toy {
    bottom: 6%;
    left: -60px;
    animation: doggoRunMobile 12s linear infinite;
  }

  .decoration.ball .brinquedo {
    width: 35px;
    height: 20px;
  }

  .smoke {
    margin-left: -25px;
    animation: puff 0.7s infinite;
    width: 25px;
    height: 25px;
  }

  /* Animação mobile mais controlada */
  @keyframes doggoRunMobile {
    0% {
      left: -60px;
    }
    100% {
      left: 100%;
    }
  }

  .services,
  .gallery,
  .testimonials,
  .contact {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .service-card,
  .testimonial-card {
    padding: 24px;
  }

  .contact-form,
  .info-card {
    padding: 24px;
  }

  .footer {
    padding: 32px 0;
    overflow: hidden;
  }

  .footer-main {
    padding: 0 16px;
    overflow: hidden;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
    overflow: hidden;
  }

  .footer-logo h3 {
    font-size: 1.3rem;
  }

  .footer-main p {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .paragrafo {
    display: none;
  }

  .social-links {
    gap: 8px;
    margin-bottom: 8px;
    display: none;
  }

  .social-link {
    display: none;
  }

  .footer-services h4,
  .footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    text-align: center;
  }

  .footer-services,
  .footer-contact {
    padding: 0 6px;
  }

  .footer-services ul {
    text-align: center;
  }

  .footer-services li {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .footer-services a {
    text-decoration: none;
    border: none;
    outline: none;
    color: #fce7f3;
  }

  .footer-services a:hover {
    color: white;
    text-decoration: none;
  }

  .footer-contact p {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    line-height: 1.4;
    color: #fce7f3;
  }

  .contact-item {
    font-size: 14px;
    margin-bottom: 6px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 8px;
  }

  .contact-item span {
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
  }

  .contact-item p {
    text-decoration: none;

    border: none;
    outline: none;
  }

  .contact-item a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Remove todas as linhas de texto no footer mobile */
  .footer * {
    text-decoration: none !important;
    border-bottom: none !important;
    border-top: none !important;
  }

  .footer a {
    text-decoration: none !important;
  }

  .footer p {
    text-decoration: none !important;
    border: none !important;
  }

  .footer-bottom {
    padding-top: 16px;
    gap: 6px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-love {
    font-size: 14px;
    display: none;
  }
  .info-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 0;
    max-width: 20px;
    max-height: 20px;
  }

  .icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    max-width: 20px;
    max-height: 20px;
  }
}

/* Breakpoint para telas muito pequenas (320px e menores) */
@media (max-width: 320px) {
  .container {
    padding: 0 12px;
  }

  .footer {
    padding: 24px 0;
  }

  .footer-main {
    padding: 0 12px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .footer-services,
  .footer-contact {
    padding: 0 4px;
  }

  .footer-services h4,
  .footer-contact h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .footer-services li {
    margin-bottom: 3px;
    font-size: 13px;
  }

  .footer-services a {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    color: #fce7f3;
  }

  .contact-item {
    font-size: 13px;
    margin-bottom: 4px;
    text-align: center;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    align-items: center;
  }

  .contact-item p {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: none !important;
    color: #fce7f3;
    line-height: 1.3;
  }

  .contact-item a {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
  }

  .footer-logo h3 {
    font-size: 1.1rem;
  }

  .info-icon-img,
  .icon-img {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
  }
}

/* Animações adicionais */
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.decoration.ball {
  animation: bounce 2s infinite;
}

.decoration.toy {
  animation: bounce 2s infinite;
  animation-delay: 1s;
}
