/* 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;
  }
}

/* Cybersecurity Hero Section */
.cyber-hero .hero-wrapper {
  position: relative;
  width: 100%;
  max-width: 1317px;
  margin: 2rem auto;
  overflow: hidden;
}

/* Imagem de fundo */
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================================
   Overlay com flex para layout
   ================================= */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  z-index: 2;
}

/* ================================
   Botão “Solicite um Orçamento”
   ================================= */
.hero-badge {
  position: absolute;
  top: 0;
  left: 0.5rem; 
  width: 130px;
  height: 150px;
  display: flex; 
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 20px; /* cantos arredondados iguais ao mockup */
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  cursor: pointer;
  z-index: 3;
}

.hero-badge:hover {
  background: #333;
}

/* ================================
   Texto principal
   ================================= */
.hero-text {
  position: absolute;
  top: 80%; 
  left: 2%; 
  max-width: 50%; 
  transform: translateY(-50%); 
}

/* Mantém o estilo do H1 */
.hero-text h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  line-height: 64px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 5rem;
}
/* ================================
   Caixa laranja de informação
   ================================= */
.hero-info-box {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 414px;
  width: 32%;
  height: 42%;
  padding: 20px;
  border-radius: 15px;
  background: #dc6339;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-info-box p {
  color: white;
  font-size: 20px;
  line-height: 141%;
  margin: 5px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

/* ================================
   Oculta eventuais .hero-square
   ================================= */
.hero-square {
  display: none;
}
/* 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: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 120%;
}

.subtitle {
  font-size: 16px;
  color: #666;
  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: 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-mobile {
  gap: 10px;
  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-mobile:hover {
  background-color: #e2e2e2;
  color: #333;
  transform: translateY(-2px);
}

.secondary-text {
  gap: 10px;
  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;
  transform: translateY(-2px);
}
.cta-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
}

@media (min-width: 1024px) {
  .mobile-container {
    display: none !important;
  }
}

/* ================================
   Responsivo (<900px)
   ================================= */
@media (max-width: 900px) {
  .cyber-hero {
    display: none;
  }
}
/* Why Choose Section */
.why-choose-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
  padding-top: 50px;
}

.why-choose-header-grid h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
  margin: 0;
}

.why-choose-header-grid p {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.why-choose-grid-pairs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.feature-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #dc6339;
}

.feature-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.feature-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.feature-item ul {
  padding-left: 20px;
  margin: 0;
  list-style: disc;
}

.feature-item li {
  font-size: 18px;
  margin-bottom: 6px;
  line-height: 30px;
}
.cta-card {
  background-color: #dc6339;
  padding: 20px 30px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-height: 100%;
}

.cta-button {
  font-size: 32px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.cta-arrow {
  font-size: 24px;
  font-weight: 400;
  margin-left: auto;
}

/* Security Features Section */
.security-features {
  background-color: #f2f2f2;
  padding: 80px 0;
}

.features-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.features-header-grid h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 132%;
  margin: 0;
}

.features-header-grid p {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.features-table {
  border: 2px solid #dc6339;
  border-radius: 16px;
  overflow: hidden;
  font-size: 15px;
}

/* Cabeçalho */
.table-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  font-weight: 600;
  border-bottom: 2px solid #dc6339;
}

.header-item {
  padding: 16px 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

/* Adiciona linha vertical entre as colunas no cabeçalho */
.header-item:first-child {
  border-right: 2px solid #dc6339;
}

/* Linhas da tabela */
.table-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid #dc6339;
}

/* Células */
.table-cell {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
}

/* Adiciona linha vertical entre as colunas nas linhas */
.table-cell:first-child {
  border-right: 1px solid #dc6339;
}

.table-cell p {
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

/* Products Section */
.products-section {
  padding: 4rem 0;
  background-color: #f2f2f2;
}

/* GRID fixo com 3 cards sempre lado a lado */
.products-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;       /* mantém os 3 na mesma linha */
  justify-content: center;
  width: 100%;
  overflow: hidden;        /* impede de passar da tela */
}

/* CARD flexível */
.product-card {
  flex: 1;                 /* cada card ocupa 1/3 do espaço */
  min-width: 0;            /* permite encolher sem quebrar */
  max-width: 400px;        /* tamanho máximo */
  perspective: 1500px;
  position: relative;
}

/* wrapper do flip */
.product-inner {
  width: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  min-height: 430px;
}

.product-card.open .product-inner {
  transform: rotateY(180deg);
}

/* FRONT & BACK */
.product-front,
.product-back {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 450px;
  backface-visibility: hidden;
  top: 0;
  left: 0;
  border-radius: 20px;
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

/* FRONT */
.product-front {
  background-color: #dc6339;
  z-index: 2;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.product-content {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0px;
}

.product-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-align: start;
}

/* BACK */
.product-back {
  background-color: #fff;
  transform: rotateY(180deg);
  color: #333;
}

.product-back h3 {
  font-size: clamp(16px, 1.6vw, 20px);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #dc6339;
  display: flex;
  justify-content: space-between;
}

.product-back ul li {
  font-size: clamp(14px, 1.4vw, 16px);
}

/* ícones */
.arrow-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #FFF;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.arrow-icon-wrapper.dark {
  border-color: #1c1c1c;
  color: #1c1c1c;
}

.arrow-icon-wrapper.dark svg {
  transform: rotate(80deg);
}


/* 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, #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;
}

/* Protect Future Section */
.protect-future {
  background-color: #f2f2f2;
  padding: 4rem 0;
}

.protect-future-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.protect-future-text {
  flex: 1;
  max-width: 600px;
}

.protect-future-text h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 1.5rem;
}

.protect-future-text p {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 2rem;
}

.protect-future-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #dc6339;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2rem;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: #e2e2e2;
  color: #333;
}

.btn-secondary {
  background-color: #e2e2e2;
  color: #1c1c1c;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: 0.3s ease;
  border: none;
}

.btn-secondary:hover {
  background-color: #dc6339;
  color: white;
}

.protect-future-image {
  flex: 1;
  max-width: 500px;
}

/* Imagem com border-radius em todos os cantos */
.protect-future-image .future-image {
  object-fit: cover;
  border-radius: 2.5rem; 
 
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .header-container {
    gap: 15px;
    height: auto;
    padding: 15px 20px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .cyber-hero {
    display: none;
  }

  .hero-left h1 {
    font-size: 28px;
  }
  .mobile-container {
    padding: 15px;
  }

  .main-title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 18px;
    color: #1c1c1c;
    line-height: 120%;
  }

  .overlay-card {
    bottom: 10px;
    right: 10px;
    padding: 12px 16px;
    min-width: 120px;
  }

  .overlay-text {
    font-size: 13px;
  }
  .why-choose h2,
  .security-features h2 {
    font-size: 28px;
  }

  .table-header,
  .table-row {
    grid-template-columns: 1fr;
  }

  .table-cell:first-child {
    border-right: none;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
  }

  .table-cell:last-child {
    padding-top: 10px;
  }
  .why-choose-header-grid {
    grid-template-columns: 1fr; /* força apenas uma coluna */
    gap: 30px; /* reduz o espaçamento se quiseres */
    text-align: center; /* opcional: para centralizar o conteúdo */
  }

  .why-choose-header-grid h2 {
    font-size: 28px; /* opcional: reduzir tamanho em mobile */
  }

  .why-choose-header-grid p {
    font-size: 15px; /* opcional */
  }

  .why-choose-grid-pairs {
    grid-template-columns: 1fr; /* cada feature ocupa uma linha em mobile */
    gap: 30px;
  }

  .cta-card {
    display: none;
  }
  .protect-future-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .protect-future-text,
  .protect-future-image {
    max-width: 100%;
    flex: none;
    width: 100%;
  }

  .protect-future-text h2 {
    font-size: 32px;
    line-height: 120%;
  }

  .protect-future-text p {
    font-size: 18px;
    line-height: 120%;
  }

  .protect-future-buttons {
    justify-content: center;
  }
  .testimonial {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-logo-social {
    flex-direction: column;
    gap: 20px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 5px;
  }

  .footer-links a:not(:last-child):after {
    display: none;
  }
  .container {
  margin: 0 auto;
  padding: 0 20px;
}
.feature-item h3 {
  font-size: 22px;
}
.feature-item p {
  font-size: 16px;
}
.feature-item ul li {
  font-size: 18px;
}
.features-header-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.features-header-grid p {
  font-size: 18px;
}
.features-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}
.features-grid .feature-card {
  padding: 20px;
}
.features-grid .feature-card h3 {
  font-size: 20px;
}
.features-grid .feature-card p {
  font-size: 16px;
}
/* Carrousel cards overflow */
 .products-grid {
  grid-template-columns: 1fr;
  gap: 20px;
 }

}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-left h1 {
    font-size: 24px;
  }

  .hero-info-box {
    padding: 20px;
  }

  .feature-item {
    padding: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {

  /* Base */
  body, p {
    font-size: 15px;
    line-height: 1.6;
  }

  h1 { font-size: 40px; }
  h2 { font-size: 34px; }
  h3 { font-size: 24px; }
  h4, h5, h6 { font-size: 18px; }

  .container {
    padding: 0 40px;
    max-width: 1200px;
  }

  /* Hero Section */
  .hero-text h1 {
    font-size: 42px;
    line-height: 1.3;
  }
  .hero-info-box p {
    font-size: 18px;
  }

  /* Why Choose Section */
  .why-choose-header-grid h2 {
    font-size: 42px;
  }
  .why-choose-header-grid p {
    font-size: 18px;
  }
  .feature-item h3 {
    font-size: 20px;
  }
  .feature-item li {
    font-size: 16px;
  }

  /* Security Features */
  .features-header-grid h2 {
    font-size: 36px;
  }
  .features-header-grid p {
    font-size: 18px;
  }
  .header-item {
    font-size: 20px;
  }
  .table-cell p {
    font-size: 15px;
  }

  /* Products Section */
  .product-card {
    width: 320px;
  }
  .product-content h3 {
    font-size: 18px;
  }
  .product-back h3 {
    font-size: 20px;
  }
  .product-back ul li {
    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;
  }

  /* Protect Future */
  .protect-future-text h2 {
    font-size: 30px;
  }
  .protect-future-text p {
    font-size: 16px;
    line-height: 120%;
  }
  .btn-primary, .btn-secondary {
    font-size: 16px;
    padding: 12px 24px;
  }

  /* CTA Card */
  .cta-card {
    padding: 25px;
  }
  .cta-button {
    font-size: 28px;
  }

  /* Ajustes gerais */
  section {
    padding: 60px 0;
  }
  
}