/* ========================================
   OMA OFICINA MULTIMARCAS - CSS Global
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

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

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00b4d8;
}

.logo:hover {
  color: #0096c7;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links a {
  padding: 10px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #555;
}

.nav-links a:hover {
  border-color: #00b4d8;
  color: #00b4d8;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 30px;
  width: 150px;
  height: 150px;
  border: 4px solid rgba(0, 180, 216, 0.2);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 50px;
  right: 30px;
  width: 200px;
  height: 200px;
  border: 4px solid rgba(0, 180, 216, 0.2);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: #00b4d8;
}

.hero h1 .subtitle {
  display: block;
  font-size: 2.5rem;
  color: #fff;
  margin-top: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 15px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: #00b4d8;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
  background: #0096c7;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
}

.hero-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.hero-feature span {
  font-size: 1.5rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: 100px 20px;
  background: #fff;
}

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

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.section-title .underline {
  width: 80px;
  height: 4px;
  background: #00b4d8;
  margin: 0 auto;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #e0f7fa;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: #00b4d8;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
}

.service-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-card .btn-whatsapp {
  padding: 12px 25px;
  font-size: 0.9rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
  color: #94a3b8;
}

.contact-item a:hover {
  color: #00b4d8;
}

.location-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.location-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.location-card p {
  color: #94a3b8;
  margin-bottom: 25px;
}

.location-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  margin-top: 20px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 100px 20px;
  background: #f8fafc;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 25px;
}

.about h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00b4d8;
  margin: 40px 0 15px;
}

.about p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about ul {
  padding-left: 20px;
  margin: 20px 0;
}

.about ul li {
  color: #64748b;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.about ul li::before {
  content: '•';
  color: #00b4d8;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 5px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 80px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  color: #00b4d8;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col p {
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a:hover {
  color: #00b4d8;
}

.footer-col .contact-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #1e293b;
  color: #64748b;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20bd5a;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 5px 40px rgba(37, 211, 102, 0.6);
  }
}

/* ========================================
   SITEMAP PAGE
   ======================================== */
.sitemap-page {
  padding: 120px 20px 80px;
  min-height: 100vh;
}

.sitemap-page h1 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 40px;
  text-align: center;
}

.sitemap-section {
  margin-bottom: 40px;
  padding: 30px;
  background: #f8fafc;
  border-radius: 15px;
}

.sitemap-section h2 {
  font-size: 1.3rem;
  color: #00b4d8;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sitemap-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}

.sitemap-links a {
  padding: 12px 20px;
  background: #fff;
  border-radius: 8px;
  color: #475569;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.sitemap-links a:hover {
  background: #00b4d8;
  color: #fff;
  border-color: #00b4d8;
  transform: translateX(5px);
}

/* ========================================
   BAIRRO/SERVICE PAGE
   ======================================== */
.page-hero {
  padding: 150px 20px 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  color: #00b4d8;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 30px;
}

.page-content {
  padding: 80px 20px;
}

.page-content .container {
  max-width: 900px;
}

.page-content h2 {
  font-size: 1.8rem;
  color: #00b4d8;
  margin: 40px 0 20px;
}

.page-content h3 {
  font-size: 1.4rem;
  color: #1e293b;
  margin: 30px 0 15px;
}

.page-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-content ul {
  padding-left: 20px;
  margin: 20px 0;
}

.page-content ul li {
  color: #64748b;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.page-content ul li::before {
  content: '•';
  color: #00b4d8;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 5px;
}

.cta-box {
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin: 50px 0;
}

.cta-box h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.cta-box .btn-whatsapp {
  background: #fff;
  color: #00b4d8;
}

.cta-box .btn-whatsapp:hover {
  background: #f0f0f0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h1 .subtitle {
    font-size: 1.8rem;
  }
  
  .hero-features {
    gap: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .sitemap-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h1 .subtitle {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .whatsapp-float span {
    display: none;
  }
  
  .whatsapp-float {
    padding: 15px;
    border-radius: 50%;
  }
}
