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

body {
  font-family: 'Open Sans', sans-serif;
  background: #fefefe;
  color: #333;
}

/* Links */
a {
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Header */
.header {
  background-color: #6fc1b3;
  padding: 0.1rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* sombra mais visível e suave */
  position: sticky;
  top: 0;
  z-index: 999;
}


.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: 100px;
}

.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-items {
  display: none;
  list-style: none;
}

#mobileMenu.open {
  display: block;
  position: absolute;
  right: 10px;
  top: 60px;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

/* Hero Section */
.hero-section {
  background: #e9f5ff;
  padding: 1.5rem 0;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.hero-text-content {
  flex: 1;
  min-width: 280px;
}

.hero-text-content h1 {
  font-size: 2.8rem;
  color: #015b8c;
  margin-bottom: 1rem;
}

.hero-text-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1rem;
}

.hero-icon {
  width: 60px;
  margin-bottom: 1rem;
}

/* Botões */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-group .btn {
  min-width: 120px;
  text-align: center;
  padding: 0.8rem 1.5rem;
}

.btn {
  display: inline-block;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #0077cc;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #005fa3;
}

.btn-outline {
  background: transparent;
  border: 2px solid #0077cc;
  color: #0077cc;
}

.btn-outline:hover {
  background-color: #0077cc;
  color: white;
}

.btn-secondary {
  background-color: #ff6b6b;
  color: white;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background-color: #e44;
}

.btn-large {
  font-size: 1.2rem;
  padding: 1rem 2rem;
}

/* Imagem circular animada */
.circle-image {
  width: 300px;
  height: 300px;
  background-image: url('/assets/img/beautiful-cat-portrait-close-up.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin: 3rem auto 0;
  animation: enterRotate 1s ease-out forwards, bounce 2s infinite;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}


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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

/* Serviços */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-box {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: filter 0.4s ease;
  z-index: 1;
}

.service-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.service-content {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  width: 100%;
  transition: transform 0.4s ease, background 0.3s ease;
}

.service-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.service-content p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-btn {
  display: inline-block;
  background: #fff;
  color: #0077cc;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  transition: background 0.3s ease;
}

.service-btn:hover {
  background: #0077cc;
  color: white;
}

.service-box:hover .service-bg {
  filter: blur(4px);
}

.service-box:hover .service-content {
  transform: scale(1.05);
}

/* Loja */
.loja {
  background-color: #6fc1b3;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}

.loja-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.loja-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  /* overflow: hidden;  ← REMOVA isso */
  z-index: 1;
}


.loja-decoracao {
  position: absolute;
  top: -60px;        /* começa escondida acima da box */
  right: -80px;      /* fora da lateral direita */
  width: 180px;
  opacity: 0;
  transform: translate(40px, -40px) rotate(-10deg) scale(0.8); /* inclinação e fora da visão */
  transition: all 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.loja-card:hover .loja-decoracao {
  transform: translate(0, 0) rotate(0deg) scale(1);
  opacity: 1;
  z-index: 2;
}



.loja-subtitle {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.loja-title {
  font-size: 2rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.btn-loja {
  background-color: #e74c3c;
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-loja:hover {
  background-color: #c0392b;
  transform: scale(1.05);
}


/* Cuidado */
.cuidado {
  background-color: #d8f5f0;
  padding: 5rem 2rem;
}

.cuidado-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.cuidado-anim-wrapper {
  position: relative;
  display: inline-block;
  padding: 2rem;
  background: transparent; /* estava: #f5fdfd */
  border-radius: 12px;
  box-shadow: none; /* REMOVER SOMBRA */
  transition: all 0.3s ease;
  overflow: visible;
}


.anim-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.6);
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 5;
}

.circle-left {
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(0) rotate(0deg);
}

.circle-right {
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(0) rotate(0deg);
}

.cuidado-anim-wrapper:hover .circle-left {
  transform: translateY(-50%) translateX(-480px) rotate(-360deg);
  opacity: 1;
}

.cuidado-anim-wrapper:hover .circle-right {
  transform: translateY(-50%) translateX(480px) rotate(360deg);
  opacity: 1;
}

.cuidado-text {
  flex: 1;
  max-width: 600px;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;    
  position: relative;
  z-index: 2;
  
}


.cuidado-text:hover {
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.cuidado-text h3 {
  font-size: 1.1rem;
  color: #015b8c;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cuidado-text h2 {
  font-size: 2rem;
  color: #015b8c;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cuidado-text p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
  
}
.features-grid-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #015b8c;
  margin-bottom: 2rem;
  padding-top: 1rem;
  position: relative;
}

.features-grid-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #0077cc;
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Funcionalidades */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  background: white;
  padding: 2rem 1rem;
  border-radius: 16px;
  width: 220px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-bottom: 1rem;
}

.feature-item h5 {
  font-size: 1.05rem;
  color: #222;
  font-weight: 600;
}

/* Call to Action */
.call-to-action-box {
  background: rgb(193, 56, 43);
  border-radius: 16px;
  padding: 2rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
}


.cta-box {
  background: white;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1;
  min-width: 280px;
}

.cta-text h2 {
  font-size: 2rem;
  color: #0077cc;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.btn-cta {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.75rem 2rem;
  background-color: #ff6b6b;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
  background-color: #e44;
  transform: scale(1.05);
}

.cta-image {
  flex: 1;
  text-align: center;
  animation: bounce 2s infinite;
}

.cta-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  animation: bounce 2s infinite;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* Pulo suave */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-image {
    margin-top: 2rem;
  }
}


/* Hero Banner */
/* Importa a fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Hero Banner Principal */
.hero-banner {
  background: url('/assets/img/capa7.jpg') center right no-repeat;
  background-size: cover;
  background-color: #f6b60b; /* Fallback se imagem falhar */
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

/* Conteúdo da box */
.hero-banner-content {
  max-width: 600px;
  width: 100%;
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(30, 30, 30, 0.85));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
}

.hero-banner-content:hover {
  transform: scale(1.02);
}

/* Título principal */
.hero-banner-content h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Texto abaixo do título */
.hero-box p {
  font-size: 1.15rem;
  font-weight: 400;
  color: #f1f1f1;
  line-height: 1.7;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Logo pequena no final */
.logo-small {
  width: 70px;
  height: auto;
  margin-top: 1rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.logo-small:hover {
  transform: scale(1.1);
}


/* Contato */
.contato {
  background: #6fc1b3; /* Verde-água */
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
}

.contato-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

.form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  text-align: left;
}

.form-group.full {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #f1f1f1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #b0e0d6; /* tom claro de verde */
  border-radius: 10px;
  font-size: 1rem;
  background-color: #eafcf9; /* fundo suave nos campos */
  color: #333;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0077cc;
  background-color: #ffffff;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group.center {
  text-align: center;
  margin-top: 1.5rem;
}

/* Botão coral com sombra */
.btn.btn-secondary {
  background-color: #ff6b6b;
  color: white;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 300px;
}

.btn.btn-secondary:hover {
  background-color: #e44;
  transform: translateY(-2px);
}
   
/* Footer */
.footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-content,
  .cuidado-content {
    flex-direction: column;
  }

  .services-grid,
  .features-grid {
    flex-direction: column;
    align-items: center;
  }

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

  .btn {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero-banner {
    height: 40vh;
  }

  .circle-image {
    width: 200px;
    height: 200px;
  }
}

.footer-custom {
  background-color: #0056a3;
  color: white;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-custom .container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-custom p {
  margin-bottom: 1rem;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: #e0f0ff;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #2c3e50;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-size: 14px;
  flex-wrap: wrap;
}
.cookie-banner a {
  color: #1abc9c;
  text-decoration: underline;
}
.cookie-banner button {
  background-color: #1abc9c;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
}
.cookie-banner.hidden {
  display: none;
}
