/* Reset e Configurações Básicas */
* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}

:root {
     --dark-bg: #0a0a0a;
     --dark-secondary: #1a1a1a;
     --dark-card: #222222;
     --orange-primary: #ff8c00;
     --orange-hover: #ffa500;
     --orange-light: #ffb347;
     --text-primary: #ffffff;
     --text-secondary: #cccccc;
     --text-muted: #999999;
}

html {
     scroll-behavior: smooth;
}

body {
     font-family: 'Roboto Mono', monospace;
     background-color: var(--dark-bg);
     color: var(--text-primary);
     line-height: 1.6;
     overflow-x: hidden;
}

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

/* Navbar */
.navbar {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     background: rgba(10, 10, 10, 0.95);
     backdrop-filter: blur(10px);
     border-bottom: 2px solid var(--orange-primary);
     z-index: 1000;
     padding: 1rem 0;
}

.nav-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
}

.logo {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 1.2rem;
     font-weight: 700;
     color: var(--orange-primary);
}

.logo svg {
     color: var(--orange-primary);
}

.logo img {
     width: 75px;
     height: 75px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid var(--orange-primary);
}

.nav-links {
     display: flex;
     list-style: none;
     gap: 2rem;
}

.nav-links a {
     color: var(--text-primary);
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
     position: relative;
}

.nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--orange-primary);
     transition: width 0.3s ease;
}

.nav-links a:hover {
     color: var(--orange-primary);
}

.nav-links a:hover::after {
     width: 100%;
}

/* Hero Section */
.hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding: 120px 0 80px;
     background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
     position: relative;
     overflow: hidden;
}

.hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 30% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
     pointer-events: none;
}

.hero .container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
     position: relative;
     z-index: 1;
}

.hero-content h1 {
     font-size: 3.5rem;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 1.5rem;
     color: var(--text-primary);
}

.hero-subtitle {
     font-size: 1.25rem;
     color: var(--text-secondary);
     margin-bottom: 2rem;
     line-height: 1.6;
}

.hero-features {
     display: flex;
     flex-wrap: wrap;
     gap: 1rem;
     margin-bottom: 2.5rem;
}

.feature-badge {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     background: var(--dark-card);
     padding: 0.75rem 1.25rem;
     border-radius: 50px;
     border: 1px solid var(--orange-primary);
     color: var(--orange-primary);
     font-weight: 500;
}

.feature-badge svg {
     flex-shrink: 0;
}

.btn-primary {
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     background: var(--orange-primary);
     color: var(--dark-bg);
     padding: 1.25rem 2.5rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     border: 2px solid var(--orange-primary);
}

.btn-primary:hover {
     background: transparent;
     color: var(--orange-primary);
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.hero-image {
     display: flex;
     justify-content: center;
     align-items: center;
}

.hero-image img {
     width: 375px;
     height: 375px;
     border-radius: 50%;
     object-fit: cover;
     box-shadow: 0 10px 40px rgba(255, 140, 0, 0.3);
     border: 3px solid var(--orange-primary);
}

.ebook-mockup {
     animation: float 3s ease-in-out infinite;
}

@keyframes float {

     0%,
     100% {
          transform: translateY(0);
     }

     50% {
          transform: translateY(-20px);
     }
}

/* Conteúdo Section */
.conteudo {
     padding: 100px 0;
     background: var(--dark-secondary);
}

.conteudo h2 {
     font-size: 2.75rem;
     text-align: center;
     margin-bottom: 1rem;
     color: var(--orange-primary);
}

.section-subtitle {
     text-align: center;
     font-size: 1.25rem;
     color: var(--text-muted);
     margin-bottom: 4rem;
}

.conteudo-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 2rem;
}

.conteudo-card {
     background: var(--dark-card);
     padding: 2.5rem;
     border-radius: 16px;
     border: 2px solid transparent;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
}

.conteudo-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: var(--orange-primary);
     transform: scaleX(0);
     transition: transform 0.3s ease;
}

.conteudo-card:hover {
     border-color: var(--orange-primary);
     transform: translateY(-5px);
     box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2);
}

.conteudo-card:hover::before {
     transform: scaleX(1);
}

.card-icon {
     width: 70px;
     height: 70px;
     background: rgba(255, 140, 0, 0.1);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
}

.card-icon svg {
     color: var(--orange-primary);
}

.conteudo-card h3 {
     font-size: 1.5rem;
     color: var(--orange-primary);
     margin-bottom: 1rem;
     font-weight: 700;
}

.conteudo-card p {
     color: var(--text-secondary);
     line-height: 1.7;
}

/* Vantagens Section */
.vantagens {
     padding: 100px 0;
     background: var(--dark-bg);
}

.vantagens h2 {
     font-size: 2.75rem;
     text-align: center;
     margin-bottom: 1rem;
     color: var(--orange-primary);
}

.vantagens-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2.5rem;
     margin-top: 3rem;
}

.vantagem-item {
     text-align: center;
     padding: 2rem;
     background: var(--dark-card);
     border-radius: 16px;
     transition: all 0.3s ease;
     border: 2px solid transparent;
}

.vantagem-item:hover {
     border-color: var(--orange-primary);
     transform: scale(1.05);
     box-shadow: 0 15px 50px rgba(255, 140, 0, 0.2);
}

.vantagem-item svg {
     color: var(--orange-primary);
     margin-bottom: 1.5rem;
}

.vantagem-item h3 {
     font-size: 1.5rem;
     color: var(--orange-primary);
     margin-bottom: 1rem;
     font-weight: 700;
}

.vantagem-item p {
     color: var(--text-secondary);
     line-height: 1.7;
}

/* CTA Section */
.cta {
     padding: 100px 0;
     background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
     position: relative;
     overflow: hidden;
}

.cta::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
     pointer-events: none;
}

.cta-content {
     text-align: center;
     max-width: 800px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
}

.cta-content h2 {
     font-size: 3rem;
     color: var(--orange-primary);
     margin-bottom: 1.5rem;
}

.cta-content p {
     font-size: 1.25rem;
     color: var(--text-secondary);
     margin-bottom: 3rem;
     line-height: 1.7;
}

.cta-buttons {
     display: flex;
     gap: 1.5rem;
     justify-content: center;
     flex-wrap: wrap;
     margin-bottom: 3rem;
}

.btn-download {
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     background: var(--orange-primary);
     color: var(--dark-bg);
     padding: 1.25rem 2.5rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     border: 2px solid var(--orange-primary);
}

.btn-download:hover {
     background: var(--orange-hover);
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.btn-preview {
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     background: transparent;
     color: var(--orange-primary);
     padding: 1.25rem 2.5rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     border: 2px solid var(--orange-primary);
}

.btn-preview:hover {
     background: var(--orange-primary);
     color: var(--dark-bg);
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.cta-features {
     display: flex;
     justify-content: center;
     gap: 3rem;
     flex-wrap: wrap;
}

.cta-features .feature {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     color: var(--text-secondary);
}

.cta-features svg {
     color: var(--orange-primary);
}

/* Footer */
.footer {
     background: var(--dark-bg);
     padding: 3rem 0;
     text-align: center;
     border-top: 2px solid var(--dark-card);
}

.footer p {
     color: var(--text-muted);
     font-size: 0.95rem;
     margin-bottom: 0.5rem;
}

.footer a {
     color: var(--orange-primary);
     text-decoration: none;
     font-weight: 600;
     transition: color 0.3s ease;
}

.footer a:hover {
     color: var(--orange-hover);
}

/* Responsive Design - Tablet */
@media (max-width: 968px) {
     .hero .container {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 3rem;
     }

     .hero {
          padding: 110px 0 60px;
     }

     .hero-content h1 {
          font-size: 2.5rem;
     }

     .hero-features {
          justify-content: center;
     }

     .hero-image img {
          width: 300px;
          height: 300px;
     }

     .logo img {
          width: 65px;
          height: 65px;
     }

     .cta-content h2 {
          font-size: 2.25rem;
     }

     .conteudo h2,
     .vantagens h2 {
          font-size: 2.25rem;
     }

     .conteudo,
     .vantagens,
     .cta {
          padding: 80px 0;
     }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
     .container {
          padding: 0 16px;
     }

     .navbar {
          padding: 0.8rem 0;
     }

     .nav-container {
          padding: 0 16px;
          flex-wrap: wrap;
          gap: 0.85rem;
     }

     .logo {
          font-size: 1rem;
          gap: 8px;
     }

     .logo img {
          width: 55px;
          height: 55px;
     }

     .nav-links {
          width: 100%;
          justify-content: flex-start;
          gap: 1.1rem;
          font-size: 0.88rem;
          flex-wrap: wrap;
     }

     .hero {
          padding: 170px 0 55px;
          min-height: auto;
     }

     .hero-content h1 {
          font-size: 2rem;
          margin-bottom: 1.2rem;
     }

     .hero-subtitle {
          font-size: 1.05rem;
          margin-bottom: 1.6rem;
     }

     .hero-features {
          gap: 0.8rem;
          margin-bottom: 2.2rem;
     }

     .feature-badge {
          padding: 0.65rem 1.1rem;
          font-size: 0.88rem;
     }

     .hero-image {
          margin-top: 2rem;
     }

     .hero-image img {
          width: 240px;
          height: 240px;
     }

     .btn-primary,
     .btn-download,
     .btn-preview {
          padding: 1.1rem 2rem;
          font-size: 0.98rem;
          width: 100%;
          max-width: 340px;
          justify-content: center;
     }

     .conteudo,
     .vantagens,
     .cta {
          padding: 65px 0;
     }

     .conteudo h2,
     .vantagens h2 {
          font-size: 1.95rem;
     }

     .section-subtitle {
          font-size: 1.05rem;
          margin-bottom: 2.8rem;
          padding: 0 12px;
     }

     .conteudo-grid {
          grid-template-columns: 1fr;
          gap: 1.6rem;
     }

     .conteudo-card {
          padding: 1.85rem;
     }

     .conteudo-card h3 {
          font-size: 1.35rem;
     }

     .card-icon {
          width: 62px;
          height: 62px;
     }

     .card-icon svg {
          width: 34px;
          height: 34px;
     }

     .vantagens-grid {
          grid-template-columns: 1fr;
          gap: 1.6rem;
     }

     .vantagem-item {
          padding: 1.85rem;
     }

     .vantagem-item h3 {
          font-size: 1.35rem;
     }

     .vantagem-item svg {
          width: 42px;
          height: 42px;
     }

     .cta-content h2 {
          font-size: 1.95rem;
          margin-bottom: 1.2rem;
     }

     .cta-content p {
          font-size: 1.05rem;
          margin-bottom: 2.2rem;
          padding: 0 12px;
     }

     .cta-buttons {
          flex-direction: column;
          align-items: center;
          gap: 1.2rem;
     }

     .cta-features {
          gap: 1.6rem;
          flex-direction: column;
          align-items: center;
     }

     .footer {
          padding: 2.2rem 0;
     }
}

/* Responsive Design - Mobile Pequeno */
@media (max-width: 480px) {
     .container {
          padding: 0 14px;
     }

     .navbar {
          padding: 0.7rem 0;
     }

     .nav-container {
          padding: 0 14px;
          gap: 0.7rem;
     }

     .logo {
          font-size: 0.92rem;
          gap: 7px;
     }

     .logo img {
          width: 48px;
          height: 48px;
     }

     .nav-links {
          gap: 0.85rem;
          font-size: 0.78rem;
     }

     .hero {
          padding: 155px 0 45px;
     }

     .hero-content h1 {
          font-size: 1.8rem;
          line-height: 1.35;
     }

     .hero-subtitle {
          font-size: 0.98rem;
     }

     .hero-image img {
          width: 200px;
          height: 200px;
     }

     .feature-badge {
          padding: 0.55rem 0.9rem;
          font-size: 0.82rem;
     }

     .btn-primary,
     .btn-download,
     .btn-preview {
          padding: 0.95rem 1.6rem;
          font-size: 0.92rem;
          gap: 0.6rem;
     }

     .btn-primary svg,
     .btn-download svg,
     .btn-preview svg {
          width: 19px;
          height: 19px;
     }

     .conteudo,
     .vantagens,
     .cta {
          padding: 55px 0;
     }

     .conteudo h2,
     .vantagens h2 {
          font-size: 1.7rem;
     }

     .section-subtitle {
          font-size: 0.98rem;
          margin-bottom: 2.2rem;
     }

     .conteudo-card,
     .vantagem-item {
          padding: 1.6rem;
     }

     .conteudo-card h3,
     .vantagem-item h3 {
          font-size: 1.25rem;
     }

     .conteudo-card p,
     .vantagem-item p {
          font-size: 0.92rem;
     }

     .card-icon {
          width: 58px;
          height: 58px;
     }

     .card-icon svg {
          width: 30px;
          height: 30px;
     }

     .vantagem-item svg {
          width: 38px;
          height: 38px;
     }

     .cta-content h2 {
          font-size: 1.7rem;
     }

     .cta-content p {
          font-size: 0.98rem;
     }

     .cta-features .feature {
          font-size: 0.92rem;
     }

     .footer p {
          font-size: 0.88rem;
     }
}

/* Responsive Design - Mobile Muito Pequeno */
@media (max-width: 360px) {
     .container {
          padding: 0 12px;
     }

     .navbar {
          padding: 0.65rem 0;
     }

     .nav-container {
          padding: 0 12px;
          gap: 0.6rem;
     }

     .logo {
          font-size: 0.88rem;
     }

     .logo img {
          width: 42px;
          height: 42px;
     }

     .nav-links {
          gap: 0.7rem;
          font-size: 0.72rem;
     }

     .hero {
          padding: 145px 0 40px;
     }

     .hero-content h1 {
          font-size: 1.6rem;
     }

     .hero-subtitle {
          font-size: 0.92rem;
     }

     .hero-image img {
          width: 180px;
          height: 180px;
     }

     .feature-badge {
          padding: 0.5rem 0.8rem;
          font-size: 0.78rem;
     }

     .conteudo h2,
     .vantagens h2,
     .cta-content h2 {
          font-size: 1.55rem;
     }

     .conteudo-card,
     .vantagem-item {
          padding: 1.4rem;
     }

     .conteudo-card h3,
     .vantagem-item h3 {
          font-size: 1.15rem;
     }
}




/* CTA Section - Estilos Aprimorados */

/* Bloco de Contato Direto */
.cta-contact-box {
     background: var(--dark-card);
     padding: 3rem;
     border-radius: 20px;
     border: 2px solid var(--orange-primary);
     margin-bottom: 3rem;
     box-shadow: 0 10px 40px rgba(255, 140, 0, 0.15);
}

.cta-contact-box h2 {
     font-size: 2.25rem;
     color: var(--orange-primary);
     margin-bottom: 1rem;
     text-align: center;
}

.contact-description {
     text-align: center;
     color: var(--text-secondary);
     font-size: 1.1rem;
     margin-bottom: 2rem;
}

.formats-price {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 2rem;
     margin-bottom: 2.5rem;
     padding: 1.5rem;
     background: rgba(255, 140, 0, 0.05);
     border-radius: 12px;
}

.formats {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
}

.format-badge {
     background: var(--dark-bg);
     color: var(--orange-primary);
     padding: 0.6rem 1.2rem;
     border-radius: 8px;
     font-weight: 700;
     font-size: 0.95rem;
     border: 1px solid var(--orange-primary);
}

.price-tag {
     display: flex;
     flex-direction: column;
     align-items: flex-end;
}

.price-label {
     color: var(--text-muted);
     font-size: 0.9rem;
     margin-bottom: 0.25rem;
}

.price-value {
     color: var(--orange-primary);
     font-size: 2rem;
     font-weight: 700;
}

.contact-buttons {
     display: flex;
     gap: 1.5rem;
     justify-content: center;
     flex-wrap: wrap;
}

.btn-whatsapp,
.btn-email {
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     padding: 1.25rem 2.5rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     border: 2px solid;
}

.btn-whatsapp {
     background: #25D366;
     color: #fff;
     border-color: #25D366;
}

.btn-whatsapp:hover {
     background: #20BA5A;
     border-color: #20BA5A;
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-email {
     background: transparent;
     color: var(--orange-primary);
     border-color: var(--orange-primary);
}

.btn-email:hover {
     background: var(--orange-primary);
     color: var(--dark-bg);
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

/* Separador */
.cta-divider {
     position: relative;
     text-align: center;
     margin: 3rem 0;
}

.cta-divider::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 0;
     right: 0;
     height: 1px;
     background: var(--dark-card);
}

.cta-divider span {
     position: relative;
     display: inline-block;
     padding: 0 2rem;
     background: var(--dark-secondary);
     color: var(--text-muted);
     font-weight: 700;
     font-size: 1.2rem;
}

/* Bloco de Preview */
.cta-preview-box {
     padding: 2rem 0;
}

.cta-preview-box h2 {
     font-size: 2.5rem;
     color: var(--text-primary);
     margin-bottom: 1.5rem;
}

.cta-preview-box p {
     font-size: 1.25rem;
     color: var(--text-secondary);
     margin-bottom: 3rem;
     line-height: 1.7;
}

/* Responsive - Tablet */
@media (max-width: 968px) {
     .cta-contact-box {
          padding: 2.5rem;
     }

     .cta-contact-box h2 {
          font-size: 2rem;
     }

     .formats-price {
          justify-content: center;
          text-align: center;
     }

     .price-tag {
          align-items: center;
     }

     .price-value {
          font-size: 1.75rem;
     }

     .cta-preview-box h2 {
          font-size: 2.25rem;
     }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
     .cta-contact-box {
          padding: 2rem 1.5rem;
     }

     .cta-contact-box h2 {
          font-size: 1.75rem;
     }

     .contact-description {
          font-size: 1rem;
     }

     .formats-price {
          flex-direction: column;
          gap: 1.5rem;
          padding: 1.25rem;
     }

     .formats {
          justify-content: center;
     }

     .format-badge {
          padding: 0.5rem 1rem;
          font-size: 0.9rem;
     }

     .price-tag {
          width: 100%;
          align-items: center;
     }

     .price-value {
          font-size: 1.5rem;
     }

     .contact-buttons {
          flex-direction: column;
          gap: 1rem;
     }

     .btn-whatsapp,
     .btn-email {
          width: 100%;
          max-width: 340px;
          justify-content: center;
          padding: 1.1rem 2rem;
          font-size: 1rem;
     }

     .cta-divider {
          margin: 2.5rem 0;
     }

     .cta-divider span {
          padding: 0 1.5rem;
          font-size: 1rem;
     }

     .cta-preview-box h2 {
          font-size: 1.95rem;
     }

     .cta-preview-box p {
          font-size: 1.05rem;
          margin-bottom: 2.2rem;
     }
}

/* Responsive - Mobile Pequeno */
@media (max-width: 480px) {
     .cta-contact-box {
          padding: 1.75rem 1.25rem;
     }

     .cta-contact-box h2 {
          font-size: 1.5rem;
     }

     .contact-description {
          font-size: 0.95rem;
     }

     .formats-price {
          padding: 1rem;
     }

     .format-badge {
          padding: 0.45rem 0.85rem;
          font-size: 0.85rem;
     }

     .price-label {
          font-size: 0.85rem;
     }

     .price-value {
          font-size: 1.35rem;
     }

     .btn-whatsapp,
     .btn-email {
          padding: 0.95rem 1.6rem;
          font-size: 0.92rem;
     }

     .cta-preview-box h2 {
          font-size: 1.7rem;
     }

     .cta-preview-box p {
          font-size: 0.98rem;
     }
}

/* Responsive - Mobile Muito Pequeno */
@media (max-width: 360px) {
     .cta-contact-box {
          padding: 1.5rem 1rem;
     }

     .cta-contact-box h2 {
          font-size: 1.35rem;
     }

     .price-value {
          font-size: 1.25rem;
     }

     .cta-preview-box h2 {
          font-size: 1.55rem;
     }
}