/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f2f2f2;
  color: #333;
  line-height: 1.6;
}

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;
  }
}

/* TI Computing Hero Section */
.ti-computing-hero {
  background-color: #f2f2f2;
  padding: 20px 0;
  color: #333;
  position: relative;
  overflow: hidden;
}

.ti-computing-hero::before {
  content: none;
}

.hero-content-computing {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 40px;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-badge {
  display: none;
}

.hero-left h1 {
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
  color: #1C1C1C;
  margin: 0 0 20px 0;
}

.hero-description {
  font-size: 20px;
  line-height: 31px;
  color: #1C1C1C;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 15px;
}

.hero-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;
}

.hero-cta-primary:hover {
  background-color: #e2e2e2;
  color: #333;
  transform: translateY(-2px);
}

.hero-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;
}

.hero-cta-secondary:hover {
  background-color: #dc6339;
  color: white;
  transform: translateY(-2px);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.hero-image-container {
  width: 100%;
  height: auto;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: flex;
}

.hero-info-box {
  background-color: #DC6339;
  padding: 25px;
  border-radius: 15px;
  color: white;
}

.hero-info-box p {
  margin: 0 0 15px 0;
  font-size: 16px;
  line-height: 1.5;
}

.hero-info-box p:last-child {
  margin-bottom: 0;
  font-weight: 600;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.computing-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Section Label Styles */
.section-label {
  display: inline-flex; 
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 25px; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
}

.section-bullet {
  color: #DC6339;
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
}

.section-text {
  color: #333;
  font-size: 20px;
  font-weight: 600;
}

/* Why Choose Computing Section - NEW DESIGN */
.why-choose-computing {
  padding: 10px 0;
  background-color: #f2f2f2;
}

.computing-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.computing-title h2 {
  font-size: 42px;
  font-weight: 600;
  margin: 0;
  line-height: 120%;
  margin-top: 50px;
}

.computing-subtitle {
  font-family: 'Funnel Display', sans-serif;
  font-size: 20px;
  display: flex;
  align-items: flex-start;
}

.computing-subtitle p {
  font-size: 16px;
  color: #1C1C1C;
  font-family: "Funnel Display", sans-serif;
  line-height: 1.6;
  margin: 0;
  max-width: 80%;
  margin-left: 90px;
  margin-top: 55px;
}.computing-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;        /* sem gap vertical, 80px horizontal entre colunas */
    margin-bottom: 50px;
    max-width: 1500px;
}

.computing-feature-card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    padding: 50px 0;    /* padding só vertical */
}

.computing-feature-card:nth-child(odd) {
    border-bottom: 1px solid #DC6339;
    padding-right: 0;
    padding-left: 0;
}

.computing-feature-card:nth-child(even) {
    border-bottom: 1px solid #DC6339;
    padding-right: 0;
    padding-left: 0;
	    border-bottom: 1px solid #DC6339;

}

.computing-feature-card:nth-child(3),
.computing-feature-card:nth-child(4) {
    border-bottom: none;
     padding-right: 0;
    padding-left: 0;
	    border-bottom: 1px solid #DC6339;

}

.computing-feature-icon {
    margin-bottom: 20px;
}

.computing-feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 15px;
    line-height: 130%;
}

.feature-description {
    font-size: 18px;
    font-family: "Funnel Display", sans-serif;
    color: #1C1C1C;
    line-height: 28px;
    margin-bottom: 20px;
}

.feature-example-text {
    font-size: 16px;
    font-family: "Funnel Display", sans-serif;
    color: #1C1C1C;
    line-height: 26px;
    text-decoration: underline;
    margin: 0;
}

.feature-example-text strong {
    font-weight: 600;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .computing-feature-card:nth-child(odd) {
        padding-right: 40px;
        padding-left: 0;
    }
    .computing-feature-card:nth-child(even) {
        padding-left: 40px;
        padding-right: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .computing-features-grid {
        grid-template-columns: 1fr;
    }

    .computing-feature-card:nth-child(odd),
    .computing-feature-card:nth-child(even) {
        border-right: none;
        border-bottom: 1px solid #DC6339;
        padding: 30px 0;
    }

    .computing-feature-card:nth-child(3),
    .computing-feature-card:nth-child(4) {
        border-bottom: 1px solid #DC6339;
        padding-bottom: 30px;
    }

    .computing-feature-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Equipment Categories Section */
.equipment-categories {
  padding: 80px 0;
  background-color: #f2f2f2;
}

/* Estilos do cabeçalho da secção */
.equipment-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
  align-items: flex-start;
}
.equipment-title h2 {
    font-size: 42px;
    font-weight: 600;
    color: #1C1C1C;
    margin: 0;
    line-height: 120%;
}
.equipment-subtitle p {
    font-size: 20px;
    font-family: "Funnel Display", sans-serif;
    color: #1C1C1C;
    margin: 0;
    max-width: 500px;
}

/* --- ESTILOS REUTILIZADOS DA PRIMEIRA SECÇÃO (Aplicados agora aqui) --- */

/* Grelha de 4 colunas */
.features-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Estilo base para todos os cards */
.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-box h3 {
  font-size: 22px;
  color: #1C1C1C;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 30px;
  font-weight: 600;
  max-width: 100%; /* Ajustado para permitir títulos mais longos */
}

.feature-box p {
  font-size: 16px;
  color: #1C1C1C;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

/* 
 * Adaptação para os ícones da secção "Equipamentos"
 * Transforma o contentor do ícone no quadrado laranja arredondado.
*/
.equipment-categories .feature-icon-box {
  width: 65px;
  height: 65px;
  background-color: #DC6339;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Garante que os SVGs da primeira secção (se estiverem na mesma página) não são afetados */
.advanced-features .feature-icon-box {
  margin-bottom: 20px;
}


/* Estilo específico para o card "Descubra Mais" */
.discover-more {
    background: #DC6339;
    border: none;
    box-shadow: none;
    position: relative;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
}

.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';
    color: #ffffff;
}

.discover-more .arrow-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 0;
}

.discover-more .arrow-icon-wrapper svg path {
    stroke: #ffffff;
}


.discover-more:hover .arrow-icon-wrapper {
  background-color: transparent;
}

.discover-more .arrow-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

/* Botão para mobile (escondido em desktop) */
.btn-mobile-equipment {
    display: none;
}

/* 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: linear-gradient(90deg, #DC6339 0%, #DC6339 100%);
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(20,20,40,0.10);
  overflow: hidden;
  min-height: 320px;
  margin-top: 0;
}

.testimonial-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  background: #232232;
  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;
  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: #fff;
}

.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;
}



/* FORA de qualquer media query */
.solution-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.solution-image {
    height: auto;
    overflow: hidden;
    border-radius: 15px;
    margin: 15px 15px 0 15px;
}

.solution-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: none;
    box-sizing: border-box;
}

.solution-content {
    padding: 20px 20px;
}

.solution-content h3 {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-details {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.solution-details li {
    font-size: 16px;
    font-family: "Funnel Display", sans-serif;
    color: #1C1C1C;
    line-height: 22px;
    margin-bottom: 12px;
    padding-left: 0;
    position: static;
}

.solution-details li::before {
    display: none;
}

.solution-details li strong {
    font-weight: 600;
    color: #1C1C1C;
}






.solution-details li:last-child {
  margin-bottom: 0;
}


/* Complementary Solutions Section */
.complementary-solutions {
  padding: 80px 0;
  background-color: #f2f2f2;
}

.solutions-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.solutions-text h2 {
    font-size: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 120%;
}
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 25px 0;
  border-bottom: 1px solid #DC6339;
  transition: all 0.3s ease;
  cursor: pointer;
}

.solution-item:last-child {
  border-bottom: none;
}

.solution-icon {
  display: none;
}

.solution-icon svg {
  color: white;
  width: 24px;
  height: 24px;
}

.solution-content {
  flex: 1;
  padding-right: 20px;
}

.solution-content h3 {
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    line-height: 120%;
    color: #1E1E1E;
    margin-bottom: 7px;
}

.solution-content p {
  font-size: 18px;
  font-family: "Funnel Display", sans-serif;
  color: #1C1C1C;
  line-height: 28px;
  margin: -2px;
}

.solution-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.solution-arrow svg {
  color: #000;
}

.solutions-images {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
}

.solution-image-large {
  width: 100%;
  max-width: 600px;
}

.solution-image-large img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
    padding: 0 20px;
  }
  .computing-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }
   .hero-content-computing {
    flex-direction: column; 
    gap: 20px; 
    text-align: center;
  }

.hero-left {
    display: contents; 
  }

  .hero-left h1 {
    order: 1;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero-description {
    order: 1;
    font-size: 18px; 
    margin-bottom: 25px;
  }
 .hero-right {
    order: 2;
 }

  .hero-cta {
    order: 3;
    flex-direction: column; 
    gap: 12px;
    width: 100%; 
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%; 
    padding: 14px 24px;
  }

  
  .computing-title h2 {
    font-size: 32px;
    text-align: center;
    margin-top: 0px;
}
.computing-subtitle p {
    margin-left: auto; 
    margin-right: auto; 
    max-width: 90%; 
    text-align: center;
    margin-top: 0px; 
  }

  .equipment-subtitle {
    font-size: 18px;
    text-align: center;
    margin: 0;
    padding-left: 0;
  }
  .equipment-subtitle p {
    text-align: center;
    padding-left: 0;
  }
  .computing-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .solutions-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

    .testimonial {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* responsividade cards equipment */
  .equipment-header {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    margin-bottom: 40px;
  }
  .equipment-title h2 {
    font-size: 28px;
  }
  .equipment-subtitle p {
    margin: 15px auto 0;
  }

  /* ----- Transformar a grelha em Carrossel ----- */
  .features-cards {
    display: flex;
    flex-wrap: nowrap; /* Garante uma única linha */
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 20px;
    margin: 0 -20px; /* Alinha com as bordas do ecrã */
    scrollbar-width: none;
  }
  .features-cards::-webkit-scrollbar {
    display: none;
  }
  
  /* ----- Estilo dos cards no carrossel ----- */
  .features-cards .feature-box {
    flex: 0 0 90%; /* Cada card ocupa 90% */
    scroll-snap-align: center;
  }

  /* ----- Esconder card "Descubra mais" em mobile ----- */
  .features-cards .discover-more {
    display: none;
  }
  
  /* ----- Mostrar e estilizar o botão mobile ----- */
  .btn-mobile-equipment {
    display: block;
    max-width: 300px;
    margin: 40px auto 0;
    padding: 14px 20px;
    background-color: #dc6339;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
  }

  /* responsividade section business solutions */
  .business-solutions h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  line-height: 120%;
  max-width: 100%;
}
 .solutions-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px 15px;
  }

  .solution-card {
    flex: 0 0 95%; 
    min-width: 80%;
    scroll-snap-align: center;
    border-radius: 15px;
  }

  .solution-image img {
    width: 100%;
    height: auto;
    border: none;
    border-radius: 15px 15px 0 0;
  }

  .solution-content {
    padding: 15px 0px;
  }

  .solution-content h3 {
    font-size: 18px;
  }

  .solution-details li {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }

  /* Esconde a barra de rolagem */
  .solutions-grid::-webkit-scrollbar {
    display: none;
  }

  /* responsividade solutions complementary */
  .solutions-text h2 {
    font-size: 32px;
    text-align: center;
}
/* Tirando padding equipment categories no mobile */
.equipment-categories {
  padding: 0;
 
}
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 36px;
  }
}
/*  RESPONSIVIDADE PARA TABLET (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Base */
  body, p {
    font-size: 15px;
    line-height: 1.6;
  }

  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  h3 { font-size: 22px; }
  h4, h5, h6 { font-size: 18px; }

  .container {
    padding: 0 40px;
    max-width: 1200px;
  }

  /* Hero Section */
  .hero-left h1 {
    font-size: 30px;
    line-height: 120%;
  }

  .hero-description {
    font-size: 15px;
    line-height: 120%;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    font-size: 16px;
    padding: 10px 22px;
  }

  .hero-info-box p {
    font-size: 15px;
  }

  /* Why Choose Computing */
  .computing-title h2 {
    font-size: 30px;
  }

  .computing-subtitle p {
    font-size: 15px;
    margin-left: 60px;
  }

  .computing-feature-card {
    padding: 24px;
  }

  .computing-feature-card h3 {
    font-size: 20px;
  }

  .feature-description {
    font-size: 17px;
    line-height: 26px;
  }
  /* Equipment Categories */
  .equipment-title h2 {
    font-size: 38px;
  }

  .equipment-subtitle p {
    font-size: 18px;
  }

  .feature-box {
    padding: 25px 20px;
  }

  .feature-box h3 {
    font-size: 20px;
  }

  .feature-box p {
    font-size: 15px;
  }

  /* Testimonial */
  .testimonial-quote blockquote {
    font-size: 17px;
    line-height: 26px;
  }

  .testimonial-client-info h4 {
    font-size: 15px;
  }

  .testimonial-client-info p {
    font-size: 13px;
  }

  /* Business Solutions */
  .business-solutions h2 {
    font-size: 38px;
    max-width: 80%;
  }

  .solution-content h3 {
    font-size: 18px;
  }

  .solution-details li {
    font-size: 16px;
  }

  /* Complementary Solutions */
  .solutions-text h2 {
    font-size: 42px;
  }

  .solution-content p {
    font-size: 16px;
    line-height: 25px;
  }

  /* Geral */
  section {
    padding: 60px 0;
  }

  .btn-primary, .btn-secondary {
    font-size: 16px;
    padding: 12px 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .features-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .solutions-content {
    display: flex;
    flex-direction: column;
  }
}



/* Business Solutions Section */
.business-solutions {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.business-solutions h2 {
    font-size: 42px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 75px;
    text-align: left;
    line-height: 132%;
    max-width: 70%;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.solution-card {
    background-color: white !important;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.business-solutions .solution-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    border: none;
}
