/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-logo h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

.nav-logo img {
    height: 50px;
    width: auto;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li {
    flex: 1;
    text-align: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff6b35;
}

/* Hero Section */
.hero {
    padding: 120px 2rem 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Image Comparison */
.image-comparison {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    cursor: col-resize;
}

.image-comparison img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.after {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 3px solid #ff6b35;
}

.after::before {
    content: '⇄ Arraste';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
}

/* Labels para antes/depois */
.before::after, .after::after {
    content: '';
    position: absolute;
    top: 20px;
    padding: 5px 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    pointer-events: none;
}

.before::after {
    content: 'ANTES';
    left: 20px;
}

.after::after {
    content: 'DEPOIS';
    right: 20px;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .image-comparison {
        height: 300px;
    }
    
    .after::before {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .before::after, .after::after {
        top: 10px;
        font-size: 0.7rem;
    }
}

/* Stats Section */
.stats {
    background: #f7fafc;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Alterado para 2 colunas em mobile */
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 colunas em desktop */
    }
}

.stat-item {
    position: relative; /* Adicionado para evitar sobreposição */
    z-index: 1; /* Garantir que os itens fiquem acima de outros elementos */
    padding: 1rem; /* Adicionado padding para melhor espaçamento */
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #4a5568;
    font-weight: 500;
}

/* Sobre Section */
.sobre {
    padding: 6rem 0;
}

.sobre h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    font-size: 1.1rem;
}

.sobre-text ul {
    list-style: none;
    margin-top: 2rem;
}

.sobre-text li {
    margin-bottom: 0.8rem;
    padding-left: 0;
    color: #4a5568;
}

.processo-step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.processo-step span {
    background: #ff6b35;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Benefícios Section */
.beneficios {
    background: #f7fafc;
    padding: 6rem 0;
}

.beneficios h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.beneficio-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}


.beneficio-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.beneficio-card p {
    color: #4a5568;
}

/* Planos Section */
.planos {
    padding: 6rem 0;
}

.planos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.plano-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    border: 2px solid #e2e8f0;
}

.plano-card.popular {
    border-color: #ff6b35;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plano-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.preco {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.plano-card > p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.plano-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plano-card li {
    margin-bottom: 0.8rem;
    color: #4a5568;
    padding-left: 0;
}

/* Depoimentos Section */
.depoimentos {
    background: #f7fafc;
    padding: 6rem 0;
}

.depoimentos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.depoimento-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.depoimento-text {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.depoimento-author {
    font-weight: 600;
    color: #2d3748;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

.faq-item {
    margin-bottom: 2rem;
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 1rem 60px;
    }

    .blog {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .stats-grid,
    .beneficios-grid,
    .planos-grid,
    .depoimentos-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    /* Menu Mobile Styles */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: 1rem;
        z-index: 999;
        border-top: 2px solid #ff6b35;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 0.8rem 1rem;
        font-weight: 600;
        font-size: 1.1rem;
        color: #2d3748;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: #ff6b35;
        color: white;
        transform: translateX(5px);
    }

    /* Menu Toggle Button */
    .menu-toggle {
        display: block !important;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: #333;
        padding: 0.5rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .menu-toggle:hover {
        background: #f7fafc;
        color: #ff6b35;
    }

    .menu-toggle.active {
        color: #ff6b35;
        transform: rotate(90deg);
    }

    /* Overlay para fechar o menu */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }

    .menu-overlay.active {
        display: block;
        animation: fadeIn 0.3s ease-out;
    }

    .plano-card.popular {
        transform: none;
    }

    /* Animações */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}

@media (max-width: 480px) {
    .nav-logo h2 {
        font-size: 1.4rem;
    }

    .nav-logo img {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Estilos para a página de orientação */
.orientacao {
    max-width: 800px;
    margin: 100px auto;
    padding: 2rem;
    text-align: center;
}

.orientacao h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 700;
}

.passo-a-passo {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
}

.passo-a-passo h2 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.passo-a-passo ul {
    list-style: none;
}

.passo-a-passo li {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 1.1rem;
    line-height: 1.6;
}

.passo-a-passo li strong {
    color: #ff6b35;
}

#email {
    color: #ff6b35;
    font-weight: 700;
    padding: 0;
    background: none;
    border-radius: 0;
    display: inline;
    margin-right: 1rem;
}

.passo-a-passo button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin-left: 1rem;
    transition: background 0.3s;
}

.passo-a-passo button:hover {
    background: #e55a2b;
}

.duvidas {
    background: #fff3e0;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #ff6b35;
}

.duvidas h2 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.duvidas p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background: #128c7e;
}

/* Blog Section */
.blog {
    padding-top: 120px;
}

.blog h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
}

.blog p {
    text-align: center;
}

/* Responsividade para orientação */
@media (max-width: 768px) {
    .orientacao {
        margin: 80px auto;
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .orientacao h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .passo-a-passo, .duvidas {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
        margin-bottom: 1.5rem;
    }
    
    .passo-a-passo li {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
        line-height: 1.5;
    }

    .passo-a-passo button {
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .passo-a-passo button:hover {
        background: #e55a2b;
        box-shadow: 0 6px 12px rgba(255, 107, 53, 0.5);
        transform: translateY(-2px);
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }

    .btn-primary:hover, .btn-secondary:hover {
        background: #e55a2b;
        box-shadow: 0 6px 12px rgba(255, 107, 53, 0.5);
        transform: translateY(-2px);
    }
}

/* Estilos para a seção do Instagram */
.instagram-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
    border-radius: 16px;
}

.instagram-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.instagram-description {
    text-align: center;
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.instagram-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.instagram-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover .post-image img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.likes {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.post-content {
    padding: 1.2rem;
}

.post-caption {
    color: #2d3748;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-time {
    color: #718096;
    font-size: 0.9rem;
}

.instagram-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.instagram-cta p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-instagram {
    display: inline-block;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.loading {
    text-align: center;
    padding: 3rem;
    color: #718096;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error {
    text-align: center;
    padding: 2rem;
    color: #718096;
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
}

.error a {
    color: #ff6b35;
    text-decoration: none;
}

.error a:hover {
    text-decoration: underline;
}

/* Estilização para a seção de comentários para combinar com Instagram */
.comments-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.15);
    max-width: 600px;
}

.comments-section h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

#comment-text {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #4a5568;
    resize: vertical;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

#comment-text:focus {
    border-color: #ff6b35;
    outline: none;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

.rating {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #2d3748;
}

.stars {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.stars input[type="radio"] {
    display: none;
}

.stars label {
    font-size: 2rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.stars label:hover,
.stars label:hover ~ label,
.stars input[type="radio"]:checked ~ label {
    color: #ff6b35;
}

.btn-primary {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e55a2b;
    box-shadow: 0 6px 12px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

/* Responsividade para Instagram Feed */
@media (max-width: 768px) {
    .instagram-section {
        margin: 2rem 0;
        padding: 2rem 1rem;
    }
    
    .instagram-section h2 {
        font-size: 1.8rem;
    }
    
    .instagram-feed {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .instagram-post {
        margin: 0 auto;
        max-width: 320px;
    }
    
    .btn-instagram {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
