/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Variáveis CSS */
:root {
    --gold: #D4AF37;
    --gold-light: #FFD700;
    --black: #000000;
    --dark: #1A1A1A;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-radius: 0 0 20px 20px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .nav {
        justify-content: center;
        padding: 1rem 5%;
    }
    
    .nav-logo {
        height: 60px;
    }
    
    body {
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    
    .container {
        padding: 0 5%;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero {
        padding: 6rem 5% 2rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    color: var(--black) !important;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    color: var(--black) !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat .label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.3);
}

.btn-secondary {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, var(--gray), #E0E0E0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
    box-shadow: var(--shadow);
}

/* Responsivo */
/* Barra de Navegação Mobile */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 0.75rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
    flex: 1;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
    color: var(--gold);
}

.mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: none;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .whatsapp-float {
        bottom: 85px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-text {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
    
    .hamburger {
        display: none !important;
    }
    
    body {
        padding-bottom: 0;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 5% 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .image-placeholder {
        width: 300px;
        height: 350px;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-image-mobile {
        display: block;
    }
}

/* Container Global */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Seção Sobre */
.sobre {
    padding: 6rem 0;
    background: var(--gray);
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-image {
    flex: 1;
}

.sobre-image .image-placeholder {
    width: 350px;
    height: 400px;
    border-radius: 15px;
}

.sobre-text {
    flex: 1;
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sobre-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.sobre-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.sobre-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    font-weight: 600;
    color: var(--dark);
}

.badge .icon {
    font-size: 1.2rem;
    color: var(--gold);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: var(--black);
}

.diferencial-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--gold);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.info-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.garantia-icon {
    font-size: 3rem;
    color: var(--gold);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.loading-logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s infinite;
    color: var(--gold);
}

/* Seção Benefícios */
.beneficios {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.beneficio-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.beneficio-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.beneficio-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsivo - Seções */
@media (max-width: 768px) {
    .sobre-content {
        flex-direction: column;
        text-align: center;
    }
    
    .sobre-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2,
    .sobre-text h2 {
        font-size: 2rem;
    }
}

/* Seção Metodologia */
.metodologia {
    padding: 6rem 0;
    background: var(--gray);
}

.processo-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.processo-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    transform: translateX(-50%);
}

.processo-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.processo-item:nth-child(even) {
    flex-direction: row-reverse;
}

.processo-numero {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

.processo-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 0 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.processo-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.processo-content h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.processo-content p {
    color: #666;
    line-height: 1.6;
}

/* Seção Diferenciais */
.diferenciais {
    padding: 6rem 0;
    background: var(--white);
}

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

.diferencial-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.diferencial-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.diferencial-item h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.diferencial-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsivo - Metodologia */
@media (max-width: 768px) {
    .processo-timeline::before {
        left: 40px;
    }
    
    .processo-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .processo-numero {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .processo-content {
        margin-left: 1.5rem;
        margin-right: 0;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
}

/* Seção Avaliações */
.avaliacoes {
    padding: 6rem 0;
    background: var(--gray);
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.avaliacao-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.avaliacao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.avaliacao-card::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--gold);
    font-family: serif;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.avaliacao-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
}

.cliente {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cliente-info h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.cliente-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Seção Avaliações - Estilo React */
.testimonials-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    max-height: 740px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: scrollUp var(--duration, 15s) linear infinite;
}

.testimonials-column[data-duration="15"] {
    --duration: 15s;
}

.testimonials-column[data-duration="19"] {
    --duration: 19s;
}

.testimonials-column[data-duration="17"] {
    --duration: 17s;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 320px;
    width: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--gold);
    font-family: serif;
}

.testimonial-card .stars {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.cliente {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cliente-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.cliente-info h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.cliente-info span {
    color: #666;
    font-size: 0.85rem;
}

.hidden-mobile {
    display: block;
}

.hidden-tablet {
    display: block;
}

/* Responsivo - Avaliações */
@media (max-width: 1024px) {
    .hidden-tablet {
        display: none;
    }
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
    
    .testimonials-wrapper {
        justify-content: center;
        gap: 0;
    }
    
    .testimonial-card {
        max-width: 100%;
        padding: 1.5rem;
    }
}

/* Seção Contato */
.contato {
    padding: 6rem 0;
    background: var(--white);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contato-info h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.info-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

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

.form {
    background: var(--gray);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Seção FAQ */
.faq {
    padding: 6rem 0;
    background: var(--gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--gray);
}

.faq-question h3 {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Responsivo - Contato e FAQ */
@media (max-width: 768px) {
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form {
        padding: 2rem;
    }
}

/* Seção Produtos */
.produtos {
    padding: 6rem 0;
    background: var(--white);
}

.produtos-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mentor-image {
    display: flex;
    justify-content: center;
}

.mentor-foto {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.produtos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.produto-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.produto-card.destaque {
    border-color: var(--gold);
    transform: scale(1.02);
}

.badge-popular {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 0.4rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
    white-space: nowrap;
}

.produto-header {
    background: var(--gray);
    padding: 2rem;
    text-align: center;
}

.produto-header h3 {
    color: var(--dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.preco {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.parcela {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.valor {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.produto-content {
    padding: 2rem;
}

.beneficios-lista {
    list-style: none;
    margin-bottom: 2rem;
}

.beneficios-lista li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
}

.beneficios-lista li:before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

.btn-produto {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-produto:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.garantia {
    background: var(--gray);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.garantia-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
}

.garantia-icon {
    font-size: 3rem;
    color: var(--gold);
}

.garantia h3 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.garantia p {
    color: #666;
    line-height: 1.6;
}

/* Fotos do William */
.hero-foto {
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.mentor-sobre {
    width: 100%;
    max-width: 350px;
    height: 400px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

/* Responsivo - Produtos */
@media (max-width: 1024px) {
    .produtos-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .produto-card.destaque {
        transform: none;
    }
    
    .garantia-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-foto {
        height: 350px;
    }
    
    .mentor-sobre {
        height: 300px;
    }
    
    .mentor-foto {
        max-width: 300px;
    }
}

/* Responsivo - Comprar */
@media (max-width: 768px) {
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-card.destaque {
        transform: none;
    }
    
    .garantia-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-radius: 20px 20px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-contato h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contato p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s infinite;
}

.loading-text {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: loading 2s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Animações Avançadas */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-image-mobile {
    display: none;
}

/* Responsivo - Mobile First */
@media (max-width: 480px) {
    .hero {
        padding: 8rem 5% 2rem;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-image-mobile {
        display: block;
        margin: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat .number {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    .image-placeholder {
        width: 250px;
        height: 300px;
    }
    
    .container {
        padding: 0 5%;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .sobre-text h2 {
        font-size: 1.8rem;
    }
    
    .sobre-content {
        flex-direction: column;
        text-align: center;
    }
    
    .sobre-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .badge {
        width: 100%;
        justify-content: center;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .beneficio-card {
        padding: 2rem 1.5rem;
    }
    
    .processo-timeline::before {
        left: 30px;
    }
    
    .processo-numero {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .processo-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .diferencial-item {
        padding: 1.5rem;
    }
    
    .testimonials-wrapper {
        justify-content: center;
        padding: 0 5%;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form {
        padding: 1.5rem;
    }
    
    .produtos-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 5%;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .produto-card {
        margin: 0;
    }
    
    .produto-card.destaque {
        transform: none;
    }
    
    .faq-list {
        padding: 0 5%;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1rem;
    }
    
    .whatsapp-float {
        bottom: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .nav {
        padding: 1rem 5%;
    }
    
    .nav-brand h2 {
        font-size: 1.3rem;
    }
    
    .nav-brand span {
        font-size: 0.8rem;
    }
}

/* Tablet Responsivo */
@media (max-width: 768px) and (min-width: 481px) {
    .hero {
        padding: 7rem 4% 3rem;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .avaliacoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Melhorias gerais de responsividade */
@media (max-width: 1024px) {
    .hero {
        gap: 2rem;
    }
    
    .sobre-content {
        gap: 2rem;
    }
    
    .contato-content {
        gap: 2rem;
    }
}

/* Touch-friendly buttons */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .btn-plano,
    .btn-nav {
        min-height: 48px;
        padding: 1rem 1.5rem;
    }
    
    .faq-question {
        min-height: 60px;
    }
    
    .nav-menu a {
        padding: 1rem 0;
    }
}