/* Reset e Estilos Base - Mantém consistência com a home */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.border-test {
  border: solid 1px red;
}

body {
  background-color: #f2f2f2;
}

main section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 100px;
}
@media (max-width: 1300px) and (min-width: 1200px) {
  main section {
  margin: 0 auto;
  padding: 0 20px;
}
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

section {
  padding: 60px 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
}
p {
  font-family: 'Funnel Display', sans-serif;
  color: #1c1c1c;
}
.xop-question {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
  .xop-question h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 120%;
    padding: 0 15px;
    width: 80%;
  }
  .xop-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 30px;
    width: 70%;
  }
/* Estilos de Botões - Usando a nova cor laranja */

.main-button-styles {
  border-radius: 20px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
}

.dark-button {
  color: #fff;
  background-color: #000;
}

.dark-button:hover {
  color: #fff;
  background-color: #dc6339;
}
.news-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: left;
}

.btn-primary {
  background-color: #dc6339;
  color: white;
}

.btn-primary:hover {
  background-color: #c55530;
}

.btn-secondary {
  background-color: #dc6339;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  display: block;
  width: fit-content;
  margin: 30px auto 0;
}

.btn-outline {
  border: 2px solid #dc6339;
  color: #dc6339;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #dc6339;
  color: white;
}

/* Hero Section - Seção principal da página */

.hero-image-design {
  width: 100%;
  max-width: 1307px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 50px;
  margin-top: 30px;
}

/* Container de texto centralizado */
.hero-text {
  position: absolute;
  bottom: 43px;
  left: 43px;
  color: white;
  z-index: 2;
  width: 55%;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-text h2 {
  color: white;
  font-size: 50px;
  line-height: 120%;
  font-weight: 600;
}

.highlight {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 20px;
}

/* Containers das imagens flutuantes */
.floating-container {
  position: absolute;
  bottom: 10px;
  right: 0px;
  max-width: 414px;
  width: 32%;
  height: 42%;
  padding: 40px;
  border-radius: 15px;
  background: #dc6339;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.floating-container p {
  font-size: 22px;
  line-height: 120%;
  font-weight: 500;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.floating-container-two {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 11%;
  height: 26%;
  border-radius: 12%;
  background: #1e1e1e;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.floating-container-two span {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  line-height: 120%;
  text-align: center;
  color: #fff;
}
/* Why Choose Section - Benefícios em grid */
.container img {
  display: block;
  margin-bottom: 50px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefits-grid h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
  max-width: 90%;
  margin: 30px 0;
}
.benefits-grid p {
  font-size: 18px;
  line-height: 30px;
  max-width: 100%;
  margin-top: 30px;
}

.benefit-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 20px 0;
}

.benefit-card {
  padding-bottom: 15px;
  border-bottom: 1px solid #dc6339;
}
.benefit-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
/* Card CTA especial - Destaque para orçamento */
.cta-card {
  background-color: #dc6339;
  color: white;
  display: flex;
  justify-content: space-between;
  border-radius: 15px;
  padding: 20px;
}

.cta-card h3,
.cta-card p {
  color: white;
  display: flex;
  align-items: end;
  font-size: 2rem;
}

.cta-card .button-primary {
  background: none;
  border: none;
  display: flex;
  align-items: start;
}

/* Testimonial Section - Depoimento com layout flexível */
.testimonial {
  padding: 60px 100px;
}

.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, #690207 0%, #121054 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;
  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: #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;
}

/* Technology Section - Recursos em grid flexível */
.technology-section {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.tech-features {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 2fr 1fr;
  gap: 20px;
}
.titulo-centralizado {
  color: #fff;
  text-align: left;
  font-weight: 700;
  justify-content: flex-end;
}

.tech-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.tech-content p {
  color: #666;
  line-height: 1.6;
}

.tech-image {
  flex: 1;
}

.tech-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Industries Section - Grid de indústrias */
.xopvision-industries-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 100px;
}

.xopvision-industries-title {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 60px;
  line-height: 120%;
  text-align: left;
  max-width: 825px;
}
.xopvision-industries-container p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  max-width: 785px;
  margin-bottom: 30px;
}
.xopvision-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.xopvision-industry-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
}

.xopvision-industry-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.xopvision-industry-title {
  font-size: 22px;
  line-height: 120%;
  font-weight: 500;
  margin-bottom: 20px;
}

.xopvision-industry-content {
  text-align: left;
}

.xopvision-industry-scenario,
.xopvision-industry-benefit {
  margin-bottom: 15px;
}

.xopvision-scenario-label,
.xopvision-benefit-label {
  font-weight: 700;
  color: #1c1c1c;
  display: inline;
}

.xopvision-scenario-text,
.xopvision-benefit-text {
  display: inline;
  font-size: 18px;
  line-height: 25px;
}

.xopvision-desktop-button {
  background-color: #000;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: background-color 0.3s ease;
}

.xopvision-desktop-button:hover {
  background-color: #555;
}

.xopvision-mobile-button {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .xopvision-industries-container {
    padding: 30px 0;
  }

  .xopvision-industries-title {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 20px;
  }

  .xopvision-industries-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .xopvision-industries-grid::-webkit-scrollbar {
    display: none;
  }

  .xopvision-industry-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    margin-bottom: 0;
  }

  .xopvision-industry-image {
    height: 250px;
    border-radius: 25px;
  }

  .xopvision-industry-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .xopvision-scenario-text,
  .xopvision-benefit-text {
    font-size: 15px;
  }

  .xopvision-desktop-button {
    display: none;
  }

  .xopvision-mobile-button {
    display: block;
    background-color: #dc6339;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px auto 0;
    position: relative;
    transition: background-color 0.3s ease;
  }

  .xopvision-mobile-button::after {
    content: "→";
    margin-left: 8px;
    font-size: 16px;
  }

  .xopvision-mobile-button:hover {
    background-color: #dc6339;
  }

  /* Add scroll indicator */
  .xopvision-scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 20px;
  }

  .xopvision-scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    transition: background-color 0.3s ease;
  }

  .xopvision-scroll-dot.active {
    background-color: #dc6339;
  }

main section {
 
  padding: 0 20px;
}
.testimonial {
  display: none;
}
}

/* Desktop only - hide mobile elements */
@media (min-width: 769px) {
  .xopvision-mobile-only {
    display: none;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .xopvision-industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .xopvision-industries-title {
    font-size: 36px;
  }
}

/* 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: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: normal;
  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: 105px; 
  height: 135px;
  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 {
  background-color: #dc6339;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.cta-button:hover {
  background-color: #e2e2e2;
  color: #333;
}

.secondary-text {
  background-color: #e2e2e2;
  color: black;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 280px;
}
.secondary-text:hover {
  background-color: #dc6339;
  color: white;
}
.cta-container {
  display: flex;
  justify-content: center;
  gap: 20px; 
  flex-wrap: wrap; 
}

/* Responsive Design - Adaptação para diferentes telas */
/* Hide on desktop */
@media (min-width: 1201px) {
  .mobile-container {
    display: none !important;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1200px) {
  .hero-image-design {
    display: none !important;
  }
  .content-wrapper {
    max-width: 500px;
  }

  .main-title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 18px;
  }

  .cta-button {
    max-width: 320px;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .hero-image-design {
    display: none !important;
  }
  .cta-card {
    display: none !important;
  }

  .mobile-container {
    padding: 15px;
  }

  .main-title {
    font-size: 22px;
  }

  .subtitle {
    font-size: 15px;
  }

  .overlay-card {
    bottom: 10px;
    right: 10px;
    padding: 12px 16px;
    min-width: 120px;
  }

  .overlay-text {
    font-size: 13px;
  }

  /* Benefits grid */
  .benefits-grid {
    display: flex;
    flex-direction: column;
  }
  .benefits-grid h2 {
    font-size: 27px;
    text-align: center;
    margin-bottom: 0px;
  }
  .benefits-grid p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 0px;
  }
 .xop-description{
  font-size: 18px;
  line-height: normal;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}
  .xop-question {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .section-tag {
    display: block;
    width: fit-content;
    margin-right: auto;
    text-align: center;
  }
  .xopvision-industries-container {
    padding: 30px 0;
  }

  .xopvision-industries-title {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 20px;
  }
.xopvision-industries-container p {
  font-size: 18px;
  line-height: normal;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 20px;
  width: 100%;
}
  .xopvision-industries-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .xopvision-industries-grid::-webkit-scrollbar {
    display: none;
  }

  .xopvision-industry-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    margin-bottom: 0;
  }

  .xopvision-industry-image {
    height: 250px;
    border-radius: 25px;
  }

  .xopvision-industry-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .xopvision-scenario-text,
  .xopvision-benefit-text {
    font-size: 15px;
  }

  .xopvision-desktop-button {
    display: none;
  }

  .xopvision-mobile-button {
    display: block;
    background-color: #dc6339;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px auto 0;
    position: relative;
    transition: background-color 0.3s ease;
  }

  .xopvision-mobile-button::after {
    content: "→";
    margin-left: 8px;
    font-size: 16px;
  }

  /* Add scroll indicator */
  .xopvision-scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 20px;
  }

  .xopvision-scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    transition: background-color 0.3s ease;
  }

  .xopvision-scroll-dot.active {
    background-color: #dc6339;
  }
  .xop-question h2 {
    display: inline-flex;
    max-width: 100%;
    font-size: 28px;
    padding: 0;
    text-align: center;
  }
  .xop-question p {
    display: inline-flex;
    max-width: 100%;
    text-align: center;
  }
}
/* Container principal */
.design-transformation-section {
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Conteúdo do lado esquerdo */
.content-block {
  flex: 1;
  max-width: 600px;
  padding: 20px;
}

.main-title {
  font-size: 50px;
  line-height: 120%;
  margin-bottom: 20px;
  font-weight: 600;
}

.description-paragraph {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 30px;
}

/* Container dos botões */
.action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Estilos dos botões */
.btn-style {
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.primary-btn {
  background-color: #dc6339;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.primary-btn:hover {
  background-color: #e2e2e2;
  color: #000;
}

.secondary-btn {
  background-color: #e2e2e2;
  color: #1c1c1c;
  font-family: 'Poppins', sans-serif;
}

.secondary-btn:hover {
  background-color: #dc6339;
  color: white;
}

/* Imagem do lado direito */
.visual-content {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsividade */
@media (max-width: 1024px) {
  .design-transformation-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .content-block {
    max-width: 100%;
    padding: 0;
  }

  .action-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 28px;
    font-weight: 600;
  }

  .description-paragraph {
    font-size: 18px;
    line-height: 28px;
  }

  .btn-style {
    padding: 10px 20px;
    font-size: 18px;
  }
}
/*  RESPONSIVIDADE PARA TABLET (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

  body, p {
    font-size: 16px;
    line-height: 1.6;
  }

  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  h3 { font-size: 22px; }
  h4, h5, h6 { font-size: 18px; }

  main section {
    padding: 0 30px;
  }

  .hero-text h2 {
    font-size: 30px;
    line-height: 120%;
  }

  .floating-container p {
    font-size: 18px;
  }

  .floating-container-two span {
    font-size: 16px;
  }

  .benefits-grid h2 {
    font-size: 38px;
  }

  .benefits-grid p {
    font-size: 17px;
  }

  .benefit-card h3 {
    font-size: 20px;
  }

  .cta-card h3, 
  .cta-card p {
    font-size: 26px;
  }

  .testimonial-quote blockquote {
    font-size: 17px;
    line-height: 26px;
  }

  .testimonial-client-info h4 {
    font-size: 15px;
  }

  .testimonial-client-info p {
    font-size: 13px;
  }

  .xopvision-industries-title {
    font-size: 40px;
  }

  .xopvision-industries-container p {
    font-size: 18px;
  }

  .xopvision-industry-title {
    font-size: 20px;
  }

  .xopvision-scenario-text,
  .xopvision-benefit-text {
    font-size: 16px;
  }

  .xopvision-industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .design-transformation-section {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }

  .main-title {
    font-size: 38px;
  }

  .description-paragraph {
    font-size: 18px;
    line-height: 30px;
  }

  .btn-style {
    font-size: 16px;
    padding: 10px 20px;
  }

  .primary-btn,
  .secondary-btn {
    font-size: 16px;
  }
}
