@import url('https://fonts.googleapis.com/css2?family=Paytone+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
}

header {
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Estilo para o header */
.containerHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #fff;
}

.logo img {
  max-height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: auto;
}
.nav {
  margin: auto;
  margin-left: 3rem;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #f1b533;
}

/* Estilos específicos para dispositivos móveis */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  flex-direction: column;
  gap: 1rem;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%; /* Inicialmente fora da tela */
  height: 100%;
  width: 250px;
  background-color: #333;
  z-index: 1000;
  padding-top: 60px;
  transition: right 0.3s ease;
}

.mobile-nav ul {
  list-style: none;
  padding-left: 20px;
}

.mobile-nav ul li {
  margin: 20px 0;
}

.mobile-nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  display: block;
}

.mobile-nav.show-menu {
  right: 0;
}

@media (max-width: 768px) {
  /* Estilo para o header */
  .containerHeader {
    width: 100%;
  }
  .hamburger {
    display: flex;
    gap: 0.5rem;
  }
  .close-menu-li {
    /* background-color: #00adef; */
    width: 90%;
    text-align: end;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .close-menu {
    color: #fff;
    font-size: 36px;
  }

  nav ul {
    /* display: none; */
    display: flex;
    flex-direction: column;
  }

  .desktop {
    display: none !important;
  }

  .mobile-nav {
    display: block;
  }
  .mobile-nav ul li {
    margin: 0 0;
    text-align: left;
  }
  .cta {
    /* display: none; */
    flex-direction: column !important;
    /* background-color: #00adef; */
  }
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
  /* nav ul {
    display: none;
  } */

  /* .hamburger {
    display: block;
  } */

  /* .cta {
    display: none;
  } */
}

.cta {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.cta .btn {
  background-color: #00adef;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 24px;
  transition: background-color 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}

.cta .btn:hover {
  background-color: #00adef;
}
.hero {
  padding: 50px 0;
  background-color: #fdfdfd;
}

.hero-content {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-content h1 {
  color: #0d0c22;

  font-family: Alata;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  line-height: normal;
}

.hero-content .highlight {
  color: #00adef;
  font-family: 'Paytone One';
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero-content p {
  margin-bottom: 30px;

  color: #323232;

  font-family: 'Open Sans';
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: left;
}

.hero-content .btn {
  background-color: #00adef;
  color: white;
  padding: 10px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
  font-weight: 900;
}

.hero-content .btn:hover {
  background-color: #00adef;
}

.hero-image {
  max-width: 45%;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.tips-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

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

.tips-section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 40px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.tip-card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-card img {
  max-width: 50px;
  margin-bottom: 20px;
  padding: 0.5rem;
  border-radius: 18px 5px 10px 5px;
  background: rgba(0, 173, 239, 0.5);
}

.tip-card h3 {
  font-size: 20px;
  color: #00adef;
  margin-bottom: 15px;
}

.tip-card p {
  font-size: 16px;
  color: #666;
}

.connected-section {
  background-color: #f5f5f5; /* cor de fundo ligeiramente cinza */
  padding: 40px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cuidando-seu-pet {
  /* max-width: 80%; */
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.cuidando-seu-pet h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.cuidando-seu-pet p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.title {
  width: 50%;
  margin: auto;
  color: #323232;

  text-align: center;
  font-family: 'Open Sans';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px; /* 122.222% */
}
.container-cuidando-seu-pet {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}
.cuidando-seu-pet .btn {
  background-color: #00adef;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cuidando-seu-pet .btn:hover {
  background-color: #00adef;
}

.image-cat {
  max-width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-cat img {
  max-width: 100%;
  height: auto;
}

.testimonials-section {
  padding: 50px 0;
  background-color: #ffffff;
}

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

.testimonials-section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 40px;
}

.highlight {
  color: #333;
}

.highlight-zen {
  color: #00adef;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: left;
  position: relative;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

.testimonial-card p {
  font-size: 16px;
  color: #666;
}

.testimonial-card .highlight-zen {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #00adef;
}

.newsletter-section {
  background-color: #ffffff;
  padding: 50px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-content {
  max-width: 50%;
}

.text-content h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 20px;
}

.benefits-list li {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.benefit-number {
  background-color: #00adef;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: bold;
}

.newsletter-form {
  display: flex;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 25px;
  overflow: hidden;
  max-width: 400px;
}

.newsletter-form input[type='email'] {
  border: none;
  padding: 10px;
  flex-grow: 1;
  font-size: 16px;
}

.newsletter-form button {
  background-color: #00adef;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #00adef;
}

.image-content {
  max-width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
}
.footer-section {
  background-color: #f5f5f5;
  padding: 40px 20px;
  text-align: left;
}

.containerFooter {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: start;
  flex-direction: column;
}

.map {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.map > h3 {
  margin-bottom: 2rem;
}
.map-container {
  position: relative;
  width: 100%;
  /* padding-bottom: 10.25%; */
  height: 50vh;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-logo h1 {
  font-size: 24px;
  font-weight: bold;
}

.footer-logo .pet {
  color: #2c2c2c; /* Cor preta */
}

.footer-logo .zen {
  color: #00adef; /* Cor amarela */
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  flex-direction: column;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #00adef;
}

.footer-contact h3 {
  background-color: #00adef;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.footer-contact a {
  color: #333;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-map h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  font-size: 14px;
  color: #666;
}

.footer-legal-nav a {
  text-decoration: none;
  color: #666;
  margin-right: 15px;
}

.footer-legal-nav a:hover {
  color: #333;
}

.about-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

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

.about-section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.about-card {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: left;
  position: relative;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card img {
  max-width: 60px;
  margin-bottom: 15px;
}

.about-card h3 {
  font-size: 20px;
  color: #00adef;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 16px;
  color: #666;
}

.contact-section {
  background-color: #ffffff;
  padding: 50px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-content {
  max-width: 50%;
}

.text-content h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* max-width: 400px; */
}

.contact-form input[type='text'],
.contact-form input[type='email'],
.contact-form input[type='tel'],
.contact-form textarea {
  border: 1px solid #ccc;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
}

.contact-form textarea {
  resize: vertical;
  height: 100px;
}

.contact-form button {
  background-color: #00adef;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #00adef;
}

.image-content {
  max-width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
}
.obrigadoContainer{
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .container {
    flex-direction: column;
  }
  .title {
    width: 90%;
    font-size: 30px;
    line-height: 40px; /* 122.222% */
  }

  .cuidando-seu-pet {
    /* max-width: 80%; */
    width: 90%;
    align-items: center;
    margin: auto;
  }

  .btn {
    width: 100%;
  }
  .image-cat {
    max-width: 90%;
    margin: auto;
  }
  .text-content {
    max-width: 90%;
  }
  .map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }

  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .hero-content {
    max-width: 90%;
  }
  .hero {
    padding: 0px 0;
  }
}
