@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
       url('../fonts/Satoshi-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
       url('../fonts/Satoshi-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

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

body {
  font-family: 'Satoshi', sans-serif;
  background-color: #ffffff;
  color: #121212;
}

/* Header */
.site-header {
  width: 100%;
  background-color: #ffffff;
  padding: 20px 0;
}

.container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    align-items: center;
}

.logo {
  height: 32px;
  width: auto;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  background: url('../images/hero.jpg') center center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  color: #ffffff;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-btn {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(90deg, #00C2FF 0%, #1E73E8 100%);
  border-radius: 50px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1;
  position: relative;
}

.about-text::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 400px;
  height: 400px;
  background: url('../images/bg-efeito-about.png') center center/cover no-repeat;
  z-index: -1;
}

.about-subtitle {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-heading {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1E73E8;
}

.about-paragraph {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #333333;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-img {
  width: 100%;
  height: auto;
  max-width: 500px;
}


/* Services Section */
.services {
  padding: 80px 0;
  background-color: #ffffff;
}
.services-heading {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #121212;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.service-card {
  background: linear-gradient(135deg, rgba(229, 245, 255,1) 0%, rgba(229, 245, 255,0.5) 100%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-icon {
  font-size: 32px;
  color: #1E73E8;
  margin-bottom: 16px;
}
.service-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #121212;
}
.service-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  flex: 1;
}


/* Override for icon image in first service card */
.service-icon {
  /* keep existing for icons */
}
.service-card img.service-icon {
    width: 100px;
    height: auto;
    margin-bottom: 16px;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .container {
    width: auto;
    max-width: 100%;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .site-header .container {
    justify-content: center;
  }

  .hero {
    height: auto;
    padding: 100px 0;
    background-position: center top;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-heading {
    font-size: 32px;
  }
  .hero-text {
    font-size: 16px;
    max-width: 100%;
    margin: 0 auto 24px;
  }
  .hero-btn {
    padding: 12px 24px;
  }

  .about-content {
    flex-direction: column;
  }
  .about-text, .about-image {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .about-text::before {
    display: none;
  }
  .about-heading {
    font-size: 36px;
  }
  .about-subtitle {
    font-size: 24px;
  }
  .about-paragraph {
    font-size: 14px;
  }

  .services-heading {
    font-size: 36px;
    text-align: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    max-width: 100%;
  }
}


/* Diferencial Section */
.diferencial {
  padding: 80px 0;
  background-color: #ffffff;
}
.diferencial-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.diferencial-image {
    flex: 1;
    max-width: 30%;
    position: relative;
}

.diferencial-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.diferencial-text {
    flex: 1;
    max-width: 70%;
    padding-left: 64px;
}
.diferencial-title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #121212;
}
.diferencial-subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.diferencial-quote {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #1E73E8;
}
.diferencial-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #333333;
}

/* Responsive: Diferencial Section */
@media (max-width: 768px) {
  .diferencial-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .diferencial-image,
  .diferencial-text {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  .diferencial-image {
    margin-bottom: 32px;
  }
  .diferencial-text {
    padding-left: 0;
  }
}

/* Footer Styles */
.site-footer {
  padding: 24px 0;
  background: #FFFFFF;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {
  display: flex;
  align-items: center;
}
.footer-left img {
  height: 32px;
  margin-right: 16px;
}
.footer-left span {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: #121212;
}
.footer-right {
  display: flex;
  align-items: center;
}
.footer-right span {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: #121212;
  margin-right: 12px;
}
.footer-right a {
  margin: 0 8px;
}
.footer-right a img {
  height: 24px;
  width: 24px;
}
/* Mobile Footer Responsiveness */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left,
  .footer-right {
    justify-content: center;
  }
  .footer-right {
    margin-top: 12px;
  }
  .footer-right span {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
