/* Variables */
:root {
  --primary-color: #3A1657;
  --primary-light: #5a2987;
  --primary-dark: #26083b;
  --secondary-color: #f5f5f7;
  --accent-color: #FFD166;
  --success-color: #06D6A0;
  --warning-color: #FFD166;
  --error-color: #EF476F;
  --text-color: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --header-height: 80px;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-bold: 600;
  --transition: 0.3s ease;
}

/* Global styles */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-title {
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  font-weight: var(--font-weight-bold);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 50px;
  font-weight: var(--font-weight-bold);
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-icon {
  margin-left: var(--spacing-sm);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--bg-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all var(--transition);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  font-size: 2rem;
  margin-right: var(--spacing-sm);
  color: var(--primary-color);
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  line-height: 1.2;
}

.logo-text p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-menu a {
  font-weight: var(--font-weight-regular);
  color: var(--text-color);
  transition: color var(--transition);
}

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

.btn-contato {
  background-color: var(--primary-light);
  color: var(--text-white) !important;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 50px;
  transition: all var(--transition);
}

.btn-contato:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
}

/* Hero Section */
.hero {
  height: 500px;
  background-image: url('https://images.pexels.com/photos/406014/pexels-photo-406014.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-white);
  max-width: 800px;
  padding: var(--spacing-xl);
  background-color: rgba(58, 22, 87, 0.7);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(5px);
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

/* Services Section */
.services {
  padding: var(--spacing-xxl) 0;
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.gallery-item {
  height: 200px;
  border-radius: var(--border-radius);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gallery-item:nth-child(1) {
  background-image: url('https://images.pexels.com/photos/1805164/pexels-photo-1805164.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
}

.gallery-item:nth-child(2) {
  background-image: url('https://media.istockphoto.com/id/1203971650/photo/puppy-of-a-red-corgi-dog-at-the-examination-and-injection-of-a-vaccine-at-the-veterinarian.jpg?b=1&s=612x612&w=0&k=20&c=D5lO4VsVnEPfcxHzGz0a_72kQxP27H7960zMRyOCZh8=');
}


.gallery-item:nth-child(3) {
  background-image: url('https://images.pexels.com/photos/32184108/pexels-photo-32184108/free-photo-of-adorable-brown-poodle-on-a-leash-in-park.jpeg');
}


.gallery-item:nth-child(4) {
  background-image: url('https://images.pexels.com/photos/4587996/pexels-photo-4587996.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
}


/* CTA Sections */
.cta, .secondary-cta {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: var(--spacing-xl) 0;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

.cta-content h2 span {
  color: var(--accent-color);
  font-style: italic;
}

.social-links {
  display: flex;
  gap: 16px;              /* Espaçamento entre os ícones */
  align-items: center;    /* Alinha os ícones verticalmente */
  justify-content: center;/* Centraliza os ícones no container */
  padding: 10px 0;
}

.social-links img {
  width: 24px;            /* Tamanho dos ícones */
  height: auto;           /* Mantém proporção */
  transition: transform 0.2s ease;
  cursor: pointer;
}

.social-links img:hover {
  transform: scale(1.2);  /* Efeito zoom no hover */
}

.social-icon {
  font-size: 1.5rem;
  transition: transform var(--transition);
  display: inline-block;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* Brands Section */
.brands {
  padding: var(--spacing-xxl) 0;
  background-color: var(--bg-white);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-lg);
  justify-items: center;
}

.brand-item {
  width: 120px;
  height: 80px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--spacing-sm);
}

.brand-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

/* Location Section */
.location {
  padding: var(--spacing-xxl) 0;
  background-color: var(--bg-light);
}

.location-intro {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--text-light);
}

.map-container {
  width: 100%;
  height: 400px; /* ou 100vh para altura da tela inteira */
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.map-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  font-size: 24px;
  background: white;
  padding: 5px;
  border-radius: 5px;
}


.address {
  background-color: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.address p {
  margin-bottom: var(--spacing-sm);
}

.address strong {
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: var(--spacing-xl) 0;
}

.footer-content {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin: var(--spacing-md) 0;
}

.footer-links a {
  color: var(--text-white);
  opacity: 0.8;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: var(--spacing-lg);
}