/* ===== VARIÁVEIS CSS - PALETA DE CORES ===== */
:root {
  /* Cores Principais */
  --primary-color: #0098a1;      /* Cor Principal - Azul Verde */
  --secondary-color: #5a00a1;    /* Cor Secundária - Roxo */
  --neutral-color: #F5F5F5;      /* Cinza Claro */
  
  /* Cores de Texto */
  --text-dark: #000000;          /* Preto */
  --text-light: #FFFFFF;         /* Branco */
  --text-gray: #666666;          /* Cinza Médio */
  
  /* Cores de Fundo */
  --bg-white: #E8E8E8;           /* Granizo */
  --bg-light: #D4D4D4;           /* Granizo Claro */
  
  /* Cores de Status */
  --success-color: #28A745;      /* Verde Sucesso */
  --warning-color: #FFC107;      /* Amarelo Aviso */
  --error-color: #DC3545;        /* Vermelho Erro */
  
  /* Sombras */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
  
  /* Transições */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --radius-round: 50%;
}

/* ===== TEMA DARK ===== */
[data-theme="dark"] {
  /* Cores de Texto */
  --text-dark: #FFFFFF;          /* Branco */
  --text-light: #FFFFFF;         /* Branco */
  --text-gray: #CCCCCC;          /* Cinza Claro */
  
  /* Cores de Fundo */
  --bg-white: #1a1a1a;           /* Preto */
  --bg-light: #2d2d2d;           /* Cinza Escuro */
  --neutral-color: #2d2d2d;      /* Cinza Escuro */
  
  /* Sombras */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* ===== CORREÇÕES ESPECÍFICAS PARA TEMA DARK ===== */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: #FFFFFF !important;
}

[data-theme="dark"] p {
  color: #CCCCCC !important;
}

[data-theme="dark"] span {
  color: inherit;
}

[data-theme="dark"] .section-title h2 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .section-title p {
  color: #CCCCCC !important;
}

[data-theme="dark"] .about-text h3 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .about-text p {
  color: #CCCCCC !important;
}

[data-theme="dark"] .service-card h3 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .service-card p {
  color: #CCCCCC !important;
}

[data-theme="dark"] .service-card {
  background-color: #2d2d2d !important;
  color: #FFFFFF !important;
}

[data-theme="dark"] .guarantee-grid .service-card {
  background-color: #2d2d2d !important;
  color: #FFFFFF !important;
  border-color: #444 !important;
}

[data-theme="dark"] .guarantee-grid .service-card h3 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .guarantee-grid .service-card p {
  color: #CCCCCC !important;
}

[data-theme="dark"] .section {
  background-color: #1a1a1a !important;
}

[data-theme="dark"] .testimonials {
  background-color: #1a1a1a !important;
}

[data-theme="dark"] .container {
  background-color: transparent !important;
}

[data-theme="dark"] .testimonial-text {
  color: #FFFFFF !important;
}

[data-theme="dark"] .testimonial-author {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .testimonial-card {
  background-color: #2d2d2d !important;
  color: #FFFFFF !important;
}

[data-theme="dark"] .testimonials-header h3 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .testimonials-header p {
  color: #CCCCCC !important;
}

[data-theme="dark"] .rating-badge {
  background-color: #ffcc00 !important;
  color: #000000 !important;
}

[data-theme="dark"] .btn-google-reviews {
  background-color: #4285F4 !important;
  color: #FFFFFF !important;
}

[data-theme="dark"] .btn-google-reviews:hover {
  background-color: #357ae8 !important;
}



[data-theme="dark"] .contact-info h3 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .contact-info h4 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .contact-info p {
  color: #CCCCCC !important;
}

[data-theme="dark"] .form-group label {
  color: #FFFFFF !important;
}

[data-theme="dark"] .form-intro p {
  color: #FFFFFF !important;
}

[data-theme="dark"] .stats .stat-item span {
  color: #FFFFFF !important;
}

[data-theme="dark"] .about-stats .stat-item span {
  color: #FFFFFF !important;
}

[data-theme="dark"] .footer-bottom p {
  color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .footer-section a {
  color: #CCCCCC !important;
}

[data-theme="dark"] .footer-section a:hover {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .map-placeholder h3 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .map-placeholder p {
  color: #CCCCCC !important;
}

[data-theme="dark"] .contact-email a {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .contact-email a:hover {
  color: var(--secondary-color) !important;
}

[data-theme="dark"] .cta-content h3 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .cta-content p {
  color: rgba(255, 255, 255, 0.95) !important;
}

[data-theme="dark"] .cta-final-content h2 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .cta-final-content p {
  color: rgba(255, 255, 255, 0.95) !important;
}

[data-theme="dark"] .cta-buttons .btn-primary {
  background: white !important;
  color: var(--primary-color) !important;
  border: 2px solid white !important;
}

[data-theme="dark"] .cta-buttons .btn-primary:hover {
  background: transparent !important;
  color: white !important;
}

[data-theme="dark"] .cta-buttons .btn-secondary {
  background: transparent !important;
  color: white !important;
  border: 2px solid white !important;
}

[data-theme="dark"] .cta-buttons .btn-secondary:hover {
  background: white !important;
  color: var(--primary-color) !important;
}

[data-theme="dark"] .cta-final-buttons .btn-primary {
  background: white !important;
  color: var(--primary-color) !important;
  border: 2px solid white !important;
}

[data-theme="dark"] .cta-final-buttons .btn-primary:hover {
  background: transparent !important;
  color: white !important;
}

[data-theme="dark"] .cta-final-buttons .btn-secondary {
  background: transparent !important;
  color: white !important;
  border: 2px solid white !important;
}

[data-theme="dark"] .cta-final-buttons .btn-secondary:hover {
  background: white !important;
  color: var(--primary-color) !important;
}

[data-theme="dark"] .hero-subtitle {
  color: #FFFFFF !important;
}

[data-theme="dark"] .hero h1 {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .hero p {
  color: #CCCCCC !important;
}

[data-theme="dark"] .nav-link {
  color: #FFFFFF !important;
}

[data-theme="dark"] .nav-link:hover {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .logo-text {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .cta-button {
  color: #FFFFFF !important;
}

[data-theme="dark"] .cta-button:hover {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .btn-primary {
  color: #FFFFFF !important;
}

[data-theme="dark"] .btn-secondary {
  color: #FFFFFF !important;
}

[data-theme="dark"] .btn-secondary:hover {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .contact-form h3 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .contact-email {
  color: #CCCCCC !important;
}

[data-theme="dark"] .contact-email a {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .contact-item h4 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .contact-item p {
  color: #CCCCCC !important;
}

[data-theme="dark"] .stat-number {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .stat-label {
  color: #CCCCCC !important;
}

[data-theme="dark"] .counter {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .testimonial-stars {
  color: #FFD700 !important;
}

[data-theme="dark"] .slider-btn {
  color: #FFFFFF !important;
  background: var(--primary-color) !important;
}

[data-theme="dark"] .slider-btn:hover {
  background: var(--secondary-color) !important;
}

[data-theme="dark"] .mobile-menu-btn span {
  background: #FFFFFF !important;
}

[data-theme="dark"] .mobile-menu-btn.active span {
  background: var(--primary-color) !important;
}

[data-theme="dark"] header {
  background-color: #1a1a1a !important;
  border-bottom: 1px solid #333 !important;
}

[data-theme="dark"] .navbar {
  background-color: #1a1a1a !important;
}

[data-theme="dark"] .hero {
  background-color: #1a1a1a !important;
}

[data-theme="dark"] .cta-section {
  background-color: #2d2d2d !important;
}

[data-theme="dark"] .about {
  background-color: #2d2d2d !important;
}

[data-theme="dark"] .contact {
  background-color: #1a1a1a !important;
}

[data-theme="dark"] .footer {
  background-color: #1a1a1a !important;
  border-top: 1px solid #333 !important;
}

/* ===== IMAGENS SOBREPOSTAS SOBRE ===== */
.about-images-overlay {
    position: relative;
    margin: 0;
    height: 300px;
    max-width: 100%;
}

.about-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-image {
    position: absolute;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
}

.about-image.main-image {
    width: 100%;
    height: 300px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-large);
    z-index: 3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem 1rem 1rem;
    color: white;
}

.about-image .overlay-content {
    text-align: center;
}

.about-image .overlay-content i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.about-image .overlay-content span {
    font-size: 1rem;
    font-weight: 600;
}

.ceo-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-small);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Responsivo das imagens sobrepostas */
@media (max-width: 768px) {
    .about-images-overlay {
        height: 250px;
        margin: 0;
    }
    
    .about-image.main-image {
        width: 100%;
        height: 250px;
        top: 0;
    }
    
    .about-image .image-overlay {
        padding: 0.8rem 0.6rem 0.6rem;
    }
    
    .about-image .overlay-content i {
        font-size: 1rem;
    }
    
    .about-image .overlay-content span {
        font-size: 0.8rem;
    }
    
    .ceo-badge {
        top: 0.3rem;
        right: 0.3rem;
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
    }
}

/* ===== GRID GARANTIA ===== */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.guarantee-grid .service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.guarantee-grid .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.guarantee-grid .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.guarantee-grid .service-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.guarantee-grid .service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsivo do grid de garantia */
@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guarantee-grid .service-card {
        padding: 1.5rem;
    }
    
    .guarantee-grid .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}
    
    .guarantee-carousel .carousel-container {
        height: 200px;
    }
    
    .guarantee-carousel .carousel-controls {
        padding: 0 0.5rem;
    }
    
    .guarantee-carousel .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .guarantee-carousel .indicator {
        width: 8px;
        height: 8px;
    }
}



/* ===== GRID DE DEPOIMENTOS SIMPLES ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 1rem;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}



.testimonial-stars {
    font-size: 12px;
    color: #FFD700;
    margin-bottom: 8px;
    display: flex;
    gap: 1px;
}






/* Responsivo do grid de depoimentos */
@media (max-width: 768px) {
    .testimonials-grid {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        min-height: 180px;
        max-height: none;
    }
    
    .testimonial-text {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .testimonial-stars {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .testimonial-author {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .testimonials-info {
        padding: 1.5rem;
    }
    
    .testimonials-header h3 {
        font-size: 1.5rem;
    }
    
    .testimonials-header .btn-google-reviews {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    

    
}

@media (max-width: 480px) {
    .testimonials-info {
        padding: 1rem;
    }
    
    .testimonials-header h3 {
        font-size: 1.3rem;
    }
    
    .testimonials-header .btn-google-reviews {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
        min-height: 160px;
    }
    
    .testimonial-text {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .testimonial-response {
        font-size: 11px;
        padding: 6px;
    }
    
    .testimonial-stars {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .testimonial-author {
        font-size: 12px;
        margin-bottom: 8px;
    }
}

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

/* ===== LOADING PROGRESS BAR ===== */
.loading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 152, 161, 0.2);
  z-index: 10000;
  overflow: hidden;
}

.loading-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  width: 0%;
  transition: width 0.3s ease;
  animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
  0% { width: 0%; }
  20% { width: 20%; }
  40% { width: 40%; }
  60% { width: 70%; }
  80% { width: 90%; }
  100% { width: 100%; }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Transições suaves para mudança de tema */
* {
  transition: background-color var(--transition-normal), 
              color var(--transition-normal), 
              border-color var(--transition-normal),
              box-shadow var(--transition-normal);
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--primary-color);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--primary-color);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

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

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-light);
  z-index: 1000;
  transition: var(--transition-medium);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition-fast);
}

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

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

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

.cta-button {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-medium);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-button:hover {
  background: #005a4a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
  padding: 120px 0 80px;
  text-align: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  text-align: left;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: var(--radius-medium);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  background: #4a0085;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  padding: 1rem 2rem;
  border-radius: var(--radius-medium);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--text-light);
  color: var(--primary-color);
}

/* ===== SERVIÇOS ===== */
.services {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: var(--transition-medium);
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--text-light);
  font-size: 2rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

/* ===== Estilos Gerais ===== */
.section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Arial', sans-serif;
}

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

/* ===== Título da Seção ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 1rem;
    color: #666;
}

/* ===== Informações Gerais ===== */
.testimonials-info {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h3 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 5px;
}

.testimonials-header p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background-color: #ffcc00;
    color: #fff;
    padding: 5px 10px;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 15px;
}

.rating-badge i {
    margin-right: 5px;
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    background-color: #4285F4;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-google-reviews i {
    margin-right: 10px;
}

.btn-google-reviews:hover {
    background-color: #357ae8;
}

/* ===== Grid de Depoimentos ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== Cartão de Depoimento ===== */
.testimonial-card {
    background-color: #ffffffbb;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
    height: auto;
    min-height: fit-content;
    max-height: none;
    overflow: visible;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}



.testimonial-stars i {
    color: #ffcc00;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1rem;
    color: #444;
    margin: 15px 0;
    line-height: 1.6;
    overflow: visible;
    position: relative;
    transition: all 0.3s ease;
}









.testimonial-author {
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}



/* ===== Responsividade ===== */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .testimonials-header h3 {
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-dark);
  flex-grow: 1;
  overflow: visible;
  max-height: none;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}



/* ===== SOBRE ===== */
.about {
  background: var(--bg-light);
}

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

.about-text h3 {
  margin-bottom: 1.5rem;
}

/* ===== CARROSSEL SOBRE ===== */
.about-carousel {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  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);
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.carousel-slide.prev {
  transform: translateX(-100%);
}

/* ===== CONTROLES DO CARROSSEL ===== */
.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: var(--radius-round);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  color: var(--primary-color);
  font-size: 1.2rem;
}

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

.carousel-btn:active {
  transform: scale(0.95);
}

/* ===== INDICADORES ===== */
.carousel-indicators {
  display: flex;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-normal);
}

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

.indicator:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

/* ===== IMAGENS SOBRE ===== */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}

.about-image {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
  transition: all var(--transition-normal);
  width: 100%;
  height: 100%;
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all var(--transition-normal);
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ===== OVERLAY DAS IMAGENS ===== */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 152, 161, 0.8), rgba(90, 0, 161, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-normal);
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.about-image:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.overlay-content span {
  font-weight: 600;
  font-size: 1rem;
}

/* ===== BADGE DO CEO ===== */
.ceo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-medium);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-medium);
  z-index: 2;
  animation: pulse 2s infinite;
}

.ceo-badge i {
  font-size: 1rem;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ===== IMAGEM PRINCIPAL ===== */
.main-image {
  grid-column: 1 / -1;
}

.main-image img {
  height: 350px;
}

/* ===== IMAGEM CEO ===== */
.ceo-image {
  position: relative;
}

.ceo-image img {
  height: 250px;
}

/* ===== SEÇÕES CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  margin: 60px 0;
  padding: 50px 0;
  border-radius: 15px;
  text-align: center;
  color: white;
}

.cta-content h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
  font-weight: 600;
  text-shadow: none;
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  text-shadow: none;
}

/* CTA Final da Página */
.cta-final {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-final-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cta-final-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 600;
}

.cta-final-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-final-buttons .btn-primary {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
  font-weight: 700;
  text-shadow: none;
  letter-spacing: 0.5px;
}

.cta-final-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.cta-final-buttons .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
}

.cta-final-buttons .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
  text-shadow: none;
}

/* ===== CONTATO ===== */
.contact {
  background: var(--bg-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 2rem;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.contact-ceo-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ceo-image-container {
  position: relative;
  width: 280px;
  height: 350px;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-normal);
}

.ceo-image-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.ceo-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ceo-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1.5rem 1rem 1rem;
  color: white;
}

.ceo-overlay-content {
  text-align: center;
}

.ceo-overlay-content i {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
}

.ceo-overlay-content span {
  font-size: 1rem;
  font-weight: 600;
}

.contact-form {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-large);
}

.form-intro {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-medium);
  margin-bottom: 2rem;
  text-align: center;
}

.form-intro p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.3px;
}

.form-intro i {
  margin-right: 0.5rem;
  color: #FFD700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-medium);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

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

.footer-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-section h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  white-space: nowrap;
}

.footer-section a:hover {
  color: var(--text-light);
}

.footer-separator {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

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

/* ===== TOGGLE DE TEMA ===== */
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--bg-white);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-round);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-medium);
}

.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-heavy);
}

.theme-toggle i {
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: all var(--transition-normal);
}

.theme-toggle:hover i {
  transform: rotate(180deg);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  /* CTA Sections */
  .cta-section {
    margin: 40px 0;
    padding: 40px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-final {
    padding: 60px 20px;
  }
  
  .cta-final-content h2 {
    font-size: 2rem;
  }
  
  .cta-final-content p {
    font-size: 1.1rem;
  }
  
  .cta-final-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  /* Toggle de Tema Mobile */
  .theme-toggle {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
  
  .theme-toggle i {
    font-size: 1rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-medium);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 1rem 0;
  }
  
  .nav-menu .nav-link {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    display: block;
    width: 100%;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-ceo-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .ceo-image-container {
    width: 250px;
    height: 300px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .hero {
    padding: 80px 0 50px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .hero {
    padding: 70px 0 40px;
  }
  
  .hero-content {
    gap: 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
  
  .section {
    padding: 30px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .service-card,
  .testimonial-card {
    padding: 1.2rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .logo-img {
    height: 32px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .about-content {
    gap: 2rem;
  }
  
  .about-carousel {
    height: 300px;
  }
  
  .carousel-controls {
    bottom: 15px;
    gap: 15px;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
  
  .about-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .main-image img {
    height: 250px;
  }
  
  .ceo-image img {
    height: 200px;
  }
  
  .ceo-badge {
    top: 10px;
    right: 10px;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 0.5rem;
  }
  
  .footer-section {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-separator {
    display: none;
  }
  
  .footer-section h3 {
    font-size: 1.1rem;
  }
  
  .footer-section p,
  .footer-section a {
    font-size: 0.9rem;
  }
  
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-float a {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float i {
    font-size: 1.3rem;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .contact-email {
    font-size: 1rem;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== LAZY LOADING ===== */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative;
}

img[loading="lazy"].loading {
  opacity: 0.5;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Placeholder para imagens carregando */
img[loading="lazy"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: inherit;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== EFEITOS DE CARREGAMENTO AVANÇADOS ===== */

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 152, 161, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

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

/* Loading Dots */
.loading-dots {
  display: inline-flex;
  gap: 4px;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  animation: dots 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes dots {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Loading Bar */
.loading-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 152, 161, 0.2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loading-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  animation: loading-bar 1.5s infinite;
}

@keyframes loading-bar {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Loading Pulse */
.loading-pulse {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
}

/* Loading Wave */
.loading-wave {
  display: flex;
  gap: 4px;
  align-items: center;
}

.loading-wave span {
  width: 4px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}

.loading-wave span:nth-child(1) { animation-delay: -0.4s; }
.loading-wave span:nth-child(2) { animation-delay: -0.2s; }
.loading-wave span:nth-child(3) { animation-delay: 0s; }
.loading-wave span:nth-child(4) { animation-delay: 0.2s; }
.loading-wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
  0%, 40%, 100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}

/* Loading Skeleton */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Loading Fade In */
.loading-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

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

/* Loading Stagger */
.loading-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  animation: staggerFadeIn 0.6s ease-out forwards;
}

.loading-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.loading-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.loading-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.loading-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.loading-stagger > *:nth-child(5) { animation-delay: 0.5s; }

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

/* ===== UTILITÁRIOS ===== */
.text-center {
  text-align: center;
}

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

.text-secondary {
  color: var(--secondary-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ===== MAPA E CONTATO ===== */
.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--primary-color);
    border-radius: var(--radius-large);
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.map-link {
    text-align: center;
    margin-top: 1rem;
}

.contact-email {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-email a:hover {
    text-decoration: underline;
}

.contact-note {
    background: rgba(0, 152, 161, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: 0.75rem;
    margin-top: 0.75rem;
    border-radius: var(--radius-small);
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

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

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

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

.whatsapp-float i {
    font-size: 1.5rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}
