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

:root {
  /* Nova paleta de cores baseada na identidade visual */
  --primary-color: #931b3e; /* Vinho escuro */
  --secondary-color: #8d344f; /* Vinho médio */
  --accent-color: #ddc3c9; /* Rosa claro */
  --gold-color: #b8860b; /* Dourado */
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --white: #ffffff;
  --light-bg: #fdf8f8;
  --gradient: linear-gradient(135deg, #931b3e 0%, #8d344f 50%, #ddc3c9 100%);
  --gold-gradient: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  background-color: transparent;
}

.skip-link:focus {
  top: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: "Comfortaa", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Adicionando scroll offset para todas as seções */
section {
  scroll-margin-top: 120px; /* Aumentando para compensar melhor o header fixo */
  scroll-margin-top: 120px; 
}

/* Ajuste específico para a seção hero */
.hero {
  scroll-margin-top: 0; /* Hero não precisa de offset */
}
.hero-logo {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-color);
  box-shadow: 0 10px 30px rgba(147, 27, 62, 0.2);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 4rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 70px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  transition: all 0.3s ease;
  padding: 0.5rem 0rem;
}

.brand-logo:hover {
  transform: scale(1.05);
}

/* Removendo os estilos antigos do brand */
.brand-name,
.brand-subtitle {
  display: none;
}

.nav-brand i {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-family: "Comfortaa", sans-serif;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a:focus::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-family: "Comfortaa", sans-serif;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Comfortaa", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(147, 27, 62, 0.3);
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(147, 27, 62, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.cta-button.secondary:hover,
.cta-button.secondary:focus {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(147, 27, 62, 0.3);
}

.cta-button i {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 0.9rem;
}

/* Image Container */
.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
}

.element-1 {
  width: 80px;
  height: 80px;
  background: var(--gold-gradient);
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.element-2 {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  bottom: 20%;
  left: 5%;
  animation: float 4s ease-in-out infinite reverse;
}

.element-3 {
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  top: 60%;
  right: 20%;
  animation: float 5s ease-in-out infinite;
}

.profile-image {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-color);
  box-shadow: 0 10px 30px rgba(147, 27, 62, 0.2);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* About Section */
.about {
  padding: 5rem 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Credentials Section */
.credentials {
  margin: 2rem 0;
}

.credential-section {
  margin-bottom: 2rem;
}

.credential-section h3 {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.credential-section h3 i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.credential-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.credential-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(147, 27, 62, 0.1);
  color: var(--text-light);
  line-height: 1.6;
}

.credential-list li:last-child {
  border-bottom: none;
}

.credential-list li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.experience-text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* About CTA Clean */
.about-cta-clean {
  padding: 0.5rem 0;
  text-align: flex-start;
}

.about-cta-clean p {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.cta-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.cta-link:hover::after,
.cta-link:focus::after {
  width: 100%;
}

.cta-link:hover,
.cta-link:focus {
  color: var(--secondary-color);
}

.cta-link:hover i,
.cta-link:focus i {
  transform: translateX(5px);
}

.cta-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

/* About CTA Section */
.about-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(147, 27, 62, 0.05) 0%, rgba(221, 195, 201, 0.1) 100%);
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(147, 27, 62, 0.1);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  border-radius: 20px 20px 0 0;
}

.cta-text {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gradient);
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(147, 27, 62, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before,
.cta-button:focus::before {
  left: 100%;
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(147, 27, 62, 0.4);
  filter: brightness(1.1);
}

.cta-button i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.cta-button:hover i,
.cta-button:focus i {
  transform: scale(1.2);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.services .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services .section-header h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(147, 27, 62, 0.1);
  border: 1px solid rgba(147, 27, 62, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before,
.service-card:focus-within::before {
  transform: scaleX(1);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(147, 27, 62, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(147, 27, 62, 0.3);
}

.service-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  flex-grow: 1;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.service-link:hover,
.service-link:focus {
  color: var(--secondary-color);
}

/* Specialties Section */
.specialties {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(147, 27, 62, 0.02) 0%, rgba(221, 195, 201, 0.05) 100%);
}

.specialties .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.specialties .section-header h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.specialties .section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
}

/* Centralizar o último card quando ímpar */
.specialties-grid .specialty-card:nth-child(odd):last-child {
  grid-column: 1 / -1;
  max-width: 450px;
  margin: 0 auto;
}

.specialty-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(147, 27, 62, 0.08);
  border: 1px solid rgba(147, 27, 62, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.specialty-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.specialty-card:hover::before,
.specialty-card:focus-within::before {
  transform: scaleX(1);
}

.specialty-card:hover,
.specialty-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(147, 27, 62, 0.12);
}

.specialty-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--white);
  font-size: 2.2rem;
  box-shadow: 0 15px 30px rgba(147, 27, 62, 0.25);
  transition: transform 0.3s ease;
}

.specialty-card:hover .specialty-icon {
  transform: scale(1.1);
}

.specialty-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.specialty-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.specialty-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.feature-tag {
  background: rgba(147, 27, 62, 0.08);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(147, 27, 62, 0.1);
  transition: all 0.3s ease;
}

.specialty-card:hover .feature-tag {
  background: rgba(147, 27, 62, 0.12);
  border-color: rgba(147, 27, 62, 0.2);
}

.specialties-cta {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(147, 27, 62, 0.08);
  border: 2px solid rgba(147, 27, 62, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

.specialties-cta p {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.specialties-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gradient);
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(147, 27, 62, 0.3);
}

.specialties-cta .cta-button:hover,
.specialties-cta .cta-button:focus {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(147, 27, 62, 0.4);
  filter: brightness(1.1);
}

/* Expertise Section */
.expertise {
  padding: 5rem 0;
  background: var(--white);
}

.expertise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.expertise-text h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.expertise-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.expertise-features {
  list-style: none;
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.feature i {
  color: var(--gold-color);
  font-size: 1.2rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--light-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  font-style: normal;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.contact-item h4 {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover,
.contact-item a:focus {
  color: var(--primary-color);
}

/* WhatsApp Contact Styles */
.phone-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white !important;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.3rem;
  width: fit-content;
}

.whatsapp-link:hover,
.whatsapp-link:focus {
  color: white !important;
  transform: scale(1.1);
  filter: brightness(1.1);
  outline: none;
}

.whatsapp-link:active {
  transform: translateY(-1px) scale(1.02);
  transition: all 0.1s ease;
}

.whatsapp-link i {
  margin: 0;
}

.whatsapp-text {
  font-family: "Comfortaa", sans-serif;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(147, 27, 62, 0.1);
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Comfortaa", sans-serif;
  transition: border-color 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(147, 27, 62, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 80px;
  width: auto;
  max-width: 350px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Torna o logo branco se for escuro */
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Removendo estilos antigos do footer brand */
.footer-brand i,
.footer-brand span {
  display: none;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--white);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.footer-social a:hover,
.footer-social a:focus {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Responsive adjustments for services */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

/* Responsive Design */
/* Responsive adjustments for WhatsApp */
@media (max-width: 768px) {
  .nav {
    padding: 0.8rem 1rem;
  }

  .brand-logo {
    height: 55px;
    max-width: 220px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-content,
  .about-content,
  .expertise-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .about-text h2,
  .expertise-text h2,
  .contact-info h2,
  .section-header h2 {
    font-size: 2rem;
  }

  .stats {
    justify-content: center;
    gap: 1rem;
  }

  /* About CTA Clean Responsive */
  .about-cta-clean {
    margin: 1.5rem 0;
    padding: 1rem 0;
  }

  .about-cta-clean p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .cta-link {
    font-size: 0.9rem;
  }

  /* About CTA Responsive */
  .about-cta {
    margin-top: 2rem;
    padding: 2rem 1.5rem;
  }

  .cta-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
  }

  /* Specialties Responsive */
  .specialties {
    padding: 3rem 0;
  }

  .specialties .section-header h2 {
    font-size: 2rem;
  }

  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
  }

  .specialty-card {
    padding: 2rem;
  }

  .specialty-icon {
    width: 75px;
    height: 75px;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .specialty-card h3 {
    font-size: 1.3rem;
  }

  .specialty-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .specialties-cta {
    padding: 2rem;
    margin: 0 1rem;
  }

  .specialties-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .specialties-cta .cta-button {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
  }

  .service-card {
    padding: 2rem;
    min-height: auto;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .services .section-header h2 {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-logo {
    height: 65px;
    max-width: 280px;
  }

  .footer-social {
    justify-content: center;
  }

  .whatsapp-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-link i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .brand-logo {
    height: 45px;
    max-width: 180px;
  }

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

  .profile-image {
    width: 280px;
    height: 280px;
  }

  .element-1 {
    width: 60px;
    height: 60px;
  }

  .element-2 {
    width: 45px;
    height: 45px;
  }

  .element-3 {
    width: 30px;
    height: 30px;
  }

  /* About CTA Clean Mobile */
  .about-cta-clean {
    margin: 1rem 0;
    padding: 0.8rem 0;
  }

  .about-cta-clean p {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }

  .cta-link {
    font-size: 0.85rem;
  }

  /* About CTA Mobile */
  .about-cta {
    margin-top: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .cta-text {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    gap: 0.6rem;
  }

  /* Specialties Mobile */
  .specialties {
    padding: 2.5rem 0;
  }

  .specialties .section-header {
    margin-bottom: 2.5rem;
  }

  .specialties .section-header h2 {
    font-size: 1.8rem;
  }

  .specialties .section-header p {
    font-size: 1rem;
  }

  .specialties-grid {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .specialty-card {
    padding: 1.5rem;
  }

  .specialty-icon {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .specialty-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .specialty-card p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .feature-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }

  .specialties-cta {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .specialties-cta p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .specialties-cta .cta-button {
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
    gap: 0.6rem;
  }

  .footer-logo {
    height: 70px;
    max-width: 300px;
  }

  .footer-social a {
    font-size: 1.3rem;
  }

  .phone-contact {
    gap: 0.3rem;
  }

  .whatsapp-link {
    width: 35px;
    height: 35px;
  }

  .whatsapp-link i {
    font-size: 1rem;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --text-light: #000000;
    --accent-color: #666666;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Ajustes para logos com fundo transparente */
@media (prefers-color-scheme: dark) {
  .footer-logo {
    filter: brightness(0) invert(1);
  }
}

/* Otimizações para performance */
.brand-logo,
.footer-logo {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Print styles */
@media print {
  .header,
  .nav-toggle,
  .cta-button,
  .contact-form,
  .footer-social {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(147, 27, 62, 0.02) 0%,
    rgba(221, 195, 201, 0.05) 100%
  );
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials .section-header h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.testimonials .section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-container {
  position: relative;
  height: 400px;
  overflow: visible;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 15px 40px rgba(147, 27, 62, 0.1);
  border: 1px solid rgba(147, 27, 62, 0.05);
  margin-top: 30px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.testimonial-card.prev {
  transform: translateX(-100%);
  z-index: 0;
}

.testimonial-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -25px;
  left: 30px;
  background: var(--gradient);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(147, 27, 62, 0.3);
  z-index: 10;
}

.testimonial-content blockquote {
  margin: 2rem 0;
  flex-grow: 1;
}

.testimonial-content blockquote p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin: 0;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
  flex-shrink: 0;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.5rem;
}

.rating {
  display: flex;
  gap: 0.2rem;
}

.rating i {
  color: var(--gold-color);
  font-size: 0.9rem;
}

/* Navigation Controls */
.testimonials-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.nav-btn {
  background: var(--white);
  border: 2px solid var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.nav-btn:hover,
.nav-btn:focus {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.testimonials-dots {
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(147, 27, 62, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.dot:hover,
.dot:focus {
  background: var(--secondary-color);
  transform: scale(1.1);
}

/* Call to Action */
.testimonials-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: var(--light-bg);
  border-radius: 20px;
  border: 2px solid rgba(147, 27, 62, 0.1);
}

.testimonials-cta p {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
  .testimonials {
    padding: 3rem 0;
  }

  .testimonials .section-header h2 {
    font-size: 2rem;
  }

  .testimonials-container {
    height: auto;
    min-height: 350px;
  }

  .testimonial-content {
    padding: 2rem;
    margin: 0 1rem;
  }

  .testimonial-content blockquote p {
    font-size: 1rem;
  }

  .testimonials-navigation {
    gap: 1rem;
    margin-top: 2rem;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .testimonials-cta {
    padding: 2rem;
    margin-top: 3rem;
  }

  .testimonials-cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-content {
    padding: 1.5rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .author-image {
    width: 50px;
    height: 50px;
  }

  .testimonials-navigation {
    flex-direction: column;
    gap: 1.5rem;
  }

  .testimonials-dots {
    order: -1;
  }
}
