/* ==================================================
   HELIO BECK - LIFESTYLE MEDICINE & NUTRITION
   Autor: Arthur Alvarenga
================================================== */

/* --- Reset e Variáveis --- */
:root {
    --primary-color: #2A9D8F;
    --secondary-color: #0B4F48;
    --text-color: #333333;
    --light-bg: #F4F9F8;
    --white: #ffffff;
    --font-main: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

#metodos, #pacotes, #lifestyle, #vitrine-blog {
    scroll-margin-top: -80px; /* Dá o respiro individual para essas seções */
}

/* --- Layout Geral --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding-top: 140px;
    padding-bottom: 100px;
}

/* --- Títulos das Seções --- */
h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* --- Header & Nav --- */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(11, 79, 72, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-link {
    display: block;
    height: 100px;
    width: 250px;
    overflow: hidden;
    position: relative;
}

.logo-img {
    height: 150px;
    width: auto;
    margin-top: -25px;
    margin-left: -20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-links {
    display: flex;
    gap: 25px;
    font-weight: 500;
}

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

.nav-btn {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-btn:hover {
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(42, 157, 143, 0.3);
}

.menu-toggle {
    display: none;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 0px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(-45deg, #0B4F48, #1a6b63, #2A9D8F, #0e524b);
    background-size: 400% 400%;
    animation: gradientBG 7s ease infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 2px);
    background-size: 40px 40px;
    animation: moveParticles 60s linear infinite;
    pointer-events: none;
    opacity: 0.7;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Botões Globais */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.4);
    transition: transform 0.3s, background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* --- SEÇÃO SOBRE MIM --- */
.sobre-section {
    padding: 80px 0;
    background-color: var(--white);
}

.sobre-container {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.sobre-content {
    flex: 1.2;
}

.sobre-image {
    flex: 0.8;
    text-align: right;
}

.sobre-image img {
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    object-fit: cover;
}

.sobre-content h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 8px;
    text-align: left;
}

.sobre-content h2::after {
    margin: 15px 0 0;
}

.sobre-subtitle {
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.sobre-content p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.pilares-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.pilar-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8fcfb;
    padding: 18px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.pilar-item:hover {
    transform: translateX(5px);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.1);
}

.pilar-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.pilar-texto h4 {
    color: var(--secondary-color);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.pilar-texto p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666;
}

/* --- SEÇÃO JORNADA --- */
.journey-section {
    background-color: var(--white);
    position: relative;
    padding-bottom: 100px;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -30px auto 50px auto;
    color: #666;
    font-size: 1.1rem;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.journey-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    z-index: 1;
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(11, 79, 72, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f8fcfb 0%, #e0f2f1 100%);
}

.journey-number {
    position: absolute;
    top: -5px;
    right: 5px;
    font-size: 7rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    z-index: -1;
    opacity: 0.03;
    transform: scale(0.9);
    transition: all 1.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.journey-card:hover .journey-number {
    opacity: 0.2;
    transform: scale(1.1);
}

.journey-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
}

.journey-card p {
    font-size: 0.95rem;
    color: #666;
    position: relative;
}

/* --- SEÇÃO TECNOLOGIA --- */
.tech-section {
    background-color: #f8fcfb;
    padding-bottom: 120px;
}

.tech-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.tech-header h2 { margin-bottom: 0; }
.tech-header .section-subtitle { margin-top: 30px; }

.tech-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.tech-text { flex: 1.2; }

.tech-text h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.tech-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 30px;
}

.tech-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tech-check {
    font-size: 1.5rem;
    background: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.15);
    flex-shrink: 0;
}

.tech-benefits-list strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.tech-benefits-list div {
    color: #666;
    font-size: 0.95rem;
}

.tech-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 20px;
}

.tech-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.tech-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(42, 157, 143, 0.3);
    z-index: 3;
    animation: floatBadge 4s ease-in-out infinite;
}

.tech-badge span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.tech-badge strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.tech-comparison-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
}

.comparison-title {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.tech-table th { background-color: #f4f9f8; }
.tech-table td:not(:first-child) { font-size: 0.95rem; }

/* --- SEÇÃO PACOTES --- */
.pricing-section {
    background-color: #f9f9f9;
    padding-bottom: 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center; 
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pricing-grid:has(.pricing-card:hover) .pricing-card:not(:hover) {
    filter: blur(4px);
    opacity: 0.6;
    transform: scale(0.98);
}

.pricing-card:hover {
    transform: scale(1.05) translateY(-10px); 
    box-shadow: 0 25px 50px rgba(11, 79, 72, 0.2); 
    border-color: var(--primary-color);
    z-index: 2; 
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.pricing-header h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.plan-duration {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-focus {
    background: var(--light-bg);
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 900;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
    color: #888;
}

.pricing-price .installments {
    display: block;
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
    margin-top: 10px;
}

.pricing-btn {
    text-align: center;
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.pricing-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.premium-pricing {
    background: var(--secondary-color); 
}

.premium-pricing .pricing-header h3,
.premium-pricing .plan-duration,
.premium-pricing .pricing-features li,
.premium-pricing .pricing-price {
    color: var(--white);
}

.premium-pricing .pricing-price .currency,
.premium-pricing .pricing-price .installments {
    color: rgba(255,255,255,0.7);
}

.premium-pricing .pricing-focus {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.premium-pricing .pricing-btn {
    border-color: var(--white);
    color: var(--white);
}

.premium-pricing .pricing-btn:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* --- CARDS SECUNDÁRIOS (Ultrassom e Ebook) --- */
.cards-secundarios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.card-ultrassom {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    border-left: 6px solid var(--secondary-color);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
}

.tag-avulso, .tag-gratis-reversa {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    align-self: flex-start;
}

.tag-avulso {
    background-color: #e8f3f1;
    color: var(--primary-color);
}

.card-ultrassom h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-ultrassom p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-ultrassom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-ultrassom-footer .preco {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.card-ultrassom-footer .moeda {
    font-size: 1rem;
    margin-top: 6px;
    color: #777;
    font-weight: 700;
}

/* E-book Destaque */
.card-ebook-destaque {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #146c63 100%);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 12px 30px rgba(11, 79, 72, 0.15);
    transition: transform 0.3s ease;
}

.card-ebook-destaque:hover {
    transform: translateY(-3px);
}

.ebook-img-wrapper {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.ebook-img-wrapper img {
    max-width: 100%;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.25));
    animation: floatBadge 6s ease-in-out infinite;
}

.ebook-info {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tag-gratis-reversa {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.card-ebook-destaque h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-ebook-destaque p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 25px;
}

/* Botões Secundários */
.btn-teal, .btn-white {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.btn-teal {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.btn-teal:hover {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 79, 72, 0.3);
}

.btn-white {
    background-color: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background-color: #e8f3f1;
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* --- TABELA COMPARATIVA --- */
.comparison-wrapper {
    margin-top: 80px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-header h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.comparison-header p {
    color: #666;
    font-size: 1.05rem;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    text-align: center;
}

.comparison-table th, 
.comparison-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--text-color);
    width: 35%;
}

.comparison-table th {
    background-color: var(--light-bg);
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table th:first-child { border-top-left-radius: 12px; }
.comparison-table th:last-child { border-top-right-radius: 12px; }

.comparison-table td {
    color: #555;
    font-size: 1rem;
}

.comparison-table tbody tr:hover {
    background-color: #fcfcfc;
}

.empty-cell {
    color: #ccc !important;
    font-weight: 300;
}

.highlight-col {
    background-color: var(--secondary-color);
    color: var(--white) !important;
}

.comparison-table th.highlight-col {
    background-color: #083d38;
    color: var(--white);
    font-size: 1.2rem;
}

.highlight-col.check-cell {
    color: #48e5d2 !important;
    font-weight: 700;
}

/* --- SEÇÃO LIFESTYLE MEDICINE --- */
.lifestyle-section {
    background-color: var(--light-bg);
    text-align: center;
}

.lifestyle-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.tag {
    display: inline-block;
    background-color: rgba(42, 157, 143, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.lifestyle-intro {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.lifestyle-intro strong {
    color: var(--secondary-color);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pillar-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
    border: 1px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(11, 79, 72, 0.1);
}

.pillar-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(42, 157, 143, 0.2));
    transition: 0.3s;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
}

.pillar-card h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.pillar-card p {
    font-size: 0.95rem;
    color: #666;
}

.lifestyle-cta p {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 300;
}

.lifestyle-cta strong {
    font-weight: 700;
    color: var(--primary-color);
}

/* --- SEÇÃO MENTORIA --- */
.mentorship-clean {
    background-color: var(--white);
    padding: 100px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.mentorship-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.mentorship-header h2 { margin-bottom: 0; }
.mentorship-header .section-subtitle {
    margin-top: 30px;
    font-size: 1.1rem;
    color: #555;
}

.mentorship-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.detail-card {
    background: #f8fcfb;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(42, 157, 143, 0.1);
}

.detail-card h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.clean-list {
    list-style: none;
    padding: 0;
}

.clean-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: #555;
    font-size: 1rem;
}

.check-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.plus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.plus-list li strong { color: var(--secondary-color); }

.mentorship-path { margin-bottom: 80px; }
.mentorship-path h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.path-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: 0.3s;
}

.path-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.path-number {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.path-item strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.path-item p {
    color: #666;
    font-size: 0.9rem;
}

.mentorship-checkout {
    display: flex;
    justify-content: center;
}

.checkout-box {
    background: var(--secondary-color);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 15px 40px rgba(11, 79, 72, 0.2);
}

.checkout-box h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 400;
}

.price-display {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

.price-display .currency, .price-display .cents { font-size: 1.8rem; }
.price-display .currency { color: var(--white); margin-right: 5px; }

.installments {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 5px;
}

.discount {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    border: none;
}

.checkout-btn:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* ========================================== */
/* VITRINE DO BLOG NA HOME                    */
/* ========================================== */
.vitrine-section {
    background-color: var(--white);
    padding-bottom: 120px;
}

.vitrine-header {
    text-align: center;
    margin-bottom: 50px;
}

.vitrine-grid {
    display: grid;
    /* Divide em exatas 3 colunas no desktop */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.vitrine-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vitrine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(11, 79, 72, 0.1);
    border-color: rgba(42, 157, 143, 0.3);
}

.vitrine-img {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Uma linhazinha sutil para separar a foto do texto */
}

.vitrine-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vitrine-card:hover .vitrine-img img {
    transform: scale(1.08);
}

.vitrine-cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.vitrine-content {
    padding: 20px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vitrine-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
}

.vitrine-content h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s;
}

.vitrine-card:hover .vitrine-content h3 {
    color: var(--primary-color);
}

.vitrine-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.vitrine-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.vitrine-link .arrow {
    margin-left: 8px;
    transition: transform 0.3s;
}

.vitrine-link:hover {
    color: var(--primary-color);
}

.vitrine-link:hover .arrow {
    transform: translateX(5px);
}

.vitrine-footer {
    text-align: center;
}

/* Animação suave para a entrada dos posts */
.fade-in {
    animation: fadeInSuave 0.6s ease-out forwards;
    opacity: 0; /* Começa invisível */
}

@keyframes fadeInSuave {
    0% { 
        opacity: 0; 
        transform: translateY(20px); /* Começa um pouco mais para baixo */
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); /* Volta para a posição original */
    }
}

/* Evita que o footer pule enquanto o JavaScript busca os posts na API */
.vitrine-section {
    min-height: 70vh; /* Segura o espaço! Garante que a seção ocupe pelo menos 70% da altura do monitor */
    display: flex;
    flex-direction: column;
}

/* Empurra o footer de forma segura usando cálculo matemático */
.vitrine-section, .post-section {
    /* Pega 100% da altura da tela e subtrai o tamanho aproximado do Header e do Footer */
    min-height: calc(100vh - 250px); 
}

#grid-do-blog {
    flex-grow: 1; /* Faz a grade empurrar a paginação lá pro fundo */
}

/* Botão Vazado (Outline) para o link de ver todos */
.btn-outline-teal {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-teal:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 157, 143, 0.2);
}

/* --- SEÇÃO FAQ --- */
.faq-section {
    background-color: #fafafa;
    position: relative;
    padding-bottom: 100px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 79, 72, 0.1);
    border-color: var(--primary-color);
}

.faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-right: 30px;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
}

.faq-item::after {
    content: '?';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-main);
    color: var(--primary-color);
    opacity: 0.1;
    transition: 0.3s;
}

.faq-item:hover::after {
    opacity: 0.2;
    transform: rotate(15deg) scale(1.1);
    top: 15px;
}

/* --- BANNER INSTAGRAM --- */
.instagram-banner-section {
    padding: 40px 0 80px 0;
    background-color: var(--white);
}

.instagram-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--light-bg), #eef6f5);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(42, 157, 143, 0.1);
    gap: 30px;
    transition: transform 0.3s ease;
}

.instagram-card:hover { transform: translateY(-5px); }

.insta-icon {
    width: 60px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.insta-content { flex: 1; }
.insta-content h3 { color: var(--secondary-color); font-size: 1.5rem; margin-bottom: 8px; }
.insta-content p { color: #555; margin-bottom: 10px; }

.insta-handle {
    font-weight: 700;
    color: var(--primary-color);
    background: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.btn-insta {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.btn-insta:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* --- FOOTER --- */
footer {
    background-color: var(--secondary-color);
    color: #e0e0e0;
    padding-top: 80px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: start;
}

.brand-col { text-align: left; }

.footer-logo-text {
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.brand-mission {
    opacity: 0.8;
    margin-bottom: 25px;
    max-width: 350px;
}

.social-icons-footer a {
    color: var(--secondary-color);
    background: var(--white);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    font-weight: bold;
}

.social-icons-footer a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-col { text-align: right; }
.contact-col h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-info p { margin-bottom: 10px; color: rgba(255,255,255,0.9); }
.contact-info a {
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.contact-info a:hover { color: var(--primary-color); border-color: var(--primary-color); }
.contact-info .address { margin-top: 20px; font-size: 0.9rem; opacity: 0.7; }

.footer-bottom {
    background-color: #083d38;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links a { color: rgba(255,255,255,0.5); margin-left: 20px; }
.legal-links a:hover { color: var(--white); }

/* --- ANIMAÇÕES (KEYFRAMES) --- */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes moveParticles {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(300px, 300px) rotate(10deg); }
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* ==================================================
   RESPONSIVIDADE (MEDIA QUERIES CENTRALIZADAS)
================================================== */

/* --- TABLETS E TELAS MENORES (Até 992px) --- */
@media (max-width: 992px) {
    /* Sobre Mim */
    .sobre-container { flex-direction: column; gap: 40px; }
    .sobre-image { text-align: center; }
    .pilares-grid { grid-template-columns: 1fr; }
    
    /* Tecnologia */
    .tech-content { flex-direction: column; }
    .tech-image-wrapper { width: 100%; max-width: 500px; margin: 0 auto; }
    
    /* Cards Secundários (Ultrassom e Ebook) */
    .cards-secundarios-grid { grid-template-columns: 1fr; gap: 20px; }
    .card-ebook-destaque { flex-direction: column; text-align: center; padding: 40px 20px; }
    .ebook-info { align-items: center; }
    .tag-gratis-reversa { align-self: center; }
}

/* --- MOBILE GERAL (Até 768px) --- */
@media (max-width: 768px) {
    /* Header e Nav (Menu Hambúrguer) */
    .hero-content h1 { font-size: 2.5rem; }
    
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.8rem;
        color: var(--secondary-color);
    }
    
    .nav-links {
        position: absolute;
        top: 100px;
        right: 0;
        height: calc(100vh - 100px);
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-links li { margin: 20px 0; opacity: 0; }
    .nav-links.active { transform: translateX(0%); }
    .nav-links.active li { opacity: 1; transition: opacity 0.5s ease 0.2s; }

    /* Grids e Espaçamentos */
    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .mentorship-details { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    
    /* Tabela Comparativa */
    .comparison-wrapper { padding: 20px; margin-top: 50px; }
    .comparison-header h3 { font-size: 1.5rem; }
    
    /* Mentoria Checkout */
    .checkout-box { padding: 40px 20px; }
    .price-display { font-size: 3.5rem; }
    
    /* Banner Instagram */
    .instagram-card { flex-direction: column; text-align: center; padding: 35px 20px; }
    .insta-icon { margin-bottom: 10px; }
    .insta-action { width: 100%; margin-top: 15px; }
    .btn-insta { width: 100%; display: block; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .brand-col, .contact-col { text-align: center; }
    .brand-mission { margin: 0 auto 25px auto; }
    .bottom-container { flex-direction: column; gap: 15px; }
    .legal-links a { margin: 0 10px; }
}

/* --- MOBILE PEQUENO (Até 500px) --- */
@media (max-width: 500px) {
    .pillars-grid { grid-template-columns: 1fr; }
}