
    

/* =============================================
   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: 720px;
  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: 460px;
  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);
}

.card button {
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 20px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
     
     font-family: var( --font-head);
}

.card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #004099);
}




/* ── 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;
  }
}

@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');
 
}



.cv-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.cv-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.cv-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #000000;
}

.cv-container p {
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* GRID */
.cv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* BOX */
.cv-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.cv-box:hover {
    transform: translateY(-5px);
}

.cv-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #000000;
}

/* HIGHLIGHT */
.cv-highlight {
    background: #ffecec;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.cv-highlight h2 {
    color: #d80000;
}

/* CTA */
.cv-cta {
    background: #007BFF;
    color: #fff;
    padding: 40px 20px;
    border-radius: 12px;
}

.cv-cta h2 {
    margin-bottom: 10px;
}

.cv-cta p {
    margin-bottom: 20px;
    color: #eaeaea;
}

/* BOTÃO */
.btn-cta {
    display: inline-block;
    background: #fff;
    color: #007BFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

.btn-cta:hover {
    background: #0056b3;
    color: #fff;
}








.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: none;}
.banner-to-informa a{display: flex; flex-direction: column; align-items: center; background-color: #1eec70; padding: 30px 40px; border-radius: 12px; text-decoration: none;}
.banner-to-informa .icon{width: 60px; height: 60px; background-image: url('../icon/whatsapp.png'); background-size: cover; margin-bottom: 20px;}
.banner-to-informa h2{color: #000000; font-size: 1.5rem; margin-bottom: 15px;}
.banner-to-informa button{background-color: #28a745; color: white; padding: 10px 20px; border: none; border-radius: 8px; font-size: 16px; cursor: pointer; transition: 0.2s;}
.banner-to-informa button:hover{background-color: #1e7e34;}


.comprar-todas{display: flex; padding: 0px 10px 50px 10px; align-items: center; justify-content: center;}
.comprar-todas a{padding: 30px 20px;  background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
     
     font-family: var( --font-head); }


