:root {
  --peach: #ff9a7b;
  --peach-dark: #e88668;
  --cream: #fffaf5;
  --teal: #4fd1c5;
  --foreground: #2d3748;
  --muted: #718096;
}

* {
  box-sizing: border-box;
}


html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
  color: var(--foreground);
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--peach-dark);
  margin-bottom: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
}

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

.btn-hero:hover {
  background-color: var(--peach-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--peach);
  border: 2px solid var(--peach);
}

.btn-outline:hover {
  background-color: var(--peach);
  color: white;
}

.btn-white-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.play-icon {
  display: inline-flex;
  margin-right: 8px;
}

.main-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
}

.highlight {
  color: var(--peach);
}

.logo-icon {
  background: linear-gradient(to bottom right, var(--peach), var(--peach-dark));
  padding: 10px;
  border-radius: 12px;
  color: white;
}

.nav-menu ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-menu a {
  color: var(--muted);
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: var(--peach);
}

.btn-mobile {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cream), #fff);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-top: 0;
}

.hero-badge {
  display: inline-flex;
  background: var(--peach);
  color: white;
  padding: 15px;
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  border-radius: 30px;
  border: 5px solid white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-icon {
  position: absolute;
  padding: 15px;
  border-radius: 15px;
  color: white;
  animation: float 4s ease-in-out infinite;
}

.heart {
  top: -20px;
  right: -20px;
  background: var(--teal);
}

.paw {
  bottom: -20px;
  left: -20px;
  background: var(--peach-dark);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.about-banner {
  background: linear-gradient(to right, var(--peach), var(--peach-dark));
  color: white;
  text-align: center;
  padding: 60px 0;
}

blockquote {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

#depoimentos {
  padding: 80px 0;
  text-align: center;
}

#depoimentos h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--peach-dark);
}

.box-depoimentos {
  display: flex;
  gap: 30px;
  align-items: center;
  max-width: 800px;
  margin: 30px auto;
  padding: 30px;
  border-radius: 15px;
  background-color: var(--cream);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.box-depoimentos:nth-child(even) {
  flex-direction: row-reverse;
}

.box-depoimentos img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--peach);
}

.box-depoimentos p {
  margin: 0;
  font-style: italic;
  line-height: 1.6;
}

.box-depoimentos span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: var(--peach-dark);
}

.tips {
  padding: 80px 0;
}

.tips-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

#tips-list {
  list-style: none;
  padding: 0;
}

#tips-list li {
  padding: 15px 20px;
  margin-bottom: 10px;
  background: var(--cream);
  border-radius: 10px;
  border-left: 5px solid var(--teal);
  font-weight: 500;
}

.tips img {
  width: 100%;
  border-radius: 30px;
}

#newsletter {
  background: linear-gradient(135deg, var(--teal), #38b2ac);
  padding: 90px 0;
}

.newsletter-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(255, 154, 123, 0.25),
    0 8px 20px rgba(255, 154, 123, 0.15);
  text-align: center;
}

#newsletter h1 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: var(--peach-dark);
}

#newsletter p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 40px;
}

#newsletter form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

#newsletter input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border-radius: 50px;
  border: 1px solid #e5e7eb;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

#newsletter input[type="email"]:focus {
  border-color: var(--peach);
  box-shadow: 0 0 0 2px rgba(255, 154, 123, 0.4);
}

#newsletter input[type="submit"] {
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  background-color: var(--peach);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;

  box-shadow: 0 10px 20px rgba(255, 154, 123, 0.35);
}

#newsletter input[type="submit"]:hover {
  background-color: var(--peach-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 154, 123, 0.45);
}

.newsletter-success {
  margin-top: 25px;
  padding: 15px 20px;
  border-radius: 20px;
  background-color: rgba(255, 154, 123, 0.15);
  color: var(--peach-dark);
  font-weight: 600;
  display: none;
}

@media (max-width: 768px) {
  .newsletter-content {
    padding: 40px 25px;
    border-radius: 25px;
  }

  #newsletter h1 {
    font-size: 2rem;
  }

  #newsletter form {
    flex-direction: column;
  }

  #newsletter input[type="email"],
  #newsletter input[type="submit"] {
    width: 100%;
  }
}

.main-footer {
  background: linear-gradient(to right, var(--foreground), #1f2937);
  color: white;
  padding-top: 50px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 300px;
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.6;
}

.footer-social p {
  margin-bottom: 10px;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}

.social-links a:hover {
  background: var(--peach);
  transform: translateY(-4px);
}

.social-links img {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px 0;
  text-align: center;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.2);
  color: #e5e7eb;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .btn-mobile {
    display: block;
    font-size: 26px;
    z-index: 10001;
  }

  .hide-mobile {
    display: none;
  }

  .nav-menu ul {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 250, 245, 0.75);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease-in-out;
    z-index: 10000;
  }

  .nav-menu ul.active {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 20px;
    font-weight: 600;
    color: var(--peach-dark);
    position: relative;
  }

  .nav-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: var(--teal);
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }

  .nav-menu a:hover::after {
    width: 60%;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .btn-group {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image {
    order: -1;
    margin-bottom: 20px;
  }

  .box-depoimentos,
  .box-depoimentos:nth-child(even) {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  #newsletter form {
    flex-direction: column;
  }

  #newsletter input[type="email"],
  #newsletter input[type="submit"] {
    width: 100%;
  }

  blockquote {
    font-size: 1.5rem;
  }
}
