/* --- RESET E GERAL --- */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
        body { background-color: #F5F8FF; color: #333; }
        img { max-width: 100%; display: block; }
        ul { list-style: none; }

        /* Variáveis de Cores (Baseadas nas imagens) */
        :root {
            --blue-gradient-start: #6BAEFA;
            --blue-gradient-end: #0C5AC8;
            --dark-blue-bg: #0057D9; /* Azul da segunda seção */
            --green-cta: #2ECC71;
            --green-cta-hover: #27ae60;
            --text-dark: #003B8E; /* Azul escuro dos títulos */
        }

        /* --- HEADER / TOPO --- */
        header {
            text-align: center;
            padding: 60px 20px 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        header h1 {
            color: var(--text-dark);
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        header p {
            color: #4A6F9B;
            font-size: 1.1rem;
            line-height: 1.5;
        }

        /* --- HERO SECTION (Card Azul com Tablet e Form) --- */
        .hero-section {
            display: flex;
            justify-content: center;
            padding: 0 20px 60px;
        }

        .hero-card {
            background: linear-gradient(180deg, var(--blue-gradient-start) 0%, var(--blue-gradient-end) 100%);
            border-radius: 20px;
            padding: 40px;
            max-width: 1100px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            box-shadow: 0 20px 40px rgba(12, 90, 200, 0.2);
        }

        /* Lado Esquerdo: Imagem do Tablet */
        .hero-image {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
        }

        .hero-image img{
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .hero-image img:hover{
            transform: scale(1.05);
            opacity: 0.9;
        }

        /* Lado Direito: Formulário */
        .hero-form {
            flex: 1;
            min-width: 300px;
            max-width: 450px;
            color: #fff;
        }

        .hero-form h2 {
            font-size: 1.25rem;
            text-align: center;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .form-group input {
            width: 100%;
            height: 45px;
            border-radius: 8px;
            border: none;
            padding: 0 15px;
            font-size: 1rem;
            outline: none;
        }

        .form-group input:focus {
            box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
        }

        .btn-cta {
            width: 100%;
            height: 50px;
            background-color: var(--green-cta);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 10px;
            transition: background 0.3s;
        }

        .btn-cta:hover {
            background-color: var(--green-cta-hover);
        }

        /* --- SEÇÃO "O QUE VOCÊ VAI ENCONTRAR" --- */
        .features-section {
            background-color: var(--dark-blue-bg);
            color: #fff;
            padding: 80px 20px;
            text-align: center;
        }

        .features-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .features-section h2 {
            font-size: 1.8rem;
            margin-bottom: 40px;
        }

        .features-list {
            text-align: left;
            margin-bottom: 40px;
        }

        .features-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.5;
        }

        .check-icon {
            background-color: var(--green-cta);
            min-width: 24px;
            height: 24px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            margin-top: 3px;
            font-size: 14px;
            font-weight: bold;
        }

        .btn-cta-secondary {
            display: inline-block;
            background-color: var(--green-cta);
            color: #fff;
            padding: 15px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: background 0.3s;
        }

        .btn-cta-secondary:hover {
            background-color: var(--green-cta-hover);
        }

        /* --- FOOTER --- */
        .footer {
            background-color: #0b2c61;
            padding: 25px 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

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

        .footer-logo {
            height: 26px;
            width: auto;
            filter: brightness(0) invert(1);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        /* Efeito hover sutil no logo */
        .footer-logo:hover {
            transform: scale(1.05);
            opacity: 0.9;
        }

        .ebook-section {
            width: 100%;
            height: 90vh;
            background: linear-gradient(135deg, #0d6efd, #0a58ca);
            display: flex;
            justify-content: center; 
            align-items: center;
            font-family: "Inter", sans-serif;
            color: white;
        }

        .ebook-section .content {
            text-align: center;
            width: 100%;
        }

        .ebook-section .row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px; /* espaço entre texto e ícone */
            margin-bottom: 50px;
        }

        .ebook-section .row h1 {
            font-size: 3rem;
            margin: 0 0 10px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
        }

        .ebook-section .text p {
            font-size: 2rem;
            margin: 0;
            width: 645px;		
        }

        .ebook-section .icon {
            width: 120px; /* ajuste conforme sua imagem */
            margin: -48px 0px 0px -15px;
            position: relative;
        }

        .ebook-section .logo {
            width: 140px;
            opacity: 0.95;
            margin: 0 auto;
        }
        
        @media (max-width: 600px) {
            .footer {
                padding: 18px 0;
            }
            .footer-logo {
                height: 22px;
            }
        }

        /* --- RESPONSIVIDADE --- */
        @media (max-width: 768px) {
            header h1 { font-size: 2rem; }
            .hero-card { flex-direction: column; padding: 30px 20px; }
            .hero-image { order: -1; /* Imagem acima do form no mobile */ }
            .features-list li { font-size: 1rem; }
			
			.ebook-section .text p {
				font-size: 1.5rem;
				margin: 0;
				width: 90%;	
				margin:0 auto;		
			}
        }