/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f2f2f2;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 100px;
}
@media (max-width: 1400px) and (min-width: 1100px) {
  .container {
    padding: 0 20px;
  }
}
/* Visual Solutions Hero Section */
.visual-solutions-hero {
  background-color: #f2f2f2;
  padding: 60px 0;
  color: #333;
  position: relative;
  overflow: hidden;
}

.hero-content-solucoes {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 40px;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-left h1 {
    font-family: 'Poppins';
    font-size: 54px;
    font-weight: 600;
    line-height: 120%;
    color: #1C1C1C;
    letter-spacing: normal;
    margin: 0 0 20px 0;
}
.hero-description {
    font-family: 'Funnel Display';
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: normal;
    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;
  position: relative;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.hero-info-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 200px;
    width: 200px;
    background-color: #dc6339;
    padding: 30px 30px;
    border-radius: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 140px;
    text-align: center;
}

.hero-info-badge span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 10px;
}

/* Technology Features Section */
.technology-features {
  padding: 80px 0;
  background-color: #f2f2f2;
}

.technology-features h2 {
    font-family: 'Poppins';
    font-size: 50px;
    font-weight: 600;
    line-height: 120%;
	letter-spacing: normal;
    color: #1C1C1C;
    margin-bottom: 20px;
    padding: 0 20px;
}

.features-subtitle {
    font-family: 'Funnel Display';
    margin: 0 auto 50px;
    font-size: 22px;
    color: #1C1C1C;
    line-height: 32px;
    letter-spacing: normal;
    font-weight: 400;
    padding: 0 20px;
}

.features-image {
  text-align: center;
  margin-bottom: 50px;
}

.features-image img {
  width: 1500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  max-width: 1500px;
  margin: 0 auto;
}

.feature-item {
  background-color: transparent;
  border-radius: 0;
  padding: 0 0 20px 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid #dc6339;
  position: relative;
}

.feature-content {
  flex: 1;
  padding: 0;
  margin-right: 20px;
}

.feature-content h3 {
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 12px;
    line-height: normal;
    letter-spacing: normal;
}

.feature-content p {
    font-family: 'Funnel Display';
    font-size: 18px;
    color: #1E1E1E;
    line-height: 28px;
    margin: 0;
    letter-spacing: normal;
    font-weight: 400;
}

/* Remove the old feature-icon styles */
.feature-icon {
  display: none;
}

/* Transform Spaces Section */
.transform-spaces {
  padding: 80px 0;
  background-color: #f2f2f2;
}

.transform-spaces h2 {
    font-family: 'Poppins';
    font-size: 50px;
    font-weight: 600;
    color: #333;
    margin-bottom: 50px;
    line-height: 120%;
    letter-spacing: normal;
}

.spaces-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  justify-content: space-between;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

/* Hide scrollbar for Chrome, Safari and Opera */
.spaces-grid::-webkit-scrollbar {
  display: none;
}

.space-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    flex: 0 0 245px;
    min-width: 200px;
}
.space-image {
  height: 180px;
  overflow: hidden;
  border-radius: 20px;
  margin: 15px 15px 0 15px;
}

.space-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.space-content {
  padding: 20px;
  padding-top: 15px;
}

.space-content h3 {
    font-size: 26px;
    font-weight: 400;
    color: #1C1C1C;
    margin-bottom: 12px;
    line-height: 120%;
    letter-spacing: normal;
}

.space-content p {
    font-family: 'Funnel Display';
    font-size: 16px;
    color: #1C1C1C;
    line-height: 25px;
    letter-spacing: normal;
    margin: 0;
}

/* 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: #DC6339;
  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: #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;
}

@media (max-width: 768px) {
  .testimonial {
    display: none;
  }
  .transform-spaces {
   padding: 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: center;
}

.solutions-text h2 {
    font-family: 'Poppins';
    font-size: 50px;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 40px;
    line-height: 120%;
    letter-spacing: normal;
}

.solution-item {
  background-color: transparent;
  border-radius: 0;
  padding: 0 20px 20px 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid #dc6339;
  position: relative;
  margin-bottom: 30px;
}

.solution-item:last-child {
  margin-bottom: 0;
}

.solution-content {
  flex: 1;
  margin-right: 20px;
}

.solution-content h3 {
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: normal;
    letter-spacing: normal;
}

.solution-content p {
    font-weight: 400;
    font-family: 'Funnel Display';
    font-size: 18px;
    color: #1E1E1E;
    line-height: 28px;
    letter-spacing: normal;
    margin: 0;
}

.solution-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #1c1c1c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.solution-arrow svg {
  color: #1c1c1c;
  width: 20px;
  height: 20px;
}

.solutions-images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-image-large {
  width: 100%;
}

.solution-image-large img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  padding: 0 20px;
}

/* Remove the old solution-icon styles */
.solution-icon {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .visual-solutions-hero {
    padding: 40px 0; /* Reduz o padding vertical */
  }

  .hero-content-solucoes {
    flex-direction: column; 
    gap: 20px; 
    text-align: center; 
  }

  .hero-left {
    width: 100%; /* Ocupa toda a largura */
    display: contents;
  }

  .hero-left h1 {
    order: 1;
    font-size: 32px; /* Reduz tamanho do título */
    margin-bottom: 15px;
    line-height: 1.3; /* Melhora legibilidade */
  }

  .hero-description {
    order: 1;
    font-size: 16px; /* Tamanho ideal para mobile */
    margin-bottom: 25px;
    max-width: 100%; /* Remove restrições de largura */
  }

  .hero-cta {
    order: 3;
    flex-direction: column; /* Botões em coluna */
    gap: 12px;
    width: 100%; /* Ocupa toda a largura */
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%; 
    padding: 14px 14px; 
    font-size: 18px;
  }

  .hero-right {
    width: 100%; /* Ocupa toda a largura */
    order: 2; /* Coloca a imagem acima do texto (opcional) */
  }

  .hero-image-container {
    margin: 0 auto; 
    max-width: 100%; 
  }

  .hero-info-badge {
    height: 43%;
    width: 33%;
    min-width: 100px;
    max-width: 130px;
    padding: 10px 5px;
    right: 0;
    transform: none;
    bottom: 0px;
    font-size: 0.8em;
  }

  .hero-info-badge span {
    font-size: 12px; 
    line-height: 1.2; 
  }

  .solutions-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-item {
    flex-direction: column;
    text-align: start;
    padding: 30px;
  }

  .feature-icon {
    margin: 0 auto 20px auto;
  }

  .feature-content {
    padding: 0;
  }
  .spaces-grid {
    padding: 10px 0px;
  }
  .spaces-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Ativa o efeito “carrossel que trava” */
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding: 20px 10px;
  }

  .spaces-grid::-webkit-scrollbar {
    display: none; /* esconde a barra de rolagem */
  }

  .space-card {
    flex: 0 0 80%; /* cada card ocupa 80% da tela */
    scroll-snap-align: start; /* faz o card "travar" no início da rolagem */
    border-radius: 15px;
    min-width: 260px; /* limite mínimo para não encolher demais */
  }

  .space-image {
    height: 160px;
  }

  .space-content {
    padding: 15px;
  }

  .space-content h3 {
    font-size: 20px;
  }

  .space-content p {
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
	.technology-features h2 {
    font-size: 24px;
    text-align: center;
}
  .features-subtitle {
    font-size: 18px;
    text-align: center;
}
	.transform-spaces h2 {
    font-size: 24px;
    margin-bottom: 0px;
    text-align: center;
}
	.solutions-text h2 {
    font-family: 'Poppins';
    font-size: 28px;
    text-align: start;
}
}

@media (max-width: 480px) {
  .space-card {
    margin: 0 10px;
  }

  .hero-left h1 {
    font-size: 36px;
  }
}

/* Ajustes específicos para telas entre 1200px e 1300px box laranja do hero */
@media (min-width: 1200px) and (max-width: 1300px) {
  .hero-info-badge {
    height: 180px;
    width: 180px; 
    padding: 20px 20px;
    font-size: 0.9rem;
  }
   .space-card {
    flex: 0 0 220px; 
    min-width: 200px;
  }

  .space-image {
    height: 160px; 
  }

  .space-content h3 {
    font-size: 22px; 
  }

  .space-content p {
    font-size: 15px;
    line-height: 22px;
  }
}

/* ===== Ajustes para TABLET (mantém layout desktop, reduz fontes) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 15px;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: 90%;
    line-height: 1.3;
  }

  p, a, li, span, button {
    font-size: 90%;
    line-height: 1.5;
  }

  .container {
    padding: 0 30px;
  }

  .hero-left h1 {
    font-size: 30px;
  }

  .hero-description {
    font-size: 18px;
    line-height: 28px;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    font-size: 16px;
    padding: 10px 20px;
  }

  .hero-info-badge {
    height: 180px;
    width: 180px;
    padding: 20px;
    font-size: 0.9rem;
  }

  .technology-features h2,
  .transform-spaces h2,
  .solutions-text h2 {
    font-size: 42px;
  }
  .solutions-content {
    grid-template-columns: 1fr;
  }

  .features-subtitle {
    font-size: 20px;
  }

  .feature-content h3,
  .solution-content h3 {
    font-size: 22px;
  }

  .feature-content p,
  .solution-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .space-content h3 {
    font-size: 22px;
  }

  .space-content p {
    font-size: 15px;
  }

  .testimonial-quote blockquote {
    font-size: 17px;
  }

  .testimonial-client-info h4 {
    font-size: 16px;
  }

  .testimonial-client-info p {
    font-size: 13px;
  }

  .solutions-content {
    gap: 40px;
  }

  .features-grid {
    gap: 50px 60px;
  }

  .spaces-grid {
    gap: 15px;
  }
  .hero-content-solucoes {
    display: grid;
  }
}
