/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;  
}

.full-screen-bg {
  
  background-image: url('img/background.png');  
  background-size: cover;        
  background-position: center;    
  background-repeat: no-repeat;   
  min-height: 100vh;             
  width: 100vw;                   
  position: relative;
}

 

img {
  display: block;
  padding-right: 60px;
  
}

a {
  text-decoration: none;
}


.container {
  background-image: url('img/capa.png');  
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: flex-end;
    
}  

.fixed-img {
  
  object-fit: cover;  
  border-radius: 8px;  
  width: 100%;
}


.plano-card{
  width: 100%;
  height: 290.608px;
  object-fit: contain; 
  transition: transform .2s;
}

.plans-row {
  row-gap: 20px !important;
  column-gap: 15px !important;  
  margin-top: -20px;  

.plano-card:hover {
  transform: translateY(-8px) scale(1.20);
  cursor: pointer;
  
}

.promocoes {
  display: flex;
  margin-bottom: 90px;
  align-items: center;
  
  margin-top: 40px;
  flex-wrap: wrap; 
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  overflow-x: hidden; /* ← agora a página pode crescer verticalmente */
}

.full-screen-bg {
  background-image: url('img/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  display: flex;
}

.container {
  background-image: url('img/capa.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.promocoes {
  margin-bottom: 3.125rem;
  row-gap: 1.25rem;
}

.plano-card {
  width: 100%;
  height: auto;               
  max-width: 256px;          
  max-height: 352px;   
  object-fit: contain;
  transition: transform .25s ease;
  margin: 0 auto;
}

.plano-card:hover {
  transform: translateY(-8px);
  cursor: pointer;
}
