/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

/* Container Geral */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #00acaf, #f44a66);
    color: #ffffff;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('https://www.transparenttextures.com/patterns/diagmonds.png');
    opacity: 0.1;
}

header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

header p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.btn {
    background: #ffffff;
    color: #00acaf;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 2px solid #00acaf;
}

.btn:hover {
    background: #00acaf;
    color: #ffffff;
    transform: scale(1.05);
}

/* Seção Vídeo */
#video-demo {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

#video-demo h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #9e2f6b;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    padding-top: 56.25%; /* Proporção 16:9 */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Seção Benefícios */
#benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f44a66, #9e2f6b);
    color: #ffffff;
    text-align: center;
}

#benefits h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.benefits-list li {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    flex: 1 1 300px;
    border-radius: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefits-list li:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
}

/* Seção Planos */
#plans {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

#plans h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    color: #333;
}

.plan-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.plan-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 30px;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #00acaf;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.plan-card h3 {
    font-size: 2rem;
    /* margin-bottom: 10px; */
    color: #00acaf;
}

.plan-card .price {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #f44a66;
}

.btn-plan {
    background: #9e2f6b;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-plan:hover {
    background: #872255; /* Tom ligeiramente mais escuro de #9e2f6b */
    transform: scale(1.05);
}

/* Seção Garantia */
#guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #00acaf);
    text-align: center;
}

#guarantee h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #f44a66;
}

#guarantee p {
    font-size: 1.5rem;
    color: #9e2f6b;
}

/* Footer */
footer {
    background: #9e2f6b;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

/* Animações */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 3rem;
    }
    #benefits h2, #plans h2, #guarantee h2 {
        font-size: 2.5rem;
    }
    .benefits-list {
        flex-direction: column;
    }
    .plan-cards {
        flex-direction: column;
        align-items: center;
    }
}


.social-buttons {
    margin-top: 10px;
}
  
.btn-social {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
  
.whatsapp {
    background: #25d366;
}
  
.instagram {
    background: #e1306c;
}
  


/* ---------- Download Section Refresh ---------- */
#download {
  padding: 80px 0;
  background: #f5f7fa;          /* cinza bem claro para separar visualmente */
  text-align: center;
}

#download .section-title {
  font-size: 2.8rem;
  color: #00acaf;
  margin-bottom: 40px;
}

.download-wrapper {
  background: #ffffff;
  max-width: 650px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.download-wrapper .lead {
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: #555;
}

.download-btn img {
  height: 80px;                 /* badge grande, mas ainda proporcional */
  width: auto;
  transition: transform 0.25s ease;
}
.download-btn:hover img {
  transform: scale(1.05);
}

#download .features {
  list-style: none;
  padding: 0;
  margin-top: 35px;
  text-align: left;             /* alinha ticks à esquerda */
  display: inline-block;        /* mantém alinhamento central do bloco */
}

#download .features li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 12px;
  color: #555;
}

#download .features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00acaf;
  font-weight: 700;
  line-height: 1;
}

/* Mantém responsividade */
@media (max-width: 600px) {
  .download-wrapper {
    padding: 30px 20px;
  }
  #download .section-title {
    font-size: 2.2rem;
  }
}