* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background-color: #0a1a1a;
    color: #e0d0a0;
    line-height: 1.6;
    background-image: linear-gradient(to bottom, rgba(5, 15, 15, 0.95), rgba(10, 26, 26, 0.98));
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Adicionando/modificando estilos para o novo layout */
.hero {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.hero-image {
    max-width: 320px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    /* Removida a borda dourada para evitar duplicação */
}

.hero-content {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
}

h1 {
    color: #d4af37;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: normal;
    letter-spacing: 1px;
}

.divider {
    height: 1px;
    background-color: #d4af37;
    margin: 20px 0;
}

.highlight {
    font-style: italic;
}

/* Mantenho seu estilo original de botão CTA */
.cta-button {
    display: inline-block;
    background-color: #d4af37;
    color: #0a1a1a;
    font-size: 18px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 0;
    margin: 20px 0;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e0c050;
}

.section-title {
    color: #d4af37;
    text-align: center;
    font-size: 24px;
    margin: 40px 0 20px;
    font-weight: normal;
    letter-spacing: 1px;
}

/* Produtos */
.products {
    text-align: center;
    margin: 40px 0;
}

.product-images {
    display: flex;
    justify-content: space-around;
    margin: 40px 0 30px;  /* Aumentado o espaço superior */
    gap: 20px;  /* Adicionado espaço entre imagens */
}

.product-images img {
    width: 30%;
    max-width: 250px;
    border: 1px solid #c0a060;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.product-list {
    text-align: left;
    max-width: 80%;
    margin: 0 auto;
    list-style-type: none;
}

.product-name {
    color: #d4af37;
    font-weight: bold;
    font-size: 20px;  /* Aumentado o tamanho da fonte */
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

/* Mantendo seus estilos de lista originais */
ul {
    list-style-type: none;
    padding-left: 10px;
}

li {
    margin-bottom: 20px;  /* Aumentado o espaçamento entre itens */
    position: relative;
    padding-left: 20px;
}

li::before {
    content: "•";
    color: #a0c0c0;
    position: absolute;
    left: 0;
}

/* Restante do seu CSS original */
header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 1px solid #c0a060;
}

.logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.headline {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: normal;
    color: #d4af37;
    letter-spacing: 1px;
}

.subheadline {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: normal;
    color: #a0c0c0;
}

.content {
    padding: 40px 20px;
    position: relative;
}

.content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1000/600');
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.ebook-preview {
    display: flex;
    align-items: center;
    margin: 30px 0;
    gap: 30px;
}

.ebook-img {
    width: 280px;
    border: 1px solid #c0a060;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.price-box {
    background-color: rgba(20, 30, 30, 0.7);
    padding: 30px;
    border-radius: 3px;
    text-align: center;
    margin: 40px 0;
    border: 1px solid #c0a060;
}

.price {
    font-size: 38px;
    color: #d4af37;
    font-weight: normal;
    margin: 15px 0;
}

.original-price {
    text-decoration: line-through;
    color: #a09080;
    font-size: 20px;
}

.site-button {
    display: inline-block;
    background-color: transparent;
    color: #d4af37;
    font-size: 16px;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 0;
    margin: 10px 0;
    font-weight: normal;
    text-align: center;
    letter-spacing: 1px;
    border: 1px solid #d4af37;
    transition: all 0.3s ease;
}

.site-button:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.benefits {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.check {
    color: #a0c0c0;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
}

h2 {
    margin: 40px 0 20px;
    color: #d4af37;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 24px;
    border-bottom: 1px solid #c0a060;
    padding-bottom: 10px;
}

h3 {
    color: #a0c0c0;
    font-weight: normal;
    margin: 20px 0 10px;
    font-size: 20px;
}

footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    color: #a09080;
    border-top: 1px solid #c0a060;
    margin-top: 40px;
}

/* Responsividade para a nova estrutura */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-image {
        margin-bottom: 20px;
        max-width: 280px;
    }
    
    .hero-content {
        padding-left: 0;
    }
    
    .product-images {
        flex-direction: column;
        align-items: center;
    }
    
    .product-images img {
        width: 80%;
        max-width: 280px;
        margin-bottom: 15px;
    }
}

/* Estilos finais adicionados em 26/04 */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #001d26;
  color: #f5f5e5;
}

.content {
  max-width: 860px;
  margin: auto;
  padding: 40px 20px;
}

.section-title {
  font-size: 30px;
  color: #ae8b38;
  text-align: center;
  margin-top: 60px;
}

.divider {
  height: 2px;
  background-color: #ae8b38;
  margin: 20px auto;
}

.quote {
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin: 30px 0 10px;
}

.author {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
}

.cta-section {
  text-align: center;
  margin: 60px auto 40px;
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-button {
  background: #63d471;
  color: #000;
  font-size: 18px;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #49b85c;
}

.guarantee-box {
  background: #001d26;
  border: 1px solid #ae8b38;
  padding: 20px;
  border-radius: 8px;
  margin-top: 60px;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-banner {
  text-align: center;
  margin-top: 60px;
}

.footer {
  text-align: center;
  font-size: 14px;
  color: #999;
  margin: 80px auto 40px;
  padding: 0 20px;
}
.logo {
  background: transparent;
  color: #d4af37; /* Dourado do seu site */
  text-shadow: 
    0 0 10px rgba(212, 175, 55, 0.7),
    0 0 20px rgba(212, 175, 55, 0.5);
  border: none; /* Remove qualquer borda */
  mix-blend-mode: screen; /* Faz o texto "interagir" com o fundo */
}


.flip-container {
    perspective: 1000px;
    display: inline-block;
    width: 30%;
    max-width: 250px;
}

.flip-card {
    width: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
}

.flip-container.flipped .flip-card {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    backface-visibility: hidden;
}

.flip-front img, .flip-back img {
    width: 100%;
    max-width: 250px;
    border: 1px solid #c0a060;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotateY(180deg);
}

.flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotateY(180deg);
}

.flip-front {
    position: relative;
    z-index: 2;
}


@media (max-width: 768px) {
    .product-images {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .flip-container {
        width: 100% !important;
        max-width: 320px !important;
        margin-bottom: 30px !important;
    }
    
    .flip-front img, .flip-back img {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
    }
}

.flip-container::after {
    content: "👆 Toque aqui";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 12px;
    animation: pulse 2s infinite;
    pointer-events: none;
}

.flip-container.flipped::after {
    content: "👆 Toque para voltar";
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}


.flip-front img, .flip-back img {
    border: none !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3) !important;
}
