
    

/* =============================================
   GERADOR DE CV — style.css
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #0e0e12;
  --surface:   #16161d;
  --border:    rgba(255,255,255,0.07);
  --text:      #f0eee8;
  --muted:     #888690;
  --accent:    #e63946;
  --accent2:   #f4a261;
  --radius:    18px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
}

.header-cv {
           color: white; padding: 15px 30px; display: flex;
          justify-content: space-between;  align-items: center;  flex-wrap: wrap;
            background: none;
        }
    
        .header-cv .logo-area { display: flex; align-items: center;
        }
    
        .header-cv .logo-area img { height: 50px; margin-right: 10px;}
    
        .header-cv .logo-area h1 {font-size: 1.6rem; 
            font-family: var(--font-head); font-weight: 900; color: var(--text);
        }
    
        .header-cv nav {display: flex;gap: 18px;flex-wrap: wrap;}
    
        @media (max-width: 768px) {
          .header-cv {
            flex-direction: column;
            align-items: flex-start;
          }
    
          .header-cv nav {
            margin-top: 10px;
            flex-direction: column;
            gap: 10px;
            text-align: center;
            width: 100%;
          }
        }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 100px 40px 80px;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(230,57,70,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(244,162,97,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(230,57,70,0.35);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 900px;
  margin: 0 auto;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ── GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ── CARD (é um <a>) ── */
.card {
  display: flex;
  flex-direction: column;
  
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.30s cubic-bezier(.22,.68,0,1.2),
              box-shadow 0.30s ease,
              border-color 0.25s ease;
  cursor: pointer;
  
  justify-content: center;
  align-items: center;
  
}

.card h2{
    color: var(--text);
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 20px;
    background-color: #000000;
    padding: 4px 20px;
    
}
.card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(230,57,70,0.4);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(230,57,70,0.15);
}

.card--accent:hover {
  border-color: rgba(244,162,97,0.45);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(244,162,97,0.2);
}


/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 28px;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content {
  animation: fadeUp 0.7s ease both;
}

.card {
  animation: fadeUp 0.55s ease both;
}


/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 70px 24px 56px; }
  .container { padding: 0 10px 60px; }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .banner-to-informa .parte-codigo{width: 90%; display: none;}
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .cards-grid a{
    width: 100%;
    
}
}


.cards-grid a{
    width: 100%;
    height: 500px;
    
}

.cards-grid a:nth-of-type(1){
    background-image: url('../img/cv1.jpg') ; 
}
.cards-grid a:nth-of-type(2){
    background-image: url('../img/cv2.png') ; 
}

.cards-grid a:nth-of-type(3){
    background-image: url('../img/cv3.png') ; 
}

.cards-grid a:nth-of-type(4){
    background-image: url('../img/cv4.png') ; 
}

.cards-grid a:nth-of-type(5){
    background-image: url('../img/pagos/cv6.png') ; 
 
}

.cards-grid a:nth-of-type(6){
    background-image: url('../img/cv7a.png') ; 

}


.cards-grid a:nth-of-type(7){
    background-image: url('../img/cv8a.png') ; 

}
.cards-grid a:nth-of-type(8){
    background-image: url('../img/cv9a.png') ; 
 
}

.cards-grid a:nth-of-type(9){
    background-image: url('../img/cv10a.png') ; 
}

.cards-grid a:nth-of-type(10){
    background-image: url('../img/cv11a.png') ; 
}

.cards-grid a:nth-of-type(11){
        background-image: url('../img/cv12a.png') ; 
}

.cards-grid a:nth-of-type(12){
    background-image: url('../img/cv13a.png') ; 
 
}


.cards-grid a:nth-of-type(13){
   background-image: url('../img/pagos/cv11.png');
 
}.cards-grid a:nth-of-type(14){
   background-image: url('../img/pagos/cv10.png');
 
}.cards-grid a:nth-of-type(15){
 background-image: url('../img/pagos/cv9.png');
 
}.cards-grid a:nth-of-type(16){
   background-image: url('../img/pagos/cv13.png');
 
}.cards-grid a:nth-of-type(17){
background-image: url('../img/pagos/cv14.png')
 
}.cards-grid a:nth-of-type(18){
background-image: url('../img/pagos/cv15.png');
 
}.cards-grid a:nth-of-type(19){
 background-image: url('../img/pagos/cv16.png');
 
}.cards-grid a:nth-of-type(20){
background-image: url('../img/pagos/cv17.png');
 
}.cards-grid a:nth-of-type(21){
background-image: url('../img/pagos/cv18.png');
 
}



.paid-section {
    padding: 60px 20px;
    background: #ffffff;
}

.paid-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.paid-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #000000;
}

.intro {
    color: #000000;
    margin-bottom: 40px;
}

/* COMPARAÇÃO */
.comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.box {
    padding: 20px;
    border-radius: 12px;
    text-align: left;
}

.box h3 {
    margin-bottom: 10px;
}

.box ul {
    list-style: none;
}

.box li {
    margin-bottom: 8px;
}

/* FREE */
.free {
    background: #000000;
}

/* PAID */
.paid {
    background: #1eec70;
}

/* BENEFÍCIOS */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit {
    background: #e63946;
    padding: 20px;
    border-radius: 10px;
}

/* PREÇO */
.price-box {
    background: #007BFF;
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.price {
    font-size: 32px;
    font-weight: bold;
}

.offer {
    margin-top: 10px;
}

/* URGÊNCIA */
.urgency {
    color: #d80000;
    font-weight: bold;
    margin-bottom: 20px;
}

/* CTA */
.btn-buy {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.2s;
}

.btn-buy:hover {
    background: #1e7e34;
}



.banner-to-informa{width: 100%; background: rgba(0, 0, 0, 0.11);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px); 
     height: 100vh; position: fixed; top: 0; left: 0; justify-content: center; align-items: center; z-index: 1000;
     display: flex; flex-direction: column;
  }
.banner-to-informa .parte-codigo{display: flex; flex-direction: column; 
  align-items: center; background-color: #ffffff; padding: 30px 40px; border-radius: 12px;
width: 500px;  color: #000; justify-content: center; 
}
.banner-to-informa .parte-codigo .group{display: flex; flex-direction: column; width: 100%; }
.banner-to-informa input{border: 2px solid #ccc;}
.banner-to-informa button, .banner-to-informa input{padding: 10px 20px; border-radius: 8px; font-size: 16px;

}
.banner-to-informa h2{color: #000000; font-size: 1.5rem; margin-bottom: 15px;}
.banner-to-informa label{font-weight: 600;
}
.banner-to-informa button{background-color: blue; color: white;  
  cursor: pointer; transition: 0.2s;  border: none;
  margin-top: 16px; font-weight: 600;
}
.banner-to-informa button:hover{background-color: #030a47;}

.banner-to-informa .infor{color: red; font-weight: 600;}

@media (max-width: 768px) {

  .banner-to-informa .parte-codigo{width: 96%;}
}


