/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f2f2f2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #1c1c1c;
}
p {
  font-family: "Funnel Display", sans-serif;
  color: #1c1c1c;
}
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 100px;
}
@media (max-width: 1400px) and (min-width: 1100px) {
  .container {
    padding: 0 20px;
  }
}
/* Section Headers with Orange Divider */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.section-header::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #dc6339;
}

/* Divider for Sections */
.section-divider {
  width: 60px;
  height: 3px;
  background-color: #dc6339;
  margin: 30px auto;
}

/* HERO SECTION */
.document-hero-new {
  background-color: #f2f2f2;
  padding: 40px 20px;
}

.hero-inner {
  position: relative;
  max-width: 1307px;
  margin: 0 auto;
  overflow: hidden;
}

/* Background image fills container */
.hero-bg-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Overlay containing all floating elements */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}

/* INFO CARD positioned into left cavity */
.hero-info-card {
   position: absolute;
  bottom: 0px;
  left: 0px;
  max-width: 420px;
  width: 32%;
  height: 42%;
  padding: 10px;
  border-radius: 15px;
  background: #dc6339;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-info-card p {
  color: white;
  font-size: 22px;
  line-height: 141%;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  padding: 10px;
}

/* TITLE overlayed right of info-card */
.hero-title {
  position: absolute;
  top: 50%;
  left: 40%;
  max-width: 600px;
  color: white;
}

.hero-title h1 {
  color: white;
  font-size: 50px;
  font-weight: 600;
  line-height: 64px;
  margin: -70px 0px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* QUOTE BUTTON positioned into right cavity */
.hero-quote-button {
  position: absolute;
  top: 0;
  right: 0;
}

.quote-btn {
  background-color: #1a1a1a;
  color: white;
  border: none;
  padding: 10px 10px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  line-height: 120%;
  cursor: pointer;
  line-height: 1.3;
  text-align: center;
  width: 140px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Show only on mobile and tablet */
.mobile-container {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #f2f2f2;
}

.content-wrapper {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.main-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 400;
}

.image-container {
  position: relative;
  margin-bottom: 20px;
}

.main-image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay-image {
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 115px;
  height: 145px;
  pointer-events: none;
}

.overlay-card {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  min-width: 140px;
}

.overlay-card::before {
  content: "↗";
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 16px;
  color: #dc6339;
}

.overlay-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 5px;
}

.cta-button-mobile {
  background-color: #dc6339;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
  width: 100%;
}

.cta-button-mobile:hover {
  background-color: #e2e2e2;
  color: #333;
  transform: translateY(-2px);
}

.secondary-text {
  background-color: #e2e2e2;
  color: black;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
  width: 100%;
}

.secundary-text:hover {
  background-color: #dc6339;
  color: white;
  translate: translateY(-2px);
}
.cta-button-mobile,
.secondary-text {
  display: block;
  margin: 10px auto;
}
/* Hide on desktop */
@media (min-width: 1024px) {
  .mobile-container {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .document-hero-new {
    display: none !important;
  }
}

/* Why Choose Section */
.why-choose {
  background-color: #f2f2f2;
  padding: 80px 0;
}

.why-choose-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.why-choose-top h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
  margin: 0;
  max-width: 600px;
}

.why-choose-subtitle {
  font-size: 20px;
  font-weight: 400;
  max-width: 600px;
  margin: 0;
  margin-top: 100px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.why-choose-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.feature-item p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  line-height: 30px;
}

.feature-divider {
  height: 1px;
  background-color: #dc6339;
  width: 100%;
  margin-top: 10px;
}

.cta-button {
  margin-top: auto;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #dc6339;
  color: #fff;
  gap: 50px;
  padding: 20px 40px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 32px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-width: 600px;
  height: 150px;
}

/* Testimonial Section */
.testimonial {
  padding: 60px 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  padding: 6px 15px;
  border-radius: 48px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  gap: 10px;
	
	font-size: 20px;
  font-weight: 600;
  color: #1e1e1e;
}

.testimonial-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #232323;
  margin: 0;
}

.testimonial-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: stretch;
  background: #FFFFFF;
  border-radius: 30px;
  overflow: hidden;
  min-height: 320px;
  margin-top: 0;
}

.testimonial-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  background: #FFFFFF;
  border-radius: 30px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  grid-row: 1 / -1;
  grid-column: 1 / 2;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: none;
  border: none;
  display: block;
  margin-top: 0;
}

.testimonial-text {
  grid-column: 2 / 3;
  grid-row: 1 / -1;
  flex: 1;
  padding: 56px 60px 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: #1c1c1c;
}

.testimonial-quote-icon {
  position: absolute;
  top: 32px;
  right: 48px;
  width: 70px;
  height: 70px;
  color: rgba(220, 99, 57, 0.5);
  opacity: 0.7;
}

.testimonial-quote blockquote {
   font-family: 'Funnel Display', sans-serif; 
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    margin: 0;
    max-width: 80%;
}

.testimonial-client-info h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 4px 0;
  margin-top: 40px;
  color: #1E1E1E;
}

.testimonial-client-info p {
   font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    opacity: 0.85;
    color: #535353;
}

/* Technology Section */
.technology-section {
  padding: 80px 0;
  background-color: #f2f2f2;
}

.technology-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.tech-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  gap: 8px;
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #dc6339;
  border-radius: 50%;
}

.section-tag span {
  color: #1c1c1c;
  font-weight: 500;
  font-size: 14px;
}

.technology-section h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
  margin: 0 0 20px 0;
  text-align: left;
  max-width: 900px;
}

.technology-subtitle {
  text-align: left;
  font-weight: 400;
  max-width: 800px;
  margin: 0 0 60px 0;
  font-size: 20px;
  line-height: normal;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Cada card */
.tech-item {
  border: 2px solid #dc6339;
  border-radius: 15px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.3s ease;
}

.tech-item:hover {
  box-shadow: 0 6px 20px rgba(220, 99, 57, 0.2);
}

/* Cabeçalho (ícone + título + seta) */
.tech-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  cursor: pointer;
}

/* Ícone e texto empilhados */
.tech-content {
  display: flex;
  flex-direction: column; 
  align-items: start;
  gap: 15px;
}

/* Ícone laranja */
.tech-icon {
  width: 64px;
  height: 64px;
  background-color: #dc6339;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-icon img {
  width: 32px;
  height: 32px;
}

.tech-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #1a1a1a;
}

/* Seta à direita */
.tech-arrow {
  font-size: 26px;
  color: #1a1a1a;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* Dropdown oculto por padrão */
.tech-dropdown {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dc6339;
  display: none;
}

/* Lista dentro do dropdown */
.tech-dropdown ul {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
}

.tech-dropdown li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Quando o card está ativo, mostra o dropdown e gira a seta */
.tech-item.active .tech-dropdown {
  display: block;
}

.tech-item.active .tech-arrow {
  transform: rotate(90deg);
}

/* Business Solutions Section */
.business-solutions {
  padding: 80px 0;
  background-color: #f2f2f2;
}

.business-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.business-text h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
  max-width: 50%;
  margin-bottom: 20px;
}

.business-text p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  flex: 1;
  margin: 0;
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
 .business-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
  }

  .business-grid::-webkit-scrollbar {
    display: none;
  }

  .business-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
    border-radius: 15px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .business-solutions {
    padding: 40px 0;
  }
  .btn-orange {
    display: none;
  }

  .document-hero-new {
    display: none;
  }

  .why-choose-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .why-choose-subtitle {
    text-align: center;
    margin-top: 0;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .technology-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-content {
    display: flex !important;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .final-cta-text h2,
  .final-cta-image {
    font-size: 28px !important;
    width: 100%;
    text-align: center;
  }
.final-cta-text p {
  font-size: 18px !important;
  text-align: center;
  line-height: 120%;
}
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .final-cta-buttons button {
    width: 100%;
    max-width: 300px;
  }

  .business-text {
    flex-direction: column;
    gap: 20px;
  }

  .business-text h2 {
    font-size: 28px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .business-text p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    line-height: normal;
  }

  .mobile-container {
    padding: 15px;
  }

  .main-title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 18px;
    line-height: 120%;
  }

  .overlay-card {
    bottom: 10px;
    right: 10px;
    padding: 12px 16px;
    min-width: 120px;
  }

  .overlay-text {
    font-size: 13px;
  }

  .testimonial {
    display: none;
  }

  .container {
    padding: 0 20px;
  }
  .why-choose-top h2 {
    font-size: 28px;
    text-align: center;
  }
  .technology-section h2 {
  font-size: 32px;
  text-align: center;
}

.technology-subtitle {
  text-align: center;
  max-width: none;
  line-height: normal;
}
.technology-section {
  padding: 0;
}
}
@media (min-width: 1200px) {
  .business-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.business-card {
  background-color: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.business-card:hover {
  transform: translateY(-5px);
}

.business-image img {
  width: 100%;
  height: 100%;
  padding: 20px;
}

.business-content {
  padding: 30px;
}

.business-content h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 15px;
}

.business-content p {
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

.business-content strong {
  color: #1a1a1a;
  font-weight: 700;
}

/* Final CTA */
.final-cta {
  padding: 80px 0;
  background-color: #f2f2f2;
}

.final-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.final-cta-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.final-cta-text h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 120%;
}

.final-cta-text p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 30px;
}

.final-cta-buttons {
  display: flex;
  gap: 15px;
}

.final-cta-primary {
  background-color: #dc6339;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.final-cta-primary:hover {
  background-color: #e2e2e2;
  color: #333;
  transform: translateY(-2px);
}

.final-cta-secondary {
  background-color: #e2e2e2;
  color: #1C1C1C;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.final-cta-secondary:hover {
  background-color: #dc6339;
  color: white;
  transform: translateY(-2px);
}
/* ===== ESTILOS PARA TABLET (mantém layout desktop, reduz fontes e espaçamentos) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 15px;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: 90%;
    line-height: 1.2;
  }

  p, li, a, span, button {
    font-size: 90%;
    line-height: 1.5;
  }

  .container {
    padding: 0 30px;
  }

  /* HERO */
  .hero-title h1 {
    font-size: 42px;
    line-height: 56px;
  }

  .hero-info-card p {
    font-size: 18px;
  }

  .quote-btn {
    font-size: 18px;
    width: 120px;
    height: 130px;
  }

  /* WHY CHOOSE */
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-top h2 {
    font-size: 42px;
  }

  .why-choose-subtitle {
    font-size: 18px;
    margin-top: 60px;
  }

  .feature-item h3 {
    font-size: 20px;
  }

  .feature-item p {
    font-size: 16px;
  }

  .btn-orange {
    font-size: 26px;
    padding: 16px 30px;
    min-width: 500px;
    height: 120px;
  }

  /* TECHNOLOGY */
  .technology-section h2 {
    font-size: 42px;
  }

  .technology-subtitle {
    font-size: 18px;
  }

  .tech-item {
    padding: 25px 30px;
  }

  .tech-title {
    font-size: 18px;
  }

  .tech-dropdown li {
    font-size: 15px;
  }

  /* BUSINESS */
  .business-text h2 {
    font-size: 30px;
  }

  .business-text p {
    font-size: 18px;
  }

  .business-content h3 {
    font-size: 22px;
  }

  .business-content p {
    font-size: 16px;
  }

  /* CTA FINAL */
  .final-cta-text h2 {
    font-size: 30px;
  }

  .final-cta-text p {
    font-size: 16px;
    line-height: 120%;
  }

  .final-cta-buttons button {
    font-size: 18px;
    padding: 10px 20px;
  }

  /* TESTIMONIAL */
  .testimonial-quote blockquote {
    font-size: 17px;
    line-height: 26px;
  }

  .testimonial-client-info h4 {
    font-size: 16px;
  }

  .testimonial-client-info p {
    font-size: 13px;
  }
}
