
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Hanken Grotesk', sans-serif;
}
/* BASE NAVBAR */

/* ============================
   BLOCO PSL (Problema → Solução)
   ============================ */

.psl {
  background: #0b0b0c;
  color: #F8F8FF;
  padding: 80px 20px;
  font-family: 'Hanken Grotesk', sans-serif;
}

.psl__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.psl h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin: 0 0 24px;
  font-weight: 700;
  text-align: center;
}

.psl__pain {
  display: grid;
  gap: 10px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.psl__pain li {
  display: flex;
  align-items: flex-start;       /* better for multi-line items */
  gap: 8px;
  justify-content: flex-start;   /* avoid odd spacing on narrow widths */
}


.psl__split {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 1fr;
}

.psl__solution,
.psl__proof {
  background: #121214;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 24px;
}

.psl__solution h3 {
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.psl__solution ul {
  margin: 16px 0 20px;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.psl__risk {
  opacity: 0.9;
  margin: 0 0 20px;
  font-size: 0.95rem;
}

.psl__cta {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(to right, #6681da, #3547d4);
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  text-align: center;
}

.psl__cta:hover {
  box-shadow: 0 10px 18px -6px rgba(97, 118, 238, 0.5);
  transform: translateY(-1px);
}

.psl__proof .psl__case {
  background: #0d0d0f;
  border: 1px solid #1f1f26;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.psl__quote {
  margin: 0 0 14px;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
}

.psl__quote cite {
  display: block;
  opacity: 0.8;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.9rem;
}

.psl__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.psl__badges span {
  background: #0d0d0f;
  border: 1px solid #1f1f26;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}



.navbar {
  background-color: #F8F8FF;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  width: 100%;
  align-items: center;
  display: flex;
  
  padding: 0px 0px;
  z-index: 1000;
}

.navbar-container {
  width: 100%;

  padding: 10px 80px;
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  align-items: center;
  
}


.btn-card{
  width: 300px;
  height: 36px;;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  background: linear-gradient( to right,#6681da,#3547d4);
  box-shadow: 0 20px 30px -7px rgba(97, 118, 238, 0.5);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin: 12px auto; 
  text-decoration: none;
  font-family: 'Hanken Grotesk', sans-serif;
}

.service-price-btn a{
  text-decoration: none;
  color: #F8F8FF;
  padding: 10px 20px;
  
}

.service-price-btn {
  display: column;
  justify-content: space-between;
  align-items: center
}

.service-price-btn {
  display: column;
  justify-content: space-between;
  align-items: center;
}

.btn-card:hover {
  box-shadow: none;
  transform: translate(0px, 2.2px);
}

.btn-card:active {
  transform: scale(0.96) translate(0px, 3.2px);
}


button,
a {
  transition: all 0.2s ease;
}


html {
  scroll-behavior: smooth;
}

.hero-text{
    text-align: center;
    align-content: center;
    font-size: 1.5rem;
    padding: 0px 16px 8px 10px;
    font-weight: 600;
    height: 140px;
    color: #F8F8FF;
    
}

.hero-text h1{
    padding-bottom: 10px;
    
}

.hero-highlight{
    color: #b2ffbe;
}


.cta-button {
  font-size: 1rem;
  min-height: 44px; /* Padrão recomendado para acessibilidade */
}


.service-card img{
    display: block;
    margin: 0 auto;
}



/* LOGO LEFT */
.logo {
  font-size: 1.25rem;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 800;
  padding-left: 1%;
  color: #111;
}

/* NAV LINKS RIGHT */
.navbar-links {
  display: flex;
  align-self: start;
  align-items: center;
  gap: 20px; /* Ax;espaço entre o menu e o botão */
  
}

.menu {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  
  
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  
  
}

.menu li a:hover {
  color: #0077cc;
}

.cta-button {
  background-color: #000000;
  color: white;
  padding: 10px 25px;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
  
}

.cta-button:hover {
  background-color: #005fa3;
}



.hero{
    height: 800px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(rgba(11, 11, 12, 0), rgb(11, 11, 12)),  url('IMG/MONTANHAS1OPT.webp');
    filter: blur(0.3px);
    background-size:cover;
    background-position: 0% 80% ;
    background-repeat: no-repeat;
    color: #F8F8FF;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}


.hero-container{
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-around;
    align-items: center;

}

.hero-button{
    background-color: #F8F8FF;
    color: #00030E;
    padding: 1% 1%;
    width: 25%;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
    border-radius: 3px;
    align-items: center;
    display: block;

}

.hero-button:hover{
    background-color: #005fa3;
    color: #F8F8FF;
}

.features-wrapper {
  display: flex;
  align-items: center;
  background: #0b0b0c;
  padding: 80px 20px;
  justify-content: center;
}

.features-wrapper h2{
    text-align: center;
}


.feature__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  max-width: 1100px;
  width: 100%;
}

.feature__title {
    font-family: 'Hanken Grotesk', sans-serif;
    color: #F8F8FF;
    font-size: 2rem;
    padding: 0px 0px 18px 0px;
    align-items: flex-start;
    font-weight: 700;
    
}

.feature__description {
    
    color: #F8F8FF;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
    display: grid;
}




.service{
    
    background: #0b0b0c;
    #background: linear-gradient(180deg,rgba(25, 27, 34, 1) 0%, rgba(2, 2, 4, 1) 90%);
    display: grid;
    padding: 80px 20px;
    justify-content: space-around;
    align-content: center;
    align-items: center;
    
}

.service-card {
  flex: 0 0 300px;   
  background-color: #F8F8FF;
  color: #000;
  border-radius: 4px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.518);
  width: 100%;
  min-width: 420px;
  height: 455px;
  display: grid;
  row-gap: 20px;
  font-family: 'Hanken Grotesk', sans-serif;
  
  
}

.service-card:hover {
  background-color: #e6e6f0;
  color: #000000;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.518);
  display: grid;
  font-family: 'Hanken Grotesk', sans-serif;
  
}


.service-title{
    text-align: center;
    align-content: center;
    font-size: 1rem;
    font-weight: 600;
    height: 50px;
    
}

.service-title h2{
    color: #00030E;
    text-align: center;
    align-content: center;
    font-size: 1.65rem;
    font-weight: 600;
    
    
}


.service-description li {
    color: #000;
    
    padding: 0px 10px 8px 10px;
    font-size: 0.9rem;
    display: grid;
    text-align: left;   
    font-weight: 500;
    
}

.service-items p {
    padding-top: 12px;
    font-size: 0.8rem;
    text-align: center;   
    font-weight: 500;
    padding-bottom: 6px;
}

.service-card button{
    background-color: #F8F8FF;
    color: #000;
    padding: 10px 2px;
    border-radius: 2px;
    justify-content: center;
    font-weight: 700;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.service-card button:hover{
    background-color: #005fa3;
    color: #F8F8FF;

}

.service-wrapper {
  display: flex;
  flex-direction: row;   /* lay out cards left → right */
  flex-wrap: nowrap;     /* never wrap onto a new line */
  gap: 40px;             /* space between cards */
  overflow-x: auto;      /* horizontal scroll if they don’t fit */
  padding-bottom: 10px;  /* give some breathing room under the scroll bar */
}

.service-description{
  height: 140px;
  width: auto;
  display: flex;
  align-items: center;
}



.form {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
 
  background: linear-gradient(#00030E, rgba(44, 44, 44, 0.241)),  url('IMG/CASTELO2OPT.webp');
  background-size: cover;
  background-position: center;
  font-family: 'Hanken Grotesk', sans-serif;
  color: #fff;
  padding: 100px 20px;
}

.form-wrapper {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
}



.form-structure {
  display: flex;
  flex-direction: column;
  gap: 20px;
  
}

.small-form, .big-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #F8F8FF;
  font-size: 1.08rem;
}

input, textarea {
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 1.08rem;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(207, 207, 207, 0.24);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
  background-color: rgba(0, 0, 0, 0.071);
  outline: none;
  box-shadow: 0 0 0 2px #fff;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button[type="submit"] {
  align-self: center;
  margin-top: 20px;
  background-color: #ffffff;
  color: #000;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  padding: 10px 20px;
  width: 240px;
  height: 50px;
  align-items: center;
  display: block;
  font-weight: 600;
}

button[type="submit"]:hover {
  color: #005fa3;
}




.btn-grad {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: black;            
    box-shadow: 0 0 20px #49494941;
    border-radius: 10px;
    display: block;
}

.btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: white;
    text-decoration: none;
    box-shadow: 0 0 15px #eeeeeecc;
}
         
/* 1. Make each card a self-contained column that expands */
.feature__item {
  text-align: center;
  color: #F8F8FF;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.02);
}

.feature__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

@media (max-width: 1500px) {
  .features-wrapper {
    display: flex;
    justify-content: space-around;
    position: relative;
    text-align: center;
    position: relative;
    flex-direction: row ;
  }
  
  .service-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    
    gap: 5%;
  }
  .service-items {
    flex: 0 0 30%; /* Each card takes 80% of the screen */
    scroll-snap-align: start;
    border-radius: 8px;
  }
}


/* RESPONSIVE (Add this if you need mobile support) */
@media (max-width: 790px) {
  .navbar-container {
    align-items: center;
  }

.feature__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}


  .service-description li {
    font-size: 1rem;
  }

  .menu {
    display: none;
  }

  .features-wrapper {
        display: flex;
        justify-content: space-between;
        position: relative;
        text-align: left;
        position: relative;
        flex-direction: row ;
      }

  .service-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    gap: 10%;
  }
  .service-items {
    flex: 0 0 80%; /* Each card takes 80% of the screen */
    scroll-snap-align: start;
    border-radius: 8px;
    max-width: 400px;  
  }

    .feature__container {
        flex: 1;
    }
}

@media (max-width: 600px) {
  .hero-text h1 {
    padding-bottom: 24px;
}

.psl {
    padding: 48px 12px;
  }
  .psl h2 {
    font-size: clamp(20px, 5.5vw, 26px);
    margin-bottom: 18px;
  }
  .psl__pain {
    gap: 8px;
    margin-bottom: 28px;
    font-size: 0.98rem;
  }
  .psl__solution h3 {
    font-size: 1.2rem;
  }
  .psl__solution ul {
    gap: 8px;
    margin: 12px 0 16px;
    padding-left: 18px;
  }
  .psl__quote,
  .psl__proof .psl__case {
    font-size: 0.92rem;
  }
  .psl__badges {
    gap: 8px;
  }
  .psl__badges span {
    padding: 6px 10px;
    font-size: 0.78rem;
  }

.service-description li{
  font-size: 1rem;
  line-height: 19px;
}

  .hero-text {
    font-size: 1rem;
    padding: 0px 10px;
    height: auto;
    text-align: center;

  }

  .hero-button {
    width: 40%;
    padding: 10px;
  }

  .hero {
    height: 750px;
    padding: 60px 10px;
    background-position: center center;
    align-items: flex-start;
    padding-top: 300px;
  }

  .features-wrapper {
    flex-direction: column;
    padding: 1rem;
    gap: 40px;
    align-items: center;
   
  }

  .features-wrapper h2{
    text-align: center;
    font-size: 1.2rem;
  }

  .feature__container {
    gap: 40px;
  }

  .feature__title {
    font-size: 1.25rem;
    padding: 12px 5px;
    text-align: center;
  }

.feature__description {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}


  .service-wrapper {
    
    gap: 10%;
    padding: 0;
  }

  .service {
    height: auto;
    padding: 60px 10px;
  }

  .service-card {
    height: 440px;
    max-width: 100%;
    padding: 20px;
    min-width: 300px;
    min-height: 440px;
    font-size: 1.1rem;
  }

  .service-title h2 {
    font-size: 1.4rem;
    padding: 0;
  }

  .form-wrapper {
    padding: 20px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .navbar-container {
    padding: 10px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 1rem;
    padding-left: 0;
    margin-right: 10px;
  }

  .cta-button {
    font-size: 0.85rem;
    border-radius: 2px;
    align-items: center;
    justify-content: center;

  }
}

@media (max-width: 406px) {
  .hero-text{
    font-size: 0.95rem;
  }
}



@media (max-width: 900px) {
  .service-card{ min-width: 320px; max-width: 100%; }
  .psl {
    padding: 64px 16px;
  }
  .psl__wrap {
    padding: 0 12px;
  }
  .psl__split {
    grid-template-columns: 1fr;   /* stack columns */
    gap: 20px;
  }
  .psl__solution,
  .psl__proof {
    padding: 18px;
  }
  .psl__risk {
    font-size: 0.9rem;
  }
  .psl__cta {
    width: 100%;                  /* easier to tap */
    padding: 14px 18px;
    font-size: 1rem;
  }
}

.hero{ min-height: 70vh; height: auto; }
@media (max-width:600px){ .hero{ min-height: 65vh; padding-top: 24vh; } }

@media (max-width: 900px){ .navbar-container{ padding:10px 20px; } }

@media (max-width: 900px){ .hero-button{ width: 60%; min-height:44px; } }
@media (max-width: 600px){ .hero-button{ width: 100%; } }

section, .psl, .features-wrapper, .service, .form{ scroll-margin-top: 72px; }

.hero{ filter:none; }

@media (max-width: 600px){
  html{ font-size: 15.5px; } /* ~97% */
}


@media (max-width: 600px){
  .form{ min-height:auto; padding:60px 16px; }
  .form-wrapper{ padding:24px; }
}


@media (max-width: 900px){
  .psl__pain{ gap: 12px; }
  .psl__cta{ width:100%; }
}

