/* ===== CSS VARIABLES ===== */
:root {
  --header-height: 4rem;
  
  /* Colors - Sistema de cores otimizado */
  --primary-color: #2563eb;
  --primary-color-alt: #1d4ed8;
  --primary-color-light: #3b82f6;
  --secondary-color: #f59e0b;
  --accent-color: #10b981;
  --success-color: #059669;
  --warning-color: #d97706;
  --error-color: #dc2626;
  
  /* Text Colors - Melhor contraste */
  --text-color: #111827;
  --text-color-light: #6b7280;
  --text-color-lighter: #9ca3af;
  --text-color-white: #ffffff;
  
  /* Background Colors */
  --body-color: #ffffff;
  --container-color: #f8fafc;
  --section-bg: #f1f5f9;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --border-color-light: #f1f5f9;
  
  /* Typography - Sistema tipográfico melhorado */
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --heading-font: 'Inter', sans-serif;
  
  /* Font Sizes - Escala tipográfica otimizada */
  --biggest-font-size: clamp(2.5rem, 5vw, 4rem);
  --h1-font-size: clamp(1.75rem, 4vw, 2.5rem);
  --h2-font-size: clamp(1.5rem, 3vw, 2rem);
  --h3-font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  --h4-font-size: clamp(1.125rem, 2vw, 1.25rem);
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  
  /* Font Weight */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;
  
  /* Spacing System - Sistema de espaçamento consistente */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;      /* 24px */
  --space-xl: 2rem;        /* 32px */
  --space-2xl: 3rem;       /* 48px */
  --space-3xl: 4rem;       /* 64px */
  --space-4xl: 6rem;       /* 96px */
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

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

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.grid {
  display: grid;
}

.section {
  padding: 5rem 0 2rem;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--text-color);
  text-align: center;
  margin-bottom: var(--mb-2);
}

.section__title-color {
  color: var(--primary-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-3);
  text-align: center;
  color: var(--text-color-light);
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: var(--primary-color);
  color: var(--text-color-white);
  padding: var(--space-lg) var(--space-2xl);
  border-radius: var(--radius-lg);
  font-weight: var(--font-semi-bold);
  font-size: var(--normal-font-size);
  line-height: 1.5;
  transition: var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.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: var(--transition-normal);
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  background-color: var(--primary-color-alt);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.button--outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.button--outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.button--primary {
  background-color: var(--primary-color);
  color: #fff;
}

/* Botão WhatsApp */
.button--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #20c55a 100%);
  color: var(--white-color);
  border: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.button--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #20c55a 0%, #1bb954 100%);
}

.button--whatsapp i {
  color: var(--white-color);
  font-size: 1.125rem;
}

/* ===== HEADER & NAV ===== */
.header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color-light);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  font-weight: var(--font-bold);
  color: var(--primary-color);
}

.nav__logo-img {
  height: 5rem;
  width: auto;
  max-width: 400px;
  min-width: 250px;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}

.nav__list {
  display: flex;
  column-gap: 2rem;
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover {
  color: var(--primary-color);
}

.nav__link.active-link {
  color: var(--primary-color);
}

.nav__link.active-link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.nav__toggle,
.nav__close {
  display: none;
}

/* ===== HOME ===== */
.home {
  padding: var(--space-4xl) 0 var(--space-2xl);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.home__container {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.home__title {
  font-size: var(--biggest-font-size);
  margin-bottom: var(--mb-1);
  line-height: 1.2;
  text-align: left;
}

.home__title-color {
  color: var(--primary-color);
}

.home__description {
  margin-bottom: var(--mb-2);
  color: var(--text-color-light);
  font-size: 1.125rem;
  line-height: 1.7;
}

.home__buttons {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  align-items: center;
}

.home__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home__info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.home__info-item i {
  color: var(--primary-color);
}

.home__info-item--mobile {
  display: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.home__info-item--mobile:hover {
  background-color: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.home__img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home__img-main {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.home__img-bg {
  display: none;
}

/* ===== ABOUT ===== */
.about__container {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 4rem;
}

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

.about__description:last-of-type {
  margin-bottom: 2rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.about__stat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: white;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
  border-color: var(--primary-color-light);
}

.about__stat-icon {
  font-size: 1.75rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.about__stat-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.about__stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: var(--text-color);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

.about__stat-title {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-color);
  font-weight: var(--font-semibold);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.about__stat-description {
  display: block;
  font-size: 0.75rem;
  color: var(--text-color-light);
  font-weight: var(--font-normal);
  line-height: 1.4;
}

.about__stat--time {
  color: var(--success-color);
}

.about__stat--time .about__stat-icon {
  color: var(--success-color);
  background: rgba(5, 150, 105, 0.1);
}

.about__stat--time .about__stat-number {
  color: var(--success-color);
}

.about__stat--rating .about__stat-icon {
  color: var(--secondary-color);
  background: rgba(245, 158, 11, 0.1);
}

.about__stat--rating .about__stat-number {
  color: var(--secondary-color);
}

.about__stat--exp .about__stat-icon {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.1);
}

.about__stat--exp .about__stat-number {
  color: var(--primary-color);
}

.about__stat--attend .about__stat-icon {
  color: #e91e63;
  background: rgba(233, 30, 99, 0.1);
}

.about__stat--attend .about__stat-number {
  color: #e91e63;
}

/* Call-to-action na seção About */
.about__cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.about__cta .button {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.about__cta .button--whatsapp {
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.about__cta .button--whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.about__cta .button--outline {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about__cta .button--outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.05);
}

.about__img-main {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===== ABOUT STATS & CTA ===== */
.about-stats-cta {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-stats-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-stats-cta__content .about__stats {
  margin-bottom: 1rem;
  width: 100%;
}

.about-stats-cta__content .about__cta {
  margin-top: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.about-stats-cta__content .about__cta .button {
  max-width: 350px;
}

.about__cta-note {
  text-align: center;
  color: var(--text-color-light);
  font-size: 0.9rem;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.about__cta-note i {
  color: var(--primary-color);
}

/* ===== SERVICES ===== */
.services__container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.services__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-2xl);
  background-color: var(--card-bg);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-color-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.services__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}


/* Header dos cards de serviços */
.services__card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.services__icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.services__icon i {
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}


.services__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services__title {
  font-size: var(--h3-font-size);
  margin: 0;
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
}

.services__description {
  color: var(--text-color-light);
  margin: 0;
  line-height: 1.6;
  font-size: var(--small-font-size);
}

.services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.services__list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  line-height: 1.4;
}

.services__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.services__list li {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 1rem;
}

.services__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: var(--font-bold);
}

/* ===== TESTIMONIALS ===== */
.testimonials__container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonials__card {
  background-color: var(--card-bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color-light);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonials__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--mb-1);
  color: var(--secondary-color);
}

.testimonials__text {
  color: var(--text-color-light);
  font-style: italic;
  margin-bottom: var(--mb-1);
  line-height: 1.6;
}

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


.testimonials__name {
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
  margin-bottom: 0.25rem;
}


.reviews-source-indicator {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
}

.reviews-google-link {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  text-decoration: none;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  background-color: transparent;
  border: 1px solid var(--border-color-light);
}

.reviews-google-link:hover {
  color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.05);
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

.reviews-google-link::after {
  content: '↗';
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Responsividade do link */

/* ===== CONTACT ===== */
.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}


.contact__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
  margin-bottom: var(--space-2xl);
}

.contact__map {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact__map-container {
  width: 100%;
  height: 100%;
}

.contact__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-2xl);
  background-color: var(--card-bg);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-color-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.contact__card--whatsapp {
  background: var(--card-bg);
  color: var(--text-color);
  border: 2px solid #25d366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

.contact__card--whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.25);
  border-color: #20c55a;
}

.contact__card--whatsapp:hover .contact__phone-label {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
}

.contact__card--primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.contact__card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.contact__card-header i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact__card--whatsapp .contact__card-header i {
  color: #25d366;
}

.contact__card-header .contact__card-title {
  margin: 0;
}

.contact__phone-item--primary {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact__card-data--large {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
}


.contact__card--clickable {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact__card--clickable:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact__card--clickable:hover .contact__phone-label {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
}


.contact__address-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact__address-content p {
  margin-bottom: 0.5rem;
}

.contact__address-content p:last-child {
  margin-bottom: 0;
}

.contact__schedule-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact__schedule-content p {
  margin-bottom: 0.5rem;
}

.contact__schedule-content p:last-child {
  margin-bottom: 0;
}

.contact__phone-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact__phone-content p {
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
    font-weight: var(--font-semi-bold);
    color: var(--text-color);
}

/* Estilos para o quadro do telefone com alinhamento igual ao WhatsApp */
.contact__card .contact__phone-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.contact__card .contact__phone-icon.phone {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__card .contact__phone-icon.phone i {
    color: var(--white-color);
    font-size: 1.25rem;
    display: block;
}

.contact__card .contact__phone-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact__card .contact__phone-label {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    font-weight: var(--font-medium);
}

/* Números em destaque */
.contact__card-data--whatsapp {
    color: #25d366;
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact__card-data--phone {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact__phone-content {
    text-align: center;
    padding: 1rem 0;
}

.contact__phone-label {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.contact__card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact__card-title {
  font-size: var(--h3-font-size);
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.contact__card-data {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.contact__phone-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  background-color: var(--body-color);
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact__phone-item:hover {
  background-color: var(--container-color);
  transform: translateX(5px);
}

.contact__phone-icon {
  font-size: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact__phone-icon.whatsapp {
  background-color: #25d366;
  color: #fff;
}


.phone-icon-img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
}

.contact__phone-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact__phone-label {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  font-weight: var(--font-medium);
}



/* ===== FOOTER (LEGACY - REMOVED) ===== */


/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: var(--z-tooltip);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-icon {
  width: 1.75rem;
  height: 1.75rem;
  filter: brightness(0) invert(1);
}

/* ===== BREAKPOINTS ===== */
/* Large Desktop */
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .home__title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
  }
  
  .section__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
  }
}

/* Desktop */
@media screen and (max-width: 1200px) {
  .container {
    margin-left: var(--space-lg);
    margin-right: var(--space-lg);
  }
  
  .home__container {
    gap: var(--space-2xl);
  }
}

/* Large Desktop - Cards ocupam toda largura */
@media screen and (min-width: 1200px) {
  .contact__info {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

/* For tablets */
@media screen and (max-width: 768px) {
  .contact__info {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--space-lg);
    max-width: 100%;
  }
}

/* For large devices */
@media screen and (max-width: 992px) {
  .container {
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
  }

  .home__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact__map {
    height: 300px;
  }
  
  .contact__map-container {
    width: 100%;
    height: 100%;
  }

  .services__container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .testimonials__container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* For medium devices */
@media screen and (max-width: 992px) {
  .about__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--body-color);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: var(--z-fixed);
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
  }

  .nav__toggle,
  .nav__close {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .home__title {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .home__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about__stat {
    padding: 1rem;
    gap: 0.875rem;
  }

  .about__stat-icon {
    font-size: 1.75rem;
    min-width: 2.5rem;
    height: 2.5rem;
  }

  .about__stat-number {
    font-size: 1.35rem;
  }

  .about__stat-text {
    font-size: 0.8125rem;
  }

  .about__cta {
    flex-direction: column;
    gap: 1rem;
  }

  .about__cta .button {
    width: 100%;
    max-width: 100%;
    font-size: 0.9375rem;
    padding: 0.875rem 1.5rem;
  }

  .about-stats-cta__content {
    gap: 1.5rem;
  }

  .about-stats-cta {
    padding: 2.5rem 0;
  }

  .about-stats-cta__content .about__cta-note {
    order: 2;
  }

  .about-stats-cta__content .about__cta {
    order: 3;
  }


  .home__info-item--mobile {
    display: flex;
    background-color: rgba(37, 211, 102, 0.1);
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(37, 211, 102, 0.2);
  }

  .home__info-item--mobile i {
    color: #25d366;
  }

  .home__info-item--mobile span {
    color: #25d366;
    font-weight: var(--font-medium);
  }
}

/* For small devices */
@media screen and (max-width: 576px) {
  .home__title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .services__container,
  .testimonials__container {
    grid-template-columns: 1fr;
  }


  .nav__logo-img {
    height: 4.5rem;
    max-width: 380px;
    min-width: 220px;
  }


  .contact__phone-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .reviews-google-link {
    font-size: var(--smaller-font-size);
    padding: 0.375rem 0.75rem;
  }
  
  .reviews-source-indicator {
    margin-top: 1.5rem;
    padding: 0.75rem;
  }

}

/* For extra small devices */
@media screen and (max-width: 350px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .home__title {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .button {
    padding: 0.75rem 1.5rem;
  }

  .nav__logo-img {
    height: 4rem;
    max-width: 350px;
    min-width: 200px;
  }


  .contact__phone-item {
    padding: 0.25rem;
    gap: 0.25rem;
  }

  .contact__phone-icon {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
  }


  .home__info-item--mobile {
    display: flex;
    background-color: rgba(37, 211, 102, 0.1);
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(37, 211, 102, 0.2);
  }

  .home__info-item--mobile i {
    color: #25d366;
  }

  .home__info-item--mobile span {
    color: #25d366;
    font-weight: var(--font-medium);
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== LOGO OPTIMIZATION ===== */
.nav__logo-img,
.footer__logo-img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
}

/* ===== FAQ ===== */
.faq {
  background: #f8f9fa;
  padding: 4rem 0;
}

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

.faq__container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.faq__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.faq__question:hover {
  background: #f8f9fa;
}

.faq__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  flex: 1;
}

.faq__icon {
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__text {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.faq__text p {
  margin: 0.5rem 0;
}

.faq__text p:first-child {
  margin-top: 0;
}

.faq__text p:last-child {
  margin-bottom: 0;
}

.faq__text ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.faq__text li {
  margin: 0.25rem 0;
}

/* Responsive FAQ */
@media screen and (max-width: 992px) {
  .faq__container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .faq__column {
    gap: 0.75rem;
  }
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 3rem 0;
  }
  
  .faq__header {
    margin-bottom: 2rem;
  }
  
  .faq__question {
    padding: 1.25rem;
  }
  
  .faq__title {
    font-size: 1rem;
  }
  
  .faq__text {
    padding: 0 1.25rem 1.25rem;
  }
}

@media screen and (max-width: 576px) {
  .faq {
    padding: 2rem 0;
  }
  
  .faq__question {
    padding: 1rem;
  }
  
  .faq__text {
    padding: 0 1rem 1rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #f8f9fa;
  color: #333;
  padding: 2rem 0 1rem;
  border-top: 1px solid #e9ecef;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
  align-items: start;
}

/* Brand Section */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}

.footer__logo {
  width: 150px;
  height: auto;
  object-fit: contain;
  margin-bottom: 0.3rem;
}

.footer__responsible {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer__responsible-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.footer__responsible-info {
  font-size: 0.75rem;
  line-height: 1.2;
  color: #666;
  margin: 0;
}

/* Footer Section */
.footer__section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__section-title {
  font-size: 0.95rem;
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

/* Contact Section */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.15rem 0;
  color: #555;
  font-size: 0.75rem;
}

.footer__contact-item i {
  color: var(--primary-color);
  font-size: 0.8rem;
  width: 12px;
  text-align: center;
  margin-top: 0.05rem;
  flex-shrink: 0;
}

.footer__contact-item a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer__contact-item a:hover {
  color: var(--primary-color);
}

.footer__contact-item span {
  line-height: 1.1;
}

/* Hours Section */
.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__hours-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-color-light);
}

.footer__hours-item i {
  font-size: 1rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

/* Quick Links Section */
.footer__quick-links {
  margin-top: 0.5rem;
}

.footer__links-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links-vertical a {
  color: var(--text-color-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer__links-vertical a:hover {
  color: var(--primary-color);
  padding-left: 0.25rem;
}

/* Social Section */
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.85rem;
}

.footer__social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateX(4px);
}

.footer__social-link img {
  width: 18px;
  height: 18px;
  transition: filter 0.2s ease;
  flex-shrink: 0;
}

.footer__social-link:hover img {
  filter: brightness(0) invert(1);
}

.footer__social-link span {
  font-weight: var(--font-medium);
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copyright {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

.footer__links {
  display: flex;
  gap: 1rem;
}

.footer__links a {
  color: #666;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.footer__legal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__privacy {
  color: #999;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer__privacy:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Responsive Footer */
@media screen and (max-width: 992px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer__section {
    align-items: center;
    text-align: center;
  }
  
  .footer__contact {
    align-items: center;
    text-align: center;
  }
  
  .footer__contact-item {
    justify-content: center;
  }
  
  .footer__hours {
    align-items: center;
    text-align: center;
  }
  
  .footer__hours-item {
    justify-content: center;
  }
  
  .footer__links-vertical {
    align-items: center;
  }
  
  .footer__social {
    align-items: center;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 1.5rem 0 0.75rem;
  }
  
  .footer__main {
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer__section {
    align-items: center;
    text-align: center;
  }
  
  .footer__contact {
    align-items: center;
    text-align: center;
  }
  
  .footer__contact-item {
    justify-content: center;
  }
  
  .footer__hours {
    align-items: center;
    text-align: center;
  }
  
  .footer__hours-item {
    justify-content: center;
  }
  
  .footer__links-vertical {
    align-items: center;
  }
  
  .footer__social {
    align-items: center;
  }
  
  .footer__legal {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .footer {
    padding: 1.25rem 0 0.75rem;
  }
  
  .footer__main {
    text-align: center;
    gap: 1.25rem;
  }
  
  .footer__section {
    align-items: center;
    text-align: center;
  }
  
  .footer__section-title {
    font-size: 0.8rem;
  }
  
  .footer__contact {
    align-items: center;
    text-align: center;
  }
  
  .footer__contact-item {
    justify-content: center;
  }
  
  .footer__hours {
    align-items: center;
    text-align: center;
  }
  
  .footer__hours-item {
    justify-content: center;
  }
  
  .footer__links-vertical {
    align-items: center;
  }
  
  .footer__social {
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer__social-link {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }
  
  .footer__social-link img {
    width: 16px;
    height: 16px;
  }
}

/* Logo hover effects */
.nav__logo-img:hover {
  transform: scale(1.05);
}

/* ===== TYPING ANIMATION ===== */
.typing-text {
  position: relative;
  display: inline-block;
  min-width: 250px; /* Increased for longer words like "Propósito" */
  text-align: left;
  transition: all 0.3s ease;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .typing-text {
    min-width: 200px; /* Increased for mobile to accommodate longer words */
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: var(--mb-1);
}

.mb-2 {
  margin-bottom: var(--mb-2);
}

.mb-3 {
  margin-bottom: var(--mb-3);
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--container-color);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding: 1rem;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner__text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.cookie-banner__text p {
  font-size: 0.875rem;
  color: var(--text-color);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__text a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner__text a:hover {
  color: var(--primary-color-dark);
}

.cookie-banner__buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
  justify-content: center;
}

.cookie-banner__button--accept {
  background: var(--primary-color);
  color: white;
}

.cookie-banner__button--accept:hover {
  background: var(--primary-color-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cookie-banner__button--decline {
  background: var(--container-color);
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.cookie-banner__button--decline:hover {
  background: var(--text-color-light);
  color: var(--title-color);
  transform: translateY(-1px);
}

.cookie-banner__button i {
  font-size: 1rem;
}

/* Responsive Cookie Banner */
@media screen and (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .cookie-banner__text {
    min-width: auto;
    text-align: center;
  }
  
  .cookie-banner__buttons {
    justify-content: center;
  }
  
  .cookie-banner__button {
    flex: 1;
    min-width: 120px;
  }
}

