/* Reset e variáveis CSS */
:root {
  --primary-green: #22c55e;
  --primary-blue: #3b82f6;
  --primary-yellow: #eab308;
  --gradient-primary: linear-gradient(135deg, #22c55e, #3b82f6, #eab308);
  --gradient-header: linear-gradient(90deg, #22c55e 0%, #3b82f6 50%, #eab308 100%);
  --gradient-hero: linear-gradient(135deg, #1e40af 0%, #059669 50%, #d97706 100%);
  --dark-bg: #0f172a;
  --light-bg: #ffffff;
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --shadow: 0 10px 25px rgba(0,0,0,0.1);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Scrollbar customizada */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, var(--primary-green), var(--primary-blue));
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-yellow), var(--primary-green));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-blue), var(--primary-yellow));
}

/* Header */
header {
  background: var(--gradient-header);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.logo::before {
  content: "🚰";
  animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  line-height: 1.1;
}

.hero p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  border: 2px solid rgba(255,255,255,0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.cta-button::before {
  content: "💬 ";
}

/* Phone Float Button */
.phone-float {
  position: fixed;
  bottom: 6.3125rem;
  right: 2rem;
  z-index: 1000;
  animation: bounce 2s infinite;
}

.phone-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #dc2626;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.2);
}

.phone-button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(251, 191, 36, 0.5);
}

.phone-button::before {
  content: "📞";
  font-size: 1.2rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  animation: bounce 2s infinite;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.2);
}

.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-button::before {
  content: "📱";
  font-size: 1.2rem;
}

/* SEO Content Section */
.seo-content {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.seo-section {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.seo-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.seo-section h2 {
  color: var(--text-dark);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.seo-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.seo-section p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.7;
}

.seo-cta {
  text-align: center;
  margin: 2rem 0;
}

.seo-cta .cta-button {
  margin: 0 auto;
}

/* Business Map Section */
.business-map {
  padding: 4rem 2rem;
  background: var(--dark-bg);
  text-align: center;
}

.business-map h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.business-map iframe {
  max-width: 100%;
  height: 450px;
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Sitemap Styles */
.sitemap-container {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-container h1 {
  text-align: center;
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.sitemap-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.sitemap-section {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.sitemap-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sitemap-section h2 {
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid var(--gradient-primary);
  padding-bottom: 0.5rem;
}

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

.sitemap-links li {
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sitemap-links li:last-child {
  border-bottom: none;
}

.sitemap-links a {
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  padding: 0.5rem;
  border-radius: 6px;
  transition: var(--transition);
  font-size: 0.95rem;
}

.sitemap-links a:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
  color: var(--primary-green);
  transform: translateX(5px);
}

.sitemap-stats {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.sitemap-stats p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

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

/* Footer */
footer {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 3rem 2rem 1rem;
  border-top: 4px solid var(--primary-green);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: var(--primary-green);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p,
.footer-section ul li {
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.8);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li::before {
  content: "✓ ";
  color: var(--primary-yellow);
  font-weight: bold;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-yellow);
  text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .seo-section {
    padding: 2rem 1.5rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .phone-float {
    bottom: 1rem;
    left: 1rem;
  }

  .phone-button {
    padding: 0.8rem 0.6rem;
    font-size: 0.9rem;
    max-width: 50%;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-button {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Animações */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

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

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

/* Micro animações */
.seo-section:nth-child(odd) {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}

.seo-section:nth-child(even) {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

/* Hover effects */
.cta-button:hover::before {
  animation: pulse 1s infinite;
}

.logo:hover::before {
  animation: bounce 1s infinite;
}
