* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f2f2f2;
}
.main-section {
  padding: 60px 100px 0;
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1400px) and (min-width: 1100px) {
  .main-section {
    padding: 30px 20px;
  }
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  min-height: 600px;
  display: flex;
  justify-content: center; /* Centraliza o conteúdo horizontalmente */
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "image text"
    "image buttons";
  align-items: center;
  gap: 0 60px; /* Column gap only */
  max-width: 1500px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.hero-left {
  grid-area: image;
  position: relative;
}

.hero-right {
  grid-area: text;
  align-self: end;
}

.printers-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.printers-image-desktop {
  display: block;
}

.printers-image-mobile {
  display: none;
}

.innovation-badge {
  position: absolute;
  bottom: 8px;
  right: 0px;
  border-radius: 20px;
  text-align: center;
}

.innovation-badge-desktop {
  background: #dc6339;
  color: white;
  padding: 60px 23px 47px 0px;
  width: 31%;
  height: 42%;
  display: block;
}

.innovation-badge-mobile {
  display: none;
}

.innovation-badge-mobile img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: auto;
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero-content {
    display: flex; /* Change display to flex */
    flex-direction: column;
    gap: 40px;
    text-align: center;
    grid-template-areas: none;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
  }

  .printers-image-desktop {
    display: none;
  }

  .printers-image-mobile {
    display: block;
  }

  .innovation-badge {
    right: 9px;
    bottom: 11px;
  }

  .innovation-badge-desktop {
    display: none;
  }

  .innovation-badge-mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }

  .innovation-badge-mobile img {
    position: absolute;
    width: auto;
    height: auto;
    bottom: 0;
    right: auto;
    margin-top: auto;
  }
}

.innovation-badge h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.innovation-badge p {
  font-size: 22px;
  color: white !important;
  line-height: 35%;
  font-weight: 400;
  text-align: left;
  padding-left: 10%;
  font-family: "Poppins", sans-serif;
}

.innovation-badge p:nth-of-type(2) {
  font-size: 26px;
  font-weight: 600;
}

.hero-right h1 {
  font-size: 54px;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 24px;
  line-height: 120%;
  font-family: "Poppins", sans-serif;
}

.hero-right p {
  font-size: 22px;
  color: #1c1c1c;
  margin-bottom: 0;
  line-height: 31px;
  font-family: "Funnel Display", sans-serif;
  font-weight: 400;
}

.hero-buttons .btn {
  flex: 1 1 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
  border-radius: 30px;
  box-sizing: border-box;
  min-width: 0;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
}

.hero-buttons {
  grid-area: buttons;
  align-self: start;
  margin-top: 32px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #dc6339;
  color: white;
  font-weight: 400;
  font-family: "Funnel Display", sans-serif;
}

.btn-primary:hover {
  background: #e2e2e2;
  color: #1c1c1c;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #e2e2e2;
  color: #1c1c1c;
  font-weight: 400;
  font-family: "Funnel Display", sans-serif;
}

.btn-secondary:hover {
  background: #dc6339;
  color: white;
  transform: translateY(-2px);
}

/* Solutions Section */
.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- Seção de Soluções (Versão Final Alinhada à Esquerda) --- */
.solutions {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 40px;
}

/* ETIQUETA - Estilo de pílula branca */
.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;
}

/*.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #dc6339;
  border-radius: 50%;
} */

.section-tag span {
  color: #1c1c1c;
  font-weight: 500;
  font-size: 14px;
}

/* TÍTULO */
.section-title {
  font-size: 50px;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 24px;
  line-height: 120%;
  text-align: left;
}

.section-title-productos {
  font-size: 50px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 24px;
  line-height: 1.2;
  text-align: left;
}

/* DESCRIÇÃO - A GRANDE ALTERAÇÃO ESTÁ AQUI */
.section-description {
  font-size: 22px;
  color: #1c1c1c;
  line-height: 32px;
  width: 80%;
  font-family: "Funnel Display", sans-serif;
  font-weight: 400;
}

/* IMAGEM */
.solutions-images {
  margin-top: 40px;
}
.solution-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 80px;
  margin-top: 60px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  /*padding: 0 20px;*/

  /* O antigo .feature-card agora é .feature-item */
  .feature-item {
    border-bottom: 1px solid #dc6339;
    padding-bottom: 25px;
  }

  /* ADICIONADO: Classe para o novo cabeçalho que agrupa título e ícone */
  .feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }

  /* Estilos do título e parágrafo (mantidos e ligeiramente ajustados) */
  .feature-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e1e1e;
    margin: 0;
  }

  .feature-item p {
    color: #1e1e1e;
    line-height: 28px;
    margin: 0;
    font-size: 18px;
    width: 80%;
    font-family: funnel display;
  }
}

/* O antigo .feature-icon agora é .arrow-icon e foi completamente reestilizado */
.arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #1e1e1e;
  border-radius: 50%;
  color: #1e1e1e;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Industry Solutions Section */
.industry-solutions {
  padding: 80px 0;
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.industry-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.industry-image {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.rounded-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.industry-card h3 {
  font-size: 26px;
  color: #2d3748;
  margin-bottom: 12px;
  line-height: 120%;
  font-weight: 500;
}

.industry-card p {
  font-size: 16x !important;
  color: #1c1c1c;
  line-height: 25px;
  font-family: funnel display;
}

/* Testimonial Section - Depoimento com layout flexível */
.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: #dc6339;
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(20, 20, 40, 0.1);
  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;
}

.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: #ffffff;
}

.testimonial-quote-icon {
  position: absolute;
  top: 32px;
  right: 48px;
  width: 70px;
  height: 70px;
  color: #bdb7e3;
  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: #ffffff;
}

.testimonial-client-info p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  opacity: 0.85;
  color: #ffffff;
}

/* Advanced Features Section */
.advanced-features {
  padding: 80px 0;
}

/* --- ESTILOS PADRÃO (DESKTOP) --- */
.features-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Grelha de 4 colunas em desktop */
  gap: 24px;
  margin-top: 60px;
}

.feature-box {
  border-radius: 20px;
  padding: 30px 24px;
  border: 2px solid #dc6339;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 250px;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon-box {
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 22px;
  color: #1c1c1c;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 30px;
  font-weight: 600;
  max-width: 174px;
}

.feature-box p {
  font-size: 16px;
  color: #1c1c1c;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  max-width: 224px;
  font-family: "Poppins", sans-serif;
}

.discover-more {
  background: #dc6339;
  border: none;
  position: relative;
}

.discover-more h3 {
  max-width: 85%;
  font-size: 28px;
  line-height: 120%;
  color: #ffffff;
}

.discover-more p {
  max-width: 85%;
  font-size: 16px;
  font-family: "Funnel Display", sans-serif;
  color: #ffffff;
}

.arrow-icon-wrapper {
  display: none;
}

.discover-more .arrow-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #dc6339;
  color: #dc6339;
  transition: background-color 0.3s ease;
}

.discover-more .arrow-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

/* Botão para mobile (escondido em desktop) */
.btn-mobile-discover {
  display: none;
}

/* Secção Produtividade */
.productivity {
  padding: 100px 0; /* Aumentar o espaçamento vertical */
}

.productivity-content {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px;
  align-items: center;
}

.productivity-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Garante que ocupa toda a altura da célula do grid */
}

.productivity-text h2 {
  font-size: 50px;
  font-weight: 600;
  color: #1c1c1c;
  line-height: 120%;
  margin: 0;
}

.orange-box {
  background: #dc6339;
  color: white;
  padding: 50px;
  border-radius: 20px;
  margin-top: 40px;
  max-height: 572px;
  max-width: 508px;
  display: flex;
  align-content: center;
  align-items: center;
  align-self: center;
}

.orange-box p {
  font-size: 30px;
  line-height: 136%;
  font-weight: 500;
  padding: 36px;
  font-family: "Poppins", sans-serif;
}

.productivity-image {
  position: relative;
  border-radius: 20px; /* Aumentar o arredondamento para corresponder */
  overflow: hidden;
  height: 100%;
}

.productivity-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* Remove espaço extra abaixo da imagem */
}

.cta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* Alteração principal: usar um gradiente em vez de uma cor sólida */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  color: white;
  padding: 40px; /* Aumentar o padding */
  display: flex; /* Usar flexbox para alinhar o conteúdo */
  flex-direction: column;
  align-items: flex-start; /* Alinhar itens à esquerda */
  justify-content: flex-end; /* Empurrar o conteúdo para baixo */
  height: 50%; /* Fazer o gradiente ocupar mais espaço */
  box-sizing: border-box;
}

.cta-overlay h3 {
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 15px 0;
  line-height: 120%;
}

.cta-link {
  color: white;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 20px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Funnel Display", sans-serif;
}

.cta-link .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  transform: rotate(45deg); /* estado inicial inclinado */
  transition: transform 0.3s ease;
}

/* Hover apenas para leve deslocamento */
.cta-link:hover .icon {
  transform: rotate(45deg) translateY(3px);
}

/* Ao clicar */
.cta-link:active .icon {
  transform: rotate(180deg) translateY(0); /* mira para baixo */
}

/* Large Desktops */
@media (min-width: 1400px) {
  .container {
    max-width: 1500px;
  }

  .hero-right h1 {
    font-size: 54px;
  }

  .section-title {
    font-size: 50px;
  }
}

/* Standard Desktops */
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .hero-right h1 {
    font-size: 42px;
  }

  .section-title {
    font-size: 38px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .industry-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Responsive styles for Advanced Features and Productivity sections */
  .features-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .productivity-text h2 {
    font-size: 32px;
  }

  .orange-box {
    padding: 30px;
  }

  .orange-box p {
    font-size: 16px;
  }
}

/* Tablets and Small Desktops */
@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }

  .hero-content {
    gap: 40px;
  }

  .hero-right h1 {
    font-size: 36px;
  }

  .hero-right p {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-description {
    font-size: 16px;
  }

  .features-grid {
    gap: 30px;
  }

  .feature-card {
    padding: 24px;
  }

  .industry-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .productivity-content {
    grid-template-columns: 1fr;
    gap: 0; /* Remove gap to allow overlap */
    display: flex;
    flex-direction: column;
  }

  .productivity-text {
    order: 1;
    display: contents; /* This allows children to be direct flex items of the parent */
  }

  .productivity-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    order: 1; /* Title first */
  }

  .productivity-image {
    height: 400px;
    order: 2; /* Image second */
    width: 100%;
    border-radius: 20px; /* Round all corners */
    z-index: 2; /* Ensure image is on top */
    position: relative; /* Establish stacking context */
  }
  .orange-box {
    order: 3; /* Orange box third */
    margin-top: -80px; /* Pull the box up under the image */
    border-radius: 20px; /* Round all corners */
    max-width: none;
    padding-top: 95px; /* Add padding to push text below the overlapping image */
    z-index: 1; /* Ensure box is behind the image */
    position: relative; /* Establish stacking context */
  }

  .cta-overlay {
    align-items: center;
    text-align: center;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.7) 100%
    );
  }

  .cta-overlay h3 {
    font-size: 32px;
  }

  .cta-link {
    text-decoration: none;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
  }

  .cta-link img.icon {
    display: none;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .main-section {
    padding: 30px 0;
  }
  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .innovation-badge {
    width: 100px;
    padding: 14px 0px;
    right: 0;
    bottom: 4px;
    text-align: center;
    border-radius: 10px;
  }
  .innovation-badge p {
    font-size: 16px; /* Reduce base font size */
  }

  .innovation-badge p:nth-of-type(2) {
    font-size: 14px; /* Reduce the larger font size */
  }

  .hero-content {
    text-align: center;
  }

  .hero-left {
    order: 2;
    max-width: 100%;
  }
  .hero-right {
    order: 1; /* Text is first */
    max-width: 100%;
    align-self: center; /* Ensure it's centered */
  }

  .printers-image {
    height: 297px;
    width: 310px;
  }

  .hero-right h1 {
    font-size: 32px;
  }

  .hero-buttons {
    order: 3; /* Buttons are third */
    justify-content: center;
    align-self: center; /* Ensure it's centered */
  }

  .solutions {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
    text-align: center;
  }

  .section-tag {
    justify-content: center;
  }

  .section-description {
    margin: 0 auto;
  }

  .solutions .section-tag,
  .advanced-features .section-tag {
    display: none;
  }

  .solutions-images {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .industry-solutions .industry-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* for smooth scrolling on iOS */
    padding-bottom: 1rem; /* Add some space for the scrollbar */
    gap: 1rem; /* Space between cards */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }

  .industry-solutions .section-title {
    width: 100% !important; /* Override the inline style for mobile */
    text-align: center;
  }

  .industry-solutions .industry-card {
    flex: 0 0 80%; /* Each card takes up 80% of the container width */
    scroll-snap-align: start;
    min-width: 0; /* Override any desktop min-width */
  }

  /* Hide scrollbar for a cleaner look, but still allow scrolling */
  .industry-solutions .industry-cards::-webkit-scrollbar {
    display: none;
  }

  .industry-solutions .industry-cards {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }

  .industry-cards {
    grid-template-columns: 1fr;
  }

  .testimonial {
    display: none;
  }

  .advanced-features {
    padding: 60px 0;
  }

  /* 1. Transformar a grelha num carrossel scrollável */
  .features-cards {
    display: flex; /* Muda de grid para flex */
    overflow-x: auto; /* Permite o scroll horizontal */
    scroll-snap-type: x mandatory; /* Ativa o "íman" para o scroll */
    -webkit-overflow-scrolling: touch; /* Melhora a experiência em iOS */

    /* Esconde a barra de scroll para um look mais limpo */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
  }
  .features-cards::-webkit-scrollbar {
    display: none; /* Safari e Chrome */
  }

  /* 2. Ajustar o tamanho de cada card dentro do carrossel */
  .feature-box {
    flex: 0 0 85%; /* Cada card ocupa 85% da largura do ecrã */
    scroll-snap-align: center; /* Alinha cada card ao centro quando o scroll para */
  }

  /* 3. Esconder o card "Descubra mais" que é só para desktop */
  .discover-more {
    display: none;
  }

  /* 4. Mostrar e estilizar o botão que é só para mobile */
  .btn-mobile-discover {
    display: block; /* Faz o botão aparecer */
    background-color: #dc6339;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    margin: 40px auto 0;
    max-width: 300px;
    transition: background-color 0.3s ease;
    font-family: "Poppins", sans-serif;
  }
  .btn-mobile-discover:hover {
    background-color: #c75630;
  }

  .productivity {
    padding: 60px 0;
  }

  .orange-box {
    padding: 25px;
    padding-top: 95px; /* Maintain top padding for overlap */
  }
  .orange-box p {
    font-size: 18px;
    line-height: 1.5;
    padding: 0;
  }

  .cta-overlay {
    padding: 20px;
  }

  .cta-overlay h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

/* Large Mobile Phones */
@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-right h1 {
    font-size: 26px;
    margin-bottom: 16px;
    padding: 0;
  }

  .hero-right p {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: normal;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
    text-align: center;
  }

  .solutions {
    padding: 40px 0;
  }

  .section-title {
    font-size: 26px;
    text-align: center;
    align-items: center;
    justify-content: center;
    line-height: 120%;
  }

  .section-description {
    font-size: 16px;
    width: 328px;
    line-height: 23px;
    font-family: funnel display;
  }

  .section-header h2 {
    font-size: 26px;
    text-align: center;
    align-items: center;
    justify-content: center;
    line-height: 120%;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 18px;
    padding-right: 30px;
  }

  .feature-icon {
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
  }

  .industry-cards {
    grid-template-columns: 1fr;
  }

  .industry-solutions {
    padding: 40px 0;
  }

  .features-cards {
    grid-template-columns: 1fr;
  }

  .feature-box {
    font-size: 26px;
    text-align: center;
    align-items: center;
    justify-content: center;
    line-height: 120%;
  }

  .productivity-text h2 {
    font-size: 24px;
  }

  .orange-box {
    padding: 20px;
    padding-top: 90px; /* Adjust padding for smaller screens */
    margin-top: -70px; /* Adjust overlap for smaller screens */
  }

  .orange-box p {
    font-size: 15px;
  }

  .productivity-image {
    height: 350px;
  }

  .cta-overlay {
    padding: 15px;
  }

  .cta-overlay h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

/* Small Mobile Phones */
@media (max-width: 375px) {
  .hero-right h1 {
    font-size: 24px;
  }

  .innovation-badge {
    padding: 10px;
  }

  .innovation-badge h3 {
    font-size: 14px;
  }

  .innovation-badge p {
    font-size: 12px;
  }

  .section-title {
    font-size: 22px;
  }

  .feature-card {
    padding: 16px;
  }
}
/* ===== ESTILO PARA TABLET (769px a 1024px) =====
   Mantém layout de desktop, apenas reduz tamanhos de fontes e espaçamentos
================================================== */
@media (max-width: 1024px) and (min-width: 769px) {
  .main-section {
    padding: 40px 30px 0;
  }

  .hero-right h1 {
    font-size: 44px;
  }

  .hero-right p {
    font-size: 18px;
  }

  .hero-buttons .btn {
    font-size: 16px;
    padding: 12px 24px;
  }

  .innovation-badge {
    width: 140px;
    padding: 40px 15px 32px 0;
  }
  .innovation-badge p {
    font-size: 18px;
  }
  .innovation-badge p:nth-of-type(2) {
    font-size: 22px;
  }

  .section-title,
  .section-title-productos {
    font-size: 42px;
  }

  .section-description {
    font-size: 18px;
    line-height: 30px;
    width: 85%;
  }

  .features-grid {
    gap: 40px 60px;
  }

  .feature-item h3 {
    font-size: 20px;
  }
  .feature-item p {
    font-size: 16px;
  }

  .industry-card h3 {
    font-size: 22px;
  }
  .industry-card p {
    font-size: 15px;
  }

  .section-tag {
    font-size: 18px;
  }

  .orange-box {
    padding: 40px;
  }

  .orange-box p {
    font-size: 24px;
  }

  .cta-overlay h3 {
    font-size: 34px;
  }
  .cta-link {
    font-size: 18px;
  }

  .feature-box h3 {
    font-size: 20px;
  }
  .feature-box p {
    font-size: 15px;
  }

  .discover-more h3 {
    font-size: 24px;
  }
  .discover-more p {
    font-size: 15px;
  }

  .testimonial-quote blockquote {
    font-size: 17px;
    line-height: 26px;
  }
  .testimonial-client-info h4 {
    font-size: 15px;
  }
  .testimonial-client-info p {
    font-size: 13px;
  }
}
