/* ========================================
   TECHZ - Ambientes Inteligentes
   Manual da Marca: Verde Lime + Cinza + Preto
   Tipografia: Montserrat (sem serifa)
   ======================================== */

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333333;
  background-color: #f8f8f8;
  line-height: 1.6;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

p {
  font-size: 1rem;
  color: #666666;
}

/* ========== COLORS ========== */
.text-accent-green {
  color: #7FBB00;
}

.bg-accent-green {
  background-color: #7FBB00;
}

.border-l-accent-green {
  border-left: 4px solid #7FBB00;
}

.text-dark {
  color: #333333;
}

.text-gray {
  color: #666666;
}

/* ========== CONTAINER ========== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ========== HEADER ========== */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #333333;
}

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

.logo-image img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.logo-box {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #7FBB00;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.25rem;
}

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

.logo-text p {
  font-size: 0.75rem;
  color: #999999;
  margin: 0;
  font-weight: 500;
}

/* Desktop Navigation */
nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  nav {
    display: flex;
  }
}

nav a {
  color: #666666;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #7FBB00;
}

.cta-button {
  background-color: #7FBB00;
  color: #ffffff;
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
  background-color: #6ba800;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(127, 187, 0, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #333333;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #e0e0e0;
  margin-top: 1rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: #666666;
  text-decoration: none;
  font-weight: 600;
}

.mobile-nav .cta-button {
  width: 100%;
  text-align: center;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #ffffff, #f5f5f5);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to bottom right, rgba(127, 187, 0, 0.08), transparent);
  border-radius: 50%;
  filter: blur(3rem);
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333333;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }
}

.hero-text .accent {
  color: #7FBB00;
}

.hero-text p {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

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

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  background-color: #7FBB00;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
  background-color: #6ba800;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(127, 187, 0, 0.3);
}

.btn-secondary {
  border: 2px solid #cccccc;
  color: #333333;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 700;
  text-decoration: none;
  background: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.btn-secondary:hover {
  border-color: #7FBB00;
  color: #7FBB00;
}

.hero-image {
  position: relative;
  height: 24rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounce 2s infinite;
}

.scroll-indicator p {
  font-size: 0.875rem;
  color: #999999;
  margin-bottom: 0.5rem;
}

.scroll-indicator svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #7FBB00;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(0.5rem);
  }
}

/* ========== SOLUTIONS SECTION ========== */
.solutions {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #f5f5f5, #efefef);
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333333;
}

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

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

@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  border-left: 4px solid #7FBB00;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.solution-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: scale(1.02) translateY(-0.5rem);
}

.solution-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #f0f0f0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: #7FBB00;
}

.solution-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #333333;
}

.solution-card p {
  color: #666666;
  margin-bottom: 1.5rem;
}

.solution-card a {
  color: #7FBB00;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}

.solution-card a:hover {
  text-decoration: underline;
}

/* ========== SHOWCASE SECTION ========== */
.showcase {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #efefef, #f5f5f5);
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .showcase-item {
    grid-template-columns: 1fr 1fr;
  }
}

.showcase-item.reverse {
  direction: rtl;
}

.showcase-item.reverse > * {
  direction: ltr;
}

.showcase-image {
  position: relative;
  height: 24rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
}

.showcase-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333333;
}

.showcase-content .label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: #7FBB00;
}

.showcase-content p {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 2rem;
}

.showcase-features {
  list-style: none;
  margin-bottom: 2rem;
}

.showcase-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.showcase-features li::before {
  content: '✓';
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-weight: bold;
  color: #ffffff;
  font-size: 0.875rem;
  background-color: #7FBB00;
}

.showcase-features li {
  color: #666666;
  font-weight: 500;
}

/* ========== SHOWROOM SECTION ========== */
.showroom {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #f5f5f5, #efefef);
}

.showroom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .showroom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .showroom-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  border-left: 4px solid #7FBB00;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.info-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.info-card a {
  text-decoration: none;
  color: inherit;
}

.info-icon {
  width: 3rem;
  height: 3rem;
  background-color: #f0f0f0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #7FBB00;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #333333;
}

.info-card p {
  font-size: 0.95rem;
  color: #666666;
}

.diferenciais {
  background: linear-gradient(to right, rgba(127, 187, 0, 0.05), #ffffff);
  border: 1px solid rgba(127, 187, 0, 0.1);
  border-radius: 1rem;
  padding: 3rem;
}

.diferenciais h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #333333;
}

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

@media (min-width: 768px) {
  .diferenciais-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.diferencial-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #333333;
  font-weight: 700;
}

.diferencial-item p {
  font-size: 0.95rem;
  color: #666666;
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #efefef, #f5f5f5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #cccccc;
  border-radius: 0.375rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
  color: #333333;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7FBB00;
  box-shadow: 0 0 0 3px rgba(127, 187, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 0.5rem;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.contact-method:hover {
  background-color: rgba(127, 187, 0, 0.05);
}

.contact-method-icon {
  width: 3rem;
  height: 3rem;
  background-color: #7FBB00;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-method h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #333333;
}

.contact-method p {
  font-size: 0.95rem;
  color: #666666;
}

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

.social-link {
  width: 3rem;
  height: 3rem;
  background-color: #7FBB00;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s;
}

.social-link:hover {
  background-color: #6ba800;
  transform: scale(1.1);
}

/* ========== FOOTER ========== */
footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.footer-section p {
  font-size: 0.875rem;
  color: #cccccc;
  margin-bottom: 1rem;
}

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

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

.footer-section a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #7FBB00;
}

.footer-divider {
  border-top: 1px solid #333333;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-divider {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: #999999;
}

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

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #333333;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social a:hover {
  background-color: #7FBB00;
  color: #ffffff;
}

/* ========== VIDEO SECTION ========== */
.video-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #f5f5f5, #efefef);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background-color: #000000;
}

/* Aspect ratio container para responsividade */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

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

@media (min-width: 1024px) {
  .video-content {
    grid-template-columns: 1fr 1fr;
  }
}

.video-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333333;
}

.video-text p {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 1.5rem;
}

.video-features {
  list-style: none;
  margin-bottom: 2rem;
}

.video-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #666666;
  font-weight: 500;
}

.video-features li::before {
  content: '✓';
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-weight: bold;
  color: #ffffff;
  font-size: 0.875rem;
  background-color: #7FBB00;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #7FBB00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.75rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(127, 187, 0, 0.4);
  transition: all 0.3s;
  z-index: 50;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-button.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-button:hover {
  background-color: #6ba800;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(127, 187, 0, 0.5);
}

@media (max-width: 640px) {
  .whatsapp-button {
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}

/* ========== FACHADA SECTION ========== */
.fachada-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #efefef, #f5f5f5);
}

.fachada-container {
  margin-top: 3rem;
}

.fachada-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.fachada-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== SEO SECTIONS ========== */
.seo-sections {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #f5f5f5, #efefef);
}

.seo-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .seo-item {
    grid-template-columns: 1fr 1fr;
  }
}

.seo-item.reverse {
  direction: rtl;
}

.seo-item.reverse > * {
  direction: ltr;
}

.seo-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.seo-image img {
  width: 100%;
  height: auto;
  display: block;
}

.seo-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #333333;
}

.seo-content p {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* ========== PROJETOS SECTION ========== */
.projetos-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #efefef, #f5f5f5);
}

.projetos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .projetos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projetos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.projeto-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  cursor: pointer;
}

.projeto-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: scale(1.02) translateY(-0.5rem);
}

.projeto-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.projeto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.projeto-info {
  padding: 1.5rem;
}

.projeto-info h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #333333;
}

.projeto-info p {
  font-size: 0.95rem;
  color: #666666;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

  .section-header h2 {
    font-size: 1.75rem;
  }

  .showcase-content h2 {
    font-size: 1.5rem;
  }

  .diferenciais {
    padding: 1.5rem;
  }

  .diferenciais h3 {
    font-size: 1.25rem;
  }
}

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

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.opacity-50 {
  opacity: 0.5;
}
