/* ============================================
   REDE MAIOR TECNOLOGIA - ESTILOS PRINCIPAIS
   Design Minimalista Corporativo
   ============================================ */

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #374151;
  line-height: 1.6;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1e3a8a;
}

h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #f97316;
}

/* ============================================
   HEADER & NAVEGAÇÃO
   ============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.logo img {
  height: 48px;
  width: 48px;
}

.logo-text h1 {
  font-size: 1.125rem;
  margin: 0;
}

.logo-text p {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: #374151;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #1e3a8a;
}

.btn-contact {
  background-color: #1e3a8a;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #0f2847;
  color: #ffffff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1e3a8a;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  margin-top: 80px;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f2847 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-content p {
  font-size: 1.25rem;
  color: #dbeafe;
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.btn-primary {
  background-color: #f97316;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #ea580c;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border: 2px solid #ffffff;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #1e3a8a;
}

.hero-image {
  display: none;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    display: block;
  }
  
  .hero-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  padding: 5rem 2rem;
  background-color: #f3f4f6;
}

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

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

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

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
}

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

.service-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
  background-color: #1e3a8a;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 1rem;
}

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

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.service-list li::before {
  content: '✓';
  color: #f97316;
  font-weight: bold;
}

/* ============================================
   DELIVERY SECTION
   ============================================ */

.delivery {
  padding: 5rem 2rem;
  background-color: #ffffff;
}

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

.delivery-content h2 {
  margin-bottom: 1.5rem;
}

.delivery-content p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.delivery-features {
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  background-color: #f97316;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature h4 {
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.25rem;
}

.feature p {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}

.delivery-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .delivery-container {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  padding: 5rem 2rem;
  background-color: #f3f4f6;
}

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

.about-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #f97316;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #6b7280;
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  padding: 5rem 2rem;
  background-color: #1e3a8a;
  color: #ffffff;
  text-align: center;
}

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

.contact h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact p {
  font-size: 1.25rem;
  color: #dbeafe;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

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

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
}

.btn-email {
  background-color: #f97316;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-email:hover {
  background-color: #ea580c;
}

.btn-phone {
  background-color: transparent;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border: 2px solid #ffffff;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-phone:hover {
  background-color: #ffffff;
  color: #1e3a8a;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #1e3a8a;
  color: #ffffff;
  padding: 3rem 2rem;
}

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

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

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-section p {
  color: #dbeafe;
  margin-bottom: 0.5rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #dbeafe;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f97316;
}

.footer-bottom {
  border-top: 1px solid #3b82f6;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #dbeafe;
  margin: 0;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #128C7E;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #25d366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 40;
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }

  nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    margin-top: 70px;
    padding: 3rem 1rem;
  }

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

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

  .services,
  .delivery,
  .about,
  .contact {
    padding: 3rem 1rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .btn-whatsapp,
  .btn-email,
  .btn-phone {
    width: 100%;
    justify-content: center;
  }

  h2 {
    font-size: 1.5rem;
  }

  .whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* ============================================
   SCROLLBAR CUSTOMIZADO
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #1e3a8a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0f2847;
}
