 ul { list-style: none }  .text-white { color: #fff } .text-brand { color: var(--brand) } .text-green { color: var(--green) } .text-gray-500 { color: var(--gray-500) } .text-gray-600 { color: var(--gray-600) } .text-gray-700 { color: var(--gray-700) } .text-white-60 { color: rgba(255, 255, 255, 0.6) } .text-white-70 { color: rgba(255, 255, 255, 0.7) } .text-white-80 { color: rgba(255, 255, 255, 0.8) } .text-white-90 { color: rgba(255, 255, 255, 0.9) } .text-yellow { color: #facc15 } .bg-white { background: var(--white) } .bg-dark { background: var(--dark) } .bg-brand { background: var(--brand) } .bg-green { background: var(--green) } .bg-gray-50 { background: var(--gray-50) } .bg-brand-faint { background: rgba(3, 69, 163, 0.05) } .border-brand-faint { border: 1px solid rgba(3, 69, 163, 0.2) }  .font-medium { font-weight: 500 } .font-semibold { font-weight: 600 } .font-black { font-weight: 800 } .text-sm { font-size: 0.875rem } .text-lg { font-size: 1.125rem } .text-xl { font-size: 1.25rem } .text-2xl { font-size: 1.5rem } .text-3xl { font-size: 1.875rem } .text-4xl { font-size: 2.25rem } .text-5xl { font-size: 3rem } .text-6xl { font-size: 3.75rem } .leading-tight { line-height: 1.2 } .leading-relaxed { line-height: 1.7 } .tracking-widest { letter-spacing: 0.15em } .uppercase { text-transform: uppercase } .italic { font-style: italic } .text-center { text-align: center } .text-left { text-align: left }  .relative { position: relative } .absolute { position: absolute } .overflow-hidden { overflow: hidden }  .inline-flex { display: inline-flex } .flex-col { flex-direction: column } .flex-wrap { flex-wrap: wrap } .items-center { align-items: center } .items-start { align-items: flex-start } .justify-center { justify-content: center } .justify-between { justify-content: space-between } .flex-1 { flex: 1 } .flex-shrink-0 { flex-shrink: 0 } .hidden { display: none }  .grid { display: grid } .grid-2 { display: grid; grid-template-columns: 1fr; gap: 0.8rem } .grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem } .grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem } .grid-bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem } @media(min-width:768px) { .grid-2 { grid-template-columns: repeat(2, 1fr) } .grid-3 { grid-template-columns: repeat(3, 1fr) } .grid-4 { grid-template-columns: repeat(2, 1fr) } .grid-bento { grid-template-columns: repeat(3, 1fr) } } @media(min-width:1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr) } }  .gap-1 { gap: 0.25rem } .gap-2 { gap: 0.5rem } .gap-3 { gap: 0.75rem } .gap-4 { gap: 1rem } .gap-5 { gap: 1.25rem } .gap-6 { gap: 1.5rem } .gap-8 { gap: 2rem } .gap-10 { gap: 2.5rem } .gap-12 { gap: 3rem }  .p-6 { padding: 1.5rem } .p-8 { padding: 2rem } .p-10 { padding: 2.5rem } .px-4 { padding-left: 1rem; padding-right: 1rem } .px-5 { padding-left: 1.25rem; padding-right: 1.25rem } .px-6 { padding-left: 1.5rem; padding-right: 1.5rem } .px-8 { padding-left: 2rem; padding-right: 2rem } .px-10 { padding-left: 2.5rem; padding-right: 2.5rem } .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem } .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem } .py-4 { padding-top: 1rem; padding-bottom: 1rem } .py-16 { padding-top: 4rem; padding-bottom: 4rem } .py-20 { padding-top: 5rem; padding-bottom: 5rem } .pt-6 { padding-top: 1.5rem } .pt-8 { padding-top: 2rem } .pb-4 { padding-bottom: 1rem } .mb-2 { margin-bottom: 0.5rem } .mb-3 { margin-bottom: 0.75rem } .mb-4 { margin-bottom: 1rem } .mb-5 { margin-bottom: 1.25rem } .mb-6 { margin-bottom: 1.5rem } .mb-8 { margin-bottom: 2rem } .mb-10 { margin-bottom: 2.5rem } .mb-12 { margin-bottom: 3rem } .mb-16 { margin-bottom: 4rem } .mt-1 { margin-top: 0.25rem } .mt-2 { margin-top: 0.5rem } .mt-4 { margin-top: 1rem } .mt-5 { margin-top: 1.25rem } .mt-6 { margin-top: 1.5rem } .mt-10 { margin-top: 2.5rem } .mx-auto { margin-left: auto; margin-right: auto } .pr-4 { padding-right: 1rem }  .w-full { width: 100% } .w-2 { width: 0.5rem } .w-3 { width: 0.75rem } .w-4 { width: 1rem } .w-5 { width: 1.25rem } .w-6 { width: 1.5rem } .w-7 { width: 1.75rem } .w-8 { width: 2rem } .w-10 { width: 2.5rem } .w-12 { width: 3rem } .w-14 { width: 3.5rem } .w-16 { width: 4rem } .h-2 { height: 0.5rem } .h-3 { height: 0.75rem } .h-4 { height: 1rem } .h-5 { height: 1.25rem } .h-6 { height: 1.5rem } .h-7 { height: 1.75rem } .h-8 { height: 2rem } .h-10 { height: 2.5rem } .h-12 { height: 3rem } .h-16 { height: 4rem } .h-40 { height: 10rem } .h-72 { height: 18rem } .min-h-screen { min-height: 100vh } .min-h-40 { min-height: 10rem } .min-h-64 { min-height: 16rem } .max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto } .max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto }  .rounded-full { border-radius: 9999px } .rounded-xl { border-radius: 0.75rem } .rounded-2xl { border-radius: 1rem} .rounded-3xl {border-radius: 1.5rem } .border { border: 1px solid var(--gray-100)} .border-t { border-top: 1px solid rgba(255, 255, 255, 0.1)} .border-2 { border-width: 2px } .border-brand { border-color: var(--brand) }  .shadow-sm { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) } .shadow-lg { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) } .shadow-2xl { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25) }  .gradient-hero { background: linear-gradient(135deg, #0345a3 0%, #0256c7 50%, #023a8a 100%) } .gradient-card { background: linear-gradient(135deg, #0345a3, #0256c7) } .text-gradient { background: linear-gradient(90deg, #10e698, #00c97a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text } .green-glow { box-shadow: 0 0 20px rgba(16, 230, 152, 0.3) } .blue-glow { box-shadow: 0 8px 32px rgba(3, 69, 163, 0.35) } .card-hover { transition: transform 0.3s ease, box-shadow 0.3s ease } .card-hover:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(3, 69, 163, 0.15) } .bento-img { background: linear-gradient(135deg, #e8f0fe, #c7d8fa); border: 2px dashed var(--brand); display: flex; align-items: center; justify-content: center; flex-direction: column } .backdrop-blur { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px) }  .badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.1); border-radius: 9999px; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500 } .pulse { width: 0.5rem; height: 0.5rem; background: var(--green); border-radius: 50%; animation: pulse 2s infinite }@keyframes pulse {0%, 100% {opacity:1} 50% {opacity: 0.5}}.stat-icon { width: 3rem; height: 3rem; background: rgba(16, 230, 152, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 1rem } .icon-box-brand { width: 3.5rem; height: 3.5rem; background: rgba(3, 69, 163, 0.1); border-radius: 1rem; display: flex; align-items: center; justify-content: center } .icon-box-green { width: 3.5rem; height: 3.5rem; background: rgba(16, 230, 152, 0.1); border-radius: 1rem; display: flex; align-items: center; justify-content: center } .icon-box-lg { width: 4rem; height: 4rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center } .icon-box-white { width: 4rem; height: 4rem; background: rgba(255, 255, 255, 0.2); border-radius: 1rem; display: flex; align-items: center; justify-content: center }.stat-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); border-radius: 1rem; padding: 1.5rem; border: 1px solid rgba(255, 255, 255, 0.2) } .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; display: inline-block; flex-shrink: 0 } .dot-brand { background: var(--brand) } .dot-green { background: var(--green) }  .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 700; border-radius: 9999px; transition: all 0.2s ease; cursor: pointer; text-align: center; white-space: nowrap; text-decoration: none } .btn-green { background: var(--green); color: var(--dark); box-shadow: 0 0 20px rgba(16, 230, 152, 0.3) } .btn-green:hover { filter: brightness(1.08) } .btn-brand { background: var(--brand); color: #fff } .btn-brand:hover { filter: brightness(1.08) } .btn-white { background: #fff; color: var(--brand) } .btn-white:hover { filter: brightness(0.96) } .btn-outline-white { border: 2px solid rgba(255, 255, 255, 0.4); color: #fff } .btn-outline-white:hover { background: rgba(255, 255, 255, 0.1) } .btn-outline-brand { border: 2px solid var(--brand); color: var(--brand) } .btn-outline-brand:hover { background: var(--brand); color: #fff } .btn-sm { padding: 0.75rem 1.25rem; font-size: 0.875rem } .btn-md { padding: 1rem 2rem; font-size: 1rem } .btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem } .btn-full { width: 100%; display: flex }  .card { background: #fff; border-radius: 1rem; padding: 2rem; border: 1px solid var(--gray-100); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) } .card-lg { background: #fff; border-radius: 1.5rem; padding: 2.5rem; border: 1px solid var(--gray-100); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) } .card-blue { background: #fff; border-radius: 1.5rem; padding: 2rem; border: 1px solid var(--gray-100) } .card-testimonial { background: var(--gray-50); border-radius: 1rem; padding: 2rem; border: 1px solid var(--gray-100) } .plan-card { background: #fff; border-radius: 1.5rem; padding: 2rem; border: 1px solid var(--gray-100); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06); display: flex; flex-direction: column } .plan-featured { border: 2px solid var(--green); position: relative } .plan-featured::before { content: 'MAS POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: #000; font-size: 11px; font-weight: 700; padding: 2px 14px; border-radius: 20px; white-space: nowrap } .plan-price { font-size: 2.5rem; font-weight: 900; color: var(--dark); line-height: 1 } .plan-price-note { color: var(--gray-500); font-size: 0.875rem; } .plan-price-installment { color: var(--brand); font-size: 0.875rem; font-weight: 500; margin-top: 0.25rem } .plan-feature { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-700); margin-bottom: 0.75rem } .plan-card-dark { background: var(--brand); border-radius: 1.5rem; padding: 2rem; display: flex; flex-direction: column }  .stars { display: flex; align-items: center; gap: 0.125rem; margin-bottom: 1rem } .star { width: 1.25rem; height: 1.25rem; fill: #facc15 }  .curriculum-item { display: flex; gap: 1.25rem; padding: 1.5rem; background: var(--gray-50); border-radius: 1rem; border: 1px solid var(--gray-100) } .curriculum-num { font-size: 2.5rem; font-weight: 900; color: rgba(3, 69, 163, 0.15); flex-shrink: 0; line-height: 1 } .curriculum-extra { background: rgba(3, 69, 163, 0.05); border: 1px solid rgba(3, 69, 163, 0.15); border-radius: 1rem; padding: 2rem } .curriculum-extra-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-700); margin-bottom: 0.5rem } .method-row { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(3, 69, 163, 0.1) } @media(min-width:640px) { .method-row { flex-direction: row } } .method-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-700) }  .faq-item { background: #fff; border-radius: 1rem; border: 1px solid var(--gray-100); overflow: hidden; margin-bottom: 1rem } .faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit } .faq-btn span { font-weight: 600; color: var(--dark); padding-right: 1rem; font-size: 1rem } .faq-icon { width: 1.25rem; height: 1.25rem; color: var(--brand); flex-shrink: 0; transition: transform 0.3s ease } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 1.5rem; color: var(--gray-600); font-size: 0.875rem; line-height: 1.7 } .faq-answer.open { max-height: 500px; padding-top: 0.75rem; padding-bottom: 1.5rem }  .hero { background: linear-gradient(135deg, #0345a3 0%, #0256c7 50%, #023a8a 100%); } .hero-bullets { margin-bottom: 2.5rem } .hero-bullet { display: flex; align-items: center; gap: 0.75rem; color: #fff; margin-bottom: 0.75rem } .hero-check { width: 1.25rem; height: 1.25rem; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0 } .hero-ctas { display: flex; flex-direction: column; gap: 1rem } @media(min-width:640px) { .hero-ctas { flex-direction: row } } .hero-quote { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; margin-top: 1.5rem; font-style: italic }  .section-label { font-size: 0.75rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.15em; display: block; margin-bottom: 0.5rem }  .impact-box { background: var(--brand); border-radius: 1.5rem; padding: 2.5rem; text-align: center }.gabriel {color: #fff!important;}.gabriel:hover {color: #10e698!important;} html {font-size: 100%} body {font-size: 16px; font-family: "Inter"} h1, h2, h3, h4, h5, h6 {font-family: "Inter"} .brxe-container {width: 1400px; padding-top: 100px; padding-right: 100px; padding-bottom: 100px; padding-left: 100px} .woocommerce main.site-main {width: 1400px} #brx-content.wordpress {width: 1400px}@media (max-width: 991px) { .brxe-container {padding-top: 80px; padding-right: 20px; padding-bottom: 80px; padding-left: 20px}}@media (max-width: 767px) { .brxe-container {padding-top: 80px; padding-right: 15px; padding-bottom: 80px; padding-left: 15px}}