/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Guardian Egyptian', 'Inter', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight-gold {
    color: #d4af37;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-no-header {
    padding: 60px 0;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

/* Ebook Real */
.hero-ebook {
    display: flex;
    justify-content: center;
}

.ebook-real {
    perspective: 1000px;
}

.ebook-cover-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: rotateY(-8deg) rotateX(3deg);
    transition: all 0.3s ease;
}

.ebook-cover-image:hover {
    transform: rotateY(-4deg) rotateX(1deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Form */
.hero-form {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.form-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: #6c757d;
    text-align: center;
    margin-bottom: 2rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: #6c757d;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.form-privacy {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 1rem;
}

/* Benefícios Section */
.beneficios {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.beneficio-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.beneficio-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.beneficio-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Sobre o Autor */
.sobre-autor {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.autor-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.autor-image {
    display: flex;
    justify-content: center;
}

.autor-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.autor-info {
    padding-top: 1rem;
}

.autor-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.autor-info h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.autor-cargo {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
}

.autor-credenciais {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.credencial-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1rem 0;
}

.credencial-icon {
    font-size: 1.8rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.credencial-item div {
    flex: 1;
}

.credencial-item strong {
    color: #2c3e50;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1.3;
}

.credencial-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.autor-quote {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #d4af37;
    font-style: italic;
    color: #2c3e50;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-final-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-beneficios {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-beneficio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cta-icon {
    color: #d4af37;
}

.cta-urgencia {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #d4af37;
    font-weight: 600;
}

.scroll-to-form {
    margin: 2rem 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Página de Agradecimento */
.obrigado-no-header {
    padding: 60px 0 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-ebook {
        order: 2;
    }
    
    .hero-form {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .ebook-cover-image {
        max-width: 250px;
        transform: none;
    }
    
    .autor-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .autor-info .section-title {
        text-align: center;
    }
    
    .autor-image {
        order: -1;
    }
    
    .autor-info {
        padding-top: 0;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-beneficios {
        flex-direction: column;
        align-items: center;
    }
    
    .obrigado-no-header {
        padding: 40px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-form {
        padding: 1.5rem;
    }
    
    .ebook-cover {
        width: 200px;
        height: 280px;
        padding: 1.5rem;
    }
    
    .ebook-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .beneficio-item {
        padding: 1.5rem;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-main {
    animation-delay: 0.4s;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ===== CUSTOMIZAÇÃO FORMULÁRIO ACTIVECAMPAIGN ===== */

/* Sobrescrever estilos do formulário ActiveCampaign para manter design atual */
#_form_5_ {
    background: white !important;
    border-radius: 15px !important;
    padding: 2.5rem !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    border: 1px solid #e9ecef !important;
    max-width: none !important;
    margin: 0 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

#_form_5_ ._form-content {
    margin: 0 !important;
    width: 100% !important;
}

/* Campos de input */
#_form_5_ input[type="text"],
#_form_5_ input[type="tel"],
#_form_5_ input[type="email"] {
    width: 100% !important;
    padding: 1rem 1.5rem !important;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: #f8f9fa !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    color: #2c3e50 !important;
    height: auto !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

#_form_5_ input[type="text"]:focus,
#_form_5_ input[type="tel"]:focus,
#_form_5_ input[type="email"]:focus {
    outline: none !important;
    border-color: #d4af37 !important;
    background: white !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

#_form_5_ input[type="text"]::placeholder,
#_form_5_ input[type="tel"]::placeholder,
#_form_5_ input[type="email"]::placeholder {
    color: #6c757d !important;
    font-size: 1rem !important;
}

/* Elementos do form */
#_form_5_ ._form_element {
    margin: 0 0 1.5rem 0 !important;
    position: relative !important;
    width: 100% !important;
    font-size: 1rem !important;
}

#_form_5_ ._form_element:last-of-type {
    margin-bottom: 0 !important;
}

/* Labels (remover se não usadas) */
#_form_5_ ._form-label {
    display: none !important;
}

/* Field wrapper */
#_form_5_ ._field-wrapper {
    position: relative !important;
    width: 100% !important;
}

/* Botão de submit */
#_form_5_ ._submit {
    background: linear-gradient(135deg, #d4af37, #f1c40f) !important;
    border: none !important;
    border-radius: 10px !important;
    color: white !important;
    cursor: pointer !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 1.25rem 2.5rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
    margin-top: 0 !important;
    -webkit-appearance: none !important;
}

#_form_5_ ._submit:hover:not(:disabled) {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
}

#_form_5_ ._submit:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

#_form_5_ ._submit.processing {
    background: linear-gradient(135deg, #d4af37, #f1c40f) !important;
    position: relative !important;
}

#_form_5_ ._submit.processing::before {
    border: double 3px transparent !important;
    border-radius: 50% !important;
    background-image: linear-gradient(#d4af37, #d4af37), conic-gradient(#d4af37, #FFFFFF) !important;
}

#_form_5_ ._submit.processing::after {
    background: linear-gradient(135deg, #d4af37, #f1c40f) !important;
}

/* Button wrapper */
#_form_5_ ._button-wrapper {
    margin: 1.5rem 0 0 0 !important;
    width: 100% !important;
}

/* Erros */
#_form_5_ input[type="text"]._has_error,
#_form_5_ input[type="tel"]._has_error,
#_form_5_ input[type="email"]._has_error {
    border-color: #e74c3c !important;
    background-color: #fdf2f2 !important;
}

#_form_5_ ._error {
    font-size: 0.875rem !important;
    margin-top: 0.5rem !important;
    color: #e74c3c !important;
    font-weight: 500 !important;
}

#_form_5_ ._error-inner {
    background-color: #fff5f5 !important;
    border: 1px solid #fed7d7 !important;
    border-radius: 8px !important;
    color: #e74c3c !important;
    font-size: 0.875rem !important;
    padding: 0.75rem !important;
    margin-top: 0.5rem !important;
}

#_form_5_ ._form_error {
    background-color: #fff5f5 !important;
    border: 1px solid #fed7d7 !important;
    border-radius: 8px !important;
    color: #e74c3c !important;
    font-size: 0.875rem !important;
    padding: 0.75rem !important;
    margin: 1rem 0 !important;
    text-align: center !important;
}

/* Mensagem de agradecimento */
#_form_5_ ._form-thank-you {
    background: #f0f9ff !important;
    border: 1px solid #bae6fd !important;
    border-radius: 10px !important;
    color: #0c4a6e !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    padding: 2rem !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Integração com telefone internacional */
#_form_5_ .iti {
    width: 100% !important;
}

#_form_5_ .iti input {
    width: 100% !important;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    padding: 1rem 1.5rem !important;
    background: #f8f9fa !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 1rem !important;
    color: #2c3e50 !important;
    height: auto !important;
}

#_form_5_ .iti input:focus {
    border-color: #d4af37 !important;
    background: white !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

#_form_5_ .iti--separate-dial-code .iti__selected-flag {
    background-color: #f8f9fa !important;
    border: 2px solid #e9ecef !important;
    border-radius: 10px 0 0 10px !important;
    border-right: none !important;
}

#_form_5_ .iti--separate-dial-code .iti__selected-flag:hover {
    background-color: white !important;
}

#_form_5_ .iti--separate-dial-code input {
    border-left: none !important;
    border-radius: 0 10px 10px 0 !important;
    padding-left: 1rem !important;
}

#_form_5_ .iti__country-list {
    border-radius: 10px !important;
    margin-top: 4px !important;
    border: 2px solid #e9ecef !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

/* Clear elements */
#_form_5_ ._clear-element {
    clear: both !important;
}

/* Branding (remover) */
#_form_5_ ._form-branding {
    display: none !important;
}

/* Responsivo para formulário */
@media (max-width: 768px) {
    #_form_5_ {
        padding: 1.5rem !important;
        border-radius: 12px !important;
    }
    
    #_form_5_ input[type="text"],
    #_form_5_ input[type="tel"],
    #_form_5_ input[type="email"] {
        padding: 0.875rem 1.25rem !important;
        font-size: 1rem !important;
    }
    
    #_form_5_ ._submit {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    #_form_5_ ._form_element {
        margin-bottom: 1.25rem !important;
    }
    
    #_form_5_ .iti__country-list {
        min-width: 300px !important;
    }
}

@media (max-width: 480px) {
    #_form_5_ {
        padding: 1.25rem !important;
        border-radius: 10px !important;
    }
    
    #_form_5_ input[type="text"],
    #_form_5_ input[type="tel"],
    #_form_5_ input[type="email"] {
        padding: 0.75rem 1rem !important;
    }
    
    #_form_5_ ._submit {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
}
