/* Variáveis de cores da paleta */
:root {
    --marrom-terroso: #8e4d3d;
    --rosa-claro: #f3d4d7;
    --rosa-medio: #ecc1cc;
    --marrom-rosado: #a96955;
    --off-white: #f7f4f1;
    --rosa-queimado: #cda5a3;
    --rosa-coral: #e49a9c;
    --marrom-escuro: #563229;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: var(--off-white);
    color: var(--marrom-escuro);
    line-height: 1.6;
}

/* Estilos gerais */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--marrom-terroso);
    font-size: 2.0rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.0rem;
    color: var(--marrom-rosado);
    text-align: center;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background-color: var(--rosa-coral);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--rosa-queimado);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--rosa-coral);
    color: var(--rosa-coral);
}

.btn-secondary:hover {
    background-color: var(--rosa-coral);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--marrom-terroso);
    text-decoration: none;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--marrom-escuro);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--rosa-coral);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--marrom-terroso);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--rosa-claro) 0%, var(--off-white) 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 50%;
}

.hero-image {
    width: 45%;
    position: relative;
}

.hero-image img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.0rem;
  color: var(--marrom-terroso);
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--marrom-rosado);
  margin-bottom: 30px;
  text-align: center;
}

/* Ajustes para mobile */
@media (max-width: 600px) {
  .hero-title {
    font-size: 1.3rem; /* ou 1.4rem se quiser ainda mais compacto */
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 15px; /* para evitar que o texto encoste nas bordas do celular */
  }
}


/* Video VSL Container */
.vsl-container {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10;
    cursor: default;
}

/* Sobre Section */
.sobre {
    background-color: white;
}

.sobre-content {
    width: 55%;
}

.sobre-image {
    width: 40%;
}

.sobre-image img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Problema-Solução Section */
.problema-solucao {
    background-color: var(--rosa-claro);
}

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

.card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    width: calc(50% - 15px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--marrom-terroso);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-list {
    list-style: none;
    margin-bottom: 20px;
}

.card-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.card-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.problema-list li:before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23a96955"><path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"/></svg>');
}

.solucao-list li:before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%238e4d3d"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>');
}

/* Como Funciona Section */
.como-funciona {
    background-color: white;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step {
    width: calc(33.33% - 20px);
    text-align: center;
    padding: 20px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--rosa-medio);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--marrom-terroso);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-image {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-image img {
    transition: transform 0.3s ease;
}

.step:hover .step-image img {
    transform: scale(1.05);
}

/* Benefícios Section */
.beneficios {
    background-color: var(--off-white);
}

.beneficios-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.beneficios-content {
    width: 55%;
}

.beneficios-image {
    width: 40%;
}

.beneficios-list {
    list-style: none;
    margin-bottom: 30px;
}

.beneficios-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.beneficios-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e49a9c"><path d="M16.59 7.58L10 14.17l-3.59-3.58L5 12l5 5 8-8zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Depoimentos Section */
.depoimentos {
    background-color: white;
}

.depoimentos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.depoimento {
    background-color: var(--off-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    width: calc(50% - 15px);
    position: relative;
}

.depoimento:before {
    content: """;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--rosa-medio);
    opacity: 0.3;
    line-height: 1;
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.depoimento-autor {
    font-weight: 700;
    color: var(--marrom-terroso);
}

.depoimento-cargo {
    font-size: 0.9rem;
    color: var(--marrom-rosado);
}

/* Oferta Section */
.oferta {
    background: linear-gradient(135deg, var(--rosa-claro) 0%, var(--off-white) 100%);
}

.oferta-container {
    text-align: center;
}

.preco-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.preco-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    width: calc(33.33% - 20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.preco-card.destaque {
    border-color: var(--rosa-coral);
    transform: translateY(-10px);
}

.preco-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.preco-card.destaque:hover {
    transform: translateY(-15px);
}

.preco-titulo {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--marrom-terroso);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.preco-valor {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--marrom-escuro);
    margin-bottom: 20px;
}

.preco-valor span {
    font-size: 1rem;
    font-weight: 400;
}

.preco-lista {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.preco-lista li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.preco-lista li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e49a9c"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.tag-popular {
    background-color: var(--rosa-coral);
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

/* CTA Final Section */
.cta-final {
    background-color: var(--marrom-terroso);
    color: white;
    text-align: center;
}

.cta-final .section-title {
    color: white;
}

.cta-final .section-subtitle {
    color: var(--rosa-claro);
}

.cta-image {
    max-width: 600px;
    margin: 0 auto 40px;
}

.garantia {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
    display: inline-block;
}

.garantia-titulo {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--marrom-escuro);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    width: calc(33.33% - 20px);
}

.footer-titulo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--rosa-claro);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--rosa-coral);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--rosa-coral);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Formulário */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--rosa-coral);
    box-shadow: 0 0 0 3px rgba(228, 154, 156, 0.3);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content, .hero-image, .sobre-content, .sobre-image, .beneficios-content, .beneficios-image {
        width: 100%;
    }

    .hero-content, .sobre-content, .beneficios-content {
        margin-bottom: 30px;
    }

    .card, .preco-card {
        width: calc(50% - 15px);
    }

    .step {
        width: calc(50% - 15px);
    }

    .footer-col {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .card, .preco-card, .depoimento {
        width: 100%;
    }

    .step {
        width: 100%;
    }

    .footer-col {
        width: 100%;
    }
}


/* Estilo elegante para links no rodapé */
footer a,
.footer a,
.footer-social-links a {
  color: #f3d4d7 !important;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 1rem;
  margin-right: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

footer a:hover,
.footer a:hover,
.footer-social-links a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}


.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}


.footer-social-links a,
.footer-social-links a:visited,
.footer-social-links a:active {
  color: var(--rosa-claro) !important;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-social-links a:hover {
  background: var(--rosa-coral);
  color: white !important;
  text-decoration: none !important;
}

html {
  scroll-behavior: smooth;
}
