/* Fonte principal */
body {
  font-family: 'Inter', sans-serif;
}

/* Body principal com background */
.main-body {
  background: #f8f9fa url('assets/background.png') center center/cover no-repeat fixed;
  min-height: 100vh;
}

/* Container principal */
.main-container {
  padding: 1rem 0.75rem;
  padding-bottom: 2.5rem;
  position: relative;
  min-width: 320px;
}

@media (min-width: 576px) {
  .main-container {
    padding: 1rem;
  }
}

@media (min-width: 992px) {
  .main-container {
    padding: 1.5rem;
  }
}

/* Banner do felino: posicionamento e tamanho */
.felino-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: -22px;
  /* encosta a base no topo do card */
  height: 240px;
}

.felino-banner-img {
  width: 720px;
  height: 240px;
  aspect-ratio: 3/1;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
  border-radius: 32px;
  display: block;
}

/* Card principal */
.main-card {
  background: white;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: visible;
  position: relative;
  border: none;
}

@media (min-width: 1024px) {
  .main-card {
    max-width: 80%;
  }
}

/* Decorações dos cantos */
.corner-decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 20;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.corner-decoration:hover {
  transform: scale(1.1);
}

/* Tamanhos responsivos para decorações */
@media (max-width: 576px) {
  .corner-decoration {
    width: 80px;
    height: 80px;
  }
}

.rosa-top-left {
  left: 0;
  top: 0;
  transform: translate(-50%, -50%) scale(1.5);
}

.rosa-top-right {
  right: 0;
  top: 0;
  transform: translate(50%, -50%) scale(1.5) scaleX(-1);
}

.cristal-bottom-left {
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%) scale(1.5);
}

.cristal-bottom-right {
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%) scale(1.5) scaleX(-1);
}

/* Seção do logo */
.logo-section {
  padding-top: 0.5rem;
  padding-bottom: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background: transparent;
}

/* Conteúdo principal */
.main-content {
  padding: 1rem 1.5rem;
}

@media (min-width: 576px) {
  .main-content {
    padding: 1.5rem;
  }
}

/* Títulos das seções */
.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* Seção de serviços */
.services-section {
  margin-bottom: 2rem;
}

.services-list {
  margin: 0;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.service-name {
  font-weight: 500;
  color: #374151;
}

.service-price {
  font-weight: 600;
  color: #0d9488;
}

/* Seção de contato */
.contact-section {
  margin-bottom: 2rem;
}

.contact-list {
  margin: 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  text-decoration: none;
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.contact-link span {
  font-weight: 500;
}

/* Hover específico para WhatsApp */
.whatsapp-link:hover {
  color: #22c55e;
}

.whatsapp-link:hover .contact-icon {
  color: #22c55e;
}

/* Hover específico para Instagram */
.instagram-link:hover {
  color: #ec4899;
}

.instagram-link:hover .contact-icon {
  color: #ec4899;
}

/* Seção de locais */
.locations-section {
  margin-bottom: 1rem;
}

.locations-list {
  margin: 0;
}

.locations-list li {
  margin-bottom: 0.75rem;
}

.location-link {
  display: flex;
  align-items: center;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-link:hover {
  color: #3b82f6;
  text-decoration: none;
}

.location-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.location-link:hover .location-icon {
  color: #3b82f6;
}

.location-link span {
  font-weight: 500;
}