/**
 * JUDÔ360 - HOME PAGE STYLES
 * Design Moderno Inspirado em WebHero
 * Layout Centralizado, Bold Typography, Clean Cards
 */

/* Importar estilos dos flip cards */
@import url('flip-cards.css');

/* ===== HERO SECTION - ESTILO WEBHERO ===== */
.hero-section {
    min-height: 100vh;
    background: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

/* Elemento decorativo de fundo sutil */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 217, 163, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Título Principal - GIGANTE e BOLD como WebHero */
.hero-title-wrapper {
    margin-bottom: 3rem;
}

.hero-subtitle {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--color-white);
    display: block;
}

.hero-title .accent {
    color: var(--color-accent);
    display: block;
}

.hero-description {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Badges de avaliação (estilo WebHero) */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.badge-item {
    text-align: center;
}

.badge-stars {
    color: var(--color-accent-secondary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.badge-rating {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CARDS SECTION - ESTILO WEBHERO ===== */
.cards-section {
    padding: 4rem 0 0;
    width: 100%;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cards Modernos - Estilo WebHero */
.access-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.access-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--color-accent);
}

/* Badge no topo do card */
.card-badge {
    background: rgba(0, 217, 163, 0.1);
    color: var(--color-accent);
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.6rem 1.3rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 2rem;
    border: 2px solid var(--color-accent);
}

/* Ícone do card */
.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.card-icon .japanese-text {
    font-family: var(--font-japanese);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Título do card - BOLD estilo WebHero */
.card-title {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.1;
}

/* Descrição do card */
.card-description {
    font-size: 1rem;
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    opacity: 0.9;
}

/* Lista de features (estilo WebHero) */
.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.card-features li {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    padding: 0.5rem 0;
    opacity: 0.85;
}

/* Botão do card */
.btn-card {
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 217, 163, 0.3);
    margin-top: auto;
}

.btn-card:hover {
    background: var(--color-accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 184, 0, 0.4);
}

.btn-card i {
    font-size: 1rem;
}

/* Cards com variações de cor harmoniosas */
.card-tecnicas .card-badge {
    background: rgba(0, 217, 163, 0.1);
    color: #00D9A3;
    border-color: #00D9A3;
}

.card-tecnicas:hover {
    border-color: #00D9A3;
    box-shadow: 0 16px 48px rgba(0, 217, 163, 0.2);
}

.card-glossario .card-badge {
    background: rgba(255, 184, 0, 0.1);
    color: #FFB800;
    border-color: #FFB800;
}

.card-glossario:hover {
    border-color: #FFB800;
    box-shadow: 0 16px 48px rgba(255, 184, 0, 0.2);
}

.card-historia .card-badge {
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
    border-color: #9C27B0;
}

.card-historia:hover {
    border-color: #9C27B0;
    box-shadow: 0 16px 48px rgba(156, 39, 176, 0.2);
}

.card-regras .card-badge {
    background: rgba(231, 76, 60, 0.1);
    color: #E74C3C;
    border-color: #E74C3C;
}

.card-regras:hover {
    border-color: #E74C3C;
    box-shadow: 0 16px 48px rgba(231, 76, 60, 0.2);
}

.card-sobre .card-badge {
    background: rgba(123, 167, 204, 0.1);
    color: #7BA7CC;
    border-color: #7BA7CC;
}

.card-sobre:hover {
    border-color: #7BA7CC;
    box-shadow: 0 16px 48px rgba(123, 167, 204, 0.2);
}

/* Botão LOGIN no Hero - Sólido e Moderno */
.btn-login-hero {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    white-space: nowrap;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-login-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 163, 0.2);
    border-color: var(--color-accent);
}

.btn-hero {
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    white-space: nowrap;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 217, 163, 0.3);
}

.btn-hero:hover {
    background: var(--color-accent-secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(255, 184, 0, 0.4);
}

/* ===== RESPONSIVE ===== */

/* Fix global para mobile - prevenir barras laterais */
@media (max-width: 768px) {
    .hero-section,
    .benefits-section,
    .why-section,
    .founder-section,
    .pricing-section {
        max-width: 100vw;
        overflow-x: hidden;
        width: 100%;
    }

    .why-section::before {
        display: none;
    }
}

@media (max-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-photo {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 4% 50px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-subtext {
        font-size: 0.95rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .access-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .btn-card,
    .btn-hero,
    .btn-login-hero {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-badges {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .badge-stars {
        font-size: 1rem;
    }

    .badge-rating {
        font-size: 0.8rem;
    }

    /* Benefícios */
    .benefits-section {
        padding: 4rem 4% 3rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .benefit-icon i {
        font-size: 1.8rem;
    }

    .benefit-title {
        font-size: 1.2rem;
    }

    .benefit-description {
        font-size: 0.9rem;
    }

    /* Why Section */
    .why-section {
        padding: 4rem 4%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .why-container {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        width: 100%;
    }

    .why-content {
        text-align: center;
    }

    .why-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
        text-align: center;
    }

    .why-highlight {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .why-features {
        gap: 1.5rem;
    }

    .why-feature {
        gap: 1rem;
        text-align: left;
    }

    .why-feature-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .why-feature-icon i {
        font-size: 1.1rem;
    }

    .why-feature-content h3 {
        font-size: 1rem;
    }

    .why-feature-content p {
        font-size: 0.85rem;
    }

    .why-image {
        height: 250px;
        order: -1;
        max-width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .why-badge-container {
        width: 200px;
        height: 200px;
        max-width: 80%;
    }

    .why-badge-star {
        width: 160px;
        height: 160px;
    }

    .badge-icon {
        font-size: 1.8rem;
    }

    .badge-number {
        font-size: 1.8rem;
    }

    .badge-label {
        font-size: 0.7rem;
    }

    .badge-rings {
        display: none;
    }

    /* Fundador */
    .founder-section {
        padding: 4rem 4%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .founder-container {
        padding: 0;
        width: 100%;
    }

    .founder-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-top: 2rem;
        width: 100%;
    }

    .founder-image {
        text-align: center;
        width: 100%;
    }

    .founder-photo {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 4/5;
        margin: 0 auto;
        display: block;
    }

    .founder-info {
        text-align: center;
    }

    .founder-name {
        font-size: 1.8rem;
        text-align: center;
    }

    .founder-role {
        font-size: 1rem;
        text-align: center;
    }

    .founder-description {
        text-align: center;
    }

    .founder-description p {
        font-size: 0.95rem;
        text-align: center;
    }

    .founder-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .stat-item {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .stat-item i {
        font-size: 2rem;
    }

    /* Planos */
    .pricing-section {
        padding: 4rem 4%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .pricing-container {
        padding: 0;
        width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-top: 2rem;
        padding: 0 1rem;
        width: 100%;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .price-value {
        font-size: 3rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .btn-pricing {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .pricing-note {
        font-size: 0.9rem;
        margin-top: 2rem;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-title-large {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .section-subtitle-large {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 90px 3% 40px;
        max-width: 100vw;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-subtext {
        font-size: 0.85rem;
    }

    .card-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .btn-card,
    .btn-hero,
    .btn-login-hero {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .hero-badges {
        flex-direction: column;
        gap: 1rem;
    }

    /* Benefícios */
    .benefits-section {
        padding: 3rem 3% 2rem;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .benefit-card {
        padding: 1.5rem 1.2rem;
    }

    .benefit-title {
        font-size: 1.1rem;
    }

    /* Why */
    .why-section {
        padding: 3rem 3%;
        max-width: 100vw;
        overflow: hidden;
    }

    .why-title {
        font-size: 1.6rem;
    }

    .why-highlight {
        font-size: 1rem;
    }

    .why-image {
        height: 220px;
        max-width: 100%;
        overflow: hidden;
    }

    .why-badge-container {
        width: 180px;
        height: 180px;
        max-width: 80%;
    }

    .why-badge-star {
        width: 150px;
        height: 150px;
    }

    .badge-icon {
        font-size: 1.8rem;
    }

    .badge-number {
        font-size: 1.6rem;
    }

    .badge-label {
        font-size: 0.75rem;
    }

    .badge-rings {
        display: none;
    }

    /* Fundador */
    .founder-section {
        padding: 3rem 3%;
    }

    .founder-photo {
        max-width: 250px;
    }

    .founder-name {
        font-size: 1.6rem;
    }

    .founder-role {
        font-size: 1rem;
    }

    .founder-description p {
        font-size: 0.9rem;
    }

    /* Planos */
    .pricing-section {
        padding: 3rem 3%;
    }

    .pricing-card {
        padding: 1.5rem 1.2rem;
    }

    .pricing-title {
        font-size: 1.3rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .section-title-large {
        font-size: 1.4rem;
    }

    .section-subtitle-large {
        font-size: 0.9rem;
    }
}

/* Tela muito pequena */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
    }

    .benefit-title {
        font-size: 1rem;
    }

    .why-title {
        font-size: 1.4rem;
    }

    .founder-name {
        font-size: 1.4rem;
    }

    .pricing-title {
        font-size: 1.2rem;
    }

    .price-value {
        font-size: 2rem;
    }
}

/* Ocultar elementos antigos */
.hero-left,
.hero-right,
.diagonal-belt,
.hero-decoration {
    display: none !important;
}

/* ===== SEÇÃO BENEFÍCIOS ===== */
.benefits-section {
    background: var(--color-off-white);
    padding: 8rem 5% 6rem;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title-large {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-subtitle-large {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--color-gray-dark);
    opacity: 0.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--color-accent);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #00C793 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.benefit-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.benefit-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gray-dark);
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== SEÇÃO POR QUE JUDO360 ===== */
.why-section {
    background: var(--color-primary);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 217, 163, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@media (max-width: 768px) {
    .why-section::before {
        display: none;
    }
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.why-content {
    position: relative;
    z-index: 2;
}

.why-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.why-highlight {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-feature {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.why-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 217, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-accent);
}

.why-feature-icon i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.why-feature-content h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.why-feature-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.why-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-badge-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.why-badge-star {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.badge-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 40px rgba(255, 107, 53, 0.5));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 15px 40px rgba(255, 107, 53, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 20px 50px rgba(255, 107, 53, 0.7));
    }
}

.badge-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 3.5rem;
    color: #FFD700;
    text-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
    margin-bottom: 0.5rem;
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

.badge-number {
    display: block;
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.badge-label {
    display: block;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1.5px;
    line-height: 1.3;
    margin-top: 0.3rem;
}

.badge-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 320px;
    height: 320px;
    border-color: rgba(255, 107, 53, 0.3);
    animation: ring-pulse 4s ease-in-out infinite;
}

.ring-2 {
    width: 340px;
    height: 340px;
    border-color: rgba(247, 147, 30, 0.2);
    animation: ring-pulse 4s ease-in-out infinite 0.5s;
}

.ring-3 {
    width: 360px;
    height: 360px;
    border-color: rgba(255, 215, 0, 0.1);
    animation: ring-pulse 4s ease-in-out infinite 1s;
}

@keyframes ring-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

/* ===== SEÇÃO FUNDADOR ===== */
.founder-section {
    background: var(--color-off-white);
    padding: 8rem 5%;
    max-width: 100%;
    overflow-x: hidden;
}

.founder-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 4rem;
    width: 100%;
}

.founder-image {
    position: relative;
    width: 100%;
}

.founder-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 217, 163, 0.3);
}

.founder-name {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.founder-role {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.founder-description p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-gray-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-description strong {
    color: var(--color-primary);
    font-weight: 700;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--color-accent);
}

.stat-item strong {
    display: block;
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    opacity: 0.8;
}

/* ===== SEÇÃO PLANOS - DESIGN GLASSMORPHISM 2025 ===== */
.pricing-section {
    background: linear-gradient(135deg, #0a0f1a 0%, #111827 50%, #0d1525 100%);
    padding: 6rem 5%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 217, 163, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 217, 163, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-container {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.pricing-section .section-title-large {
    color: #ffffff;
}

.pricing-section .section-subtitle-large {
    color: rgba(255, 255, 255, 0.7);
}

/* Toggle Mensal/Anual */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0 3rem;
}

.toggle-label {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    cursor: pointer;
}

.toggle-label.active,
.toggle-label[data-period="mensal"] {
    color: #ffffff;
}

.toggle-discount {
    background: linear-gradient(135deg, #00D9A3 0%, #00B386 100%);
    color: #0a0f1a;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    margin-left: 0.3rem;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    transition: all 0.4s ease;
}

.toggle-slider::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background: linear-gradient(135deg, #00D9A3 0%, #00B386 100%);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 10px rgba(0, 217, 163, 0.4);
}

.toggle-switch input:checked + .toggle-slider {
    background: rgba(0, 217, 163, 0.15);
    border-color: rgba(0, 217, 163, 0.3);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

/* Grid de 4 Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.pricing-grid.four-cards {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards com Glassmorphism */
.pricing-card {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Efeito de glow no topo */
.card-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--card-accent, #00D9A3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Efeito de luz de fundo */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, var(--card-glow, rgba(0, 217, 163, 0.08)) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* Reflexo de luz no topo */
.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 30%,
        transparent 100%);
    pointer-events: none;
    border-radius: 24px 24px 0 0;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--card-accent, #00D9A3);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px var(--card-glow, rgba(0, 217, 163, 0.15)),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card:hover .card-glow-effect {
    opacity: 1;
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Cores por tipo de plano */
.pricing-card.gratuito {
    --card-accent: #6B7280;
    --card-glow: rgba(107, 114, 128, 0.1);
}

.pricing-card.basico {
    --card-accent: #3B82F6;
    --card-glow: rgba(59, 130, 246, 0.1);
}

.pricing-card.premium {
    --card-accent: #00D9A3;
    --card-glow: rgba(0, 217, 163, 0.12);
}

.pricing-card.familia {
    --card-accent: #8B5CF6;
    --card-glow: rgba(139, 92, 246, 0.1);
}

/* Card Featured (Premium) */
.pricing-card.featured {
    border-color: rgba(0, 217, 163, 0.3);
    background: linear-gradient(145deg,
        rgba(0, 217, 163, 0.08) 0%,
        rgba(0, 217, 163, 0.02) 100%);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

/* Badge */
.pricing-badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--card-accent, #00D9A3);
    font-family: var(--font-title);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid var(--card-accent, rgba(0, 217, 163, 0.3));
    position: relative;
    z-index: 1;
}

.featured-badge {
    background: linear-gradient(135deg, #00D9A3 0%, #00B386 100%);
    color: #0a0f1a;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 217, 163, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 217, 163, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(0, 217, 163, 0.6);
    }
}

/* Título */
.pricing-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Preço */
.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.price-currency {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.price-value {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    transition: all 0.3s ease;
}

.price-period {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    align-self: flex-end;
    margin-bottom: 0.6rem;
}

/* Descrição */
.pricing-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Features */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.35);
}

.pricing-features i {
    font-size: 0.9rem;
    width: 18px;
    flex-shrink: 0;
}

.pricing-features .fa-check {
    color: var(--card-accent, #00D9A3);
}

.pricing-features .fa-times {
    color: rgba(255, 255, 255, 0.2);
}

/* Botão */
.btn-pricing {
    background: transparent;
    color: var(--card-accent, #00D9A3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-transform: uppercase;
    border: 2px solid var(--card-accent, #00D9A3);
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-accent, #00D9A3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn-pricing:hover {
    color: #0a0f1a;
    box-shadow: 0 10px 30px var(--card-glow, rgba(0, 217, 163, 0.3));
}

.btn-pricing:hover::before {
    transform: scaleX(1);
}

.featured-btn {
    background: linear-gradient(135deg, #00D9A3 0%, #00B386 100%);
    color: #0a0f1a;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 217, 163, 0.3);
}

.featured-btn::before {
    background: #ffffff;
}

.featured-btn:hover {
    color: #00D9A3;
    box-shadow: 0 12px 35px rgba(0, 217, 163, 0.4);
}

/* Nota */
.pricing-note {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-note i {
    color: #00D9A3;
}

/* ===== PRICING RESPONSIVO ===== */
@media (max-width: 1200px) {
    .pricing-grid,
    .pricing-grid.four-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-12px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 4%;
    }

    .pricing-toggle {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .pricing-grid,
    .pricing-grid.four-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-title {
        font-size: 1.3rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .btn-pricing {
        padding: 0.9rem 1.5rem;
        font-size: 0.8rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 3rem 3%;
    }

    .pricing-card {
        padding: 1.5rem 1.2rem;
    }

    .pricing-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }

    .pricing-title {
        font-size: 1.2rem;
    }

    .price-value {
        font-size: 2.2rem;
    }

    .pricing-description {
        font-size: 0.85rem;
    }

    .toggle-discount {
        display: none;
    }
}
