/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #111111;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header e Navegação */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav a:hover {
    color: #FFC300;
    transform: translateY(-2px);
}

.cta-nav {
    background: #0077FF !important;
    color: #FFFFFF !important;
    font-weight: 700;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: #FFC300 !important;
    color: #111111 !important;
    transform: translateY(-2px) scale(1.05);
}

/* Seções principais */
main {
    margin-top: 80px;
}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 119, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #0077FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFC300;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    white-space: nowrap;
    overflow: visible;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Botões CTA */
.cta-main, .cta-secondary {
    display: inline-block;
    background: #0077FF;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 1rem auto;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-main::before, .cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-main:hover::before, .cta-secondary:hover::before {
    left: 100%;
}

.cta-main:hover, .cta-secondary:hover {
    background: #FFC300;
    color: #111111;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 195, 0, 0.3);
}

.cta-main {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Grids e Cards */
.problemas-grid, .aprendizado-grid, .bonus-grid, .depoimentos-grid {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

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

.aprendizado-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bonus-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.depoimentos-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Estilos dos Cards */
.problema-card, .aprendizado-card, .bonus-card, .depoimento-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.problema-card::before, .aprendizado-card::before, .bonus-card::before, .depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0077FF, #FFC300);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problema-card:hover::before, .aprendizado-card:hover::before, .bonus-card:hover::before, .depoimento-card:hover::before {
    transform: scaleX(1);
}

.problema-card:hover, .aprendizado-card:hover, .bonus-card:hover, .depoimento-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 119, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 119, 255, 0.1);
}

.problema-card h4, .aprendizado-card h4 {
    color: #FF6D01;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.bonus-card {
    text-align: center;
    background: rgba(0, 119, 255, 0.1);
    border-color: rgba(0, 119, 255, 0.3);
}

.depoimento-card {
    background: rgba(255, 195, 0, 0.1);
    border-color: rgba(255, 195, 0, 0.3);
}

.depoimento-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.depoimento-card span {
    color: #FFC300;
    font-weight: 700;
}

/* Títulos das seções */
h3 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #1A73E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Elementos especiais */
.chamada-acao {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF6D01;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 109, 1, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 109, 1, 0.3);
}

.destaque {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF6D01;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 109, 1, 0.1);
    border-radius: 10px;
    border-left: 4px solid #FF6D01;
}

/* Seção de chamada final */
#chamada-final {
    text-align: center;
    background: linear-gradient(135deg, #1A73E8 0%, #0F1419 100%);
    border-radius: 20px;
    margin: 4rem auto;
    position: relative;
    overflow: hidden;
}

#chamada-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 195, 0, 0.1) 0%, transparent 70%);
}

#chamada-final > * {
    position: relative;
    z-index: 2;
}

#chamada-final h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

#chamada-final p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 1.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

/* Botão WhatsApp fixo */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-fixed img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.whatsapp-fixed {
    animation: pulse 2s infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    header {
        padding: 0.5rem 0;
    }
    
    main {
        margin-top: 200px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .problemas-grid, .aprendizado-grid, .bonus-grid, .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problema-card, .aprendizado-card, .bonus-card, .depoimento-card {
        padding: 1.5rem;
    }
    
    .cta-main, .cta-secondary {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .cta-main {
        font-size: 1.1rem;
        padding: 1.1rem 2.5rem;
    }
    
    .whatsapp-fixed {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-fixed img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    #chamada-final h3 {
        font-size: 1.5rem;
    }
    
    .chamada-acao {
        font-size: 1.2rem;
        padding: 1rem;
    }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Estados de foco para acessibilidade */
a:focus, button:focus {
    outline: 2px solid #FFC300;
    outline-offset: 2px;
}

/* Otimizações de performance */
.problema-card, .aprendizado-card, .bonus-card, .depoimento-card {
    will-change: transform;
}

.cta-main, .cta-secondary, .whatsapp-fixed {
    will-change: transform;
}


/* Seção Sobre José Garcia */
#sobre-jose {
    background: linear-gradient(135deg, #1A2332 0%, #0F1419 100%);
    border-radius: 20px;
    margin: 4rem auto;
    position: relative;
    overflow: hidden;
}

#sobre-jose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(26, 115, 232, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.sobre-jose-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.sobre-jose-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.destaque-jose {
    background: rgba(255, 109, 1, 0.1);
    border-left: 4px solid #FF6D01;
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-style: italic;
    color: #FF6D01 !important;
}

/* Estilos para nova seção de problemas */
.problema-intro {
    font-size: 1.3rem;
    color: #FF6D01;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.problema-texto {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Responsividade para seção sobre José */
@media (max-width: 768px) {
    .sobre-jose-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .destaque-jose {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .problema-intro {
        font-size: 1.1rem;
    }
    
    .problema-texto {
        font-size: 1rem;
    }
}
