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

:root {
    --primary-blue: #1E3A8A;
    --accent-red: #E63946;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --border-color: #E5E7EB;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    background: var(--primary-blue);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.instagram-link {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.instagram-link:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.instagram-link svg {
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo a:hover .logo-img {
    opacity: 0.8;
}

.logo-text {
    color: var(--primary-blue);
}

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

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

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

.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--white);
}

.cta-button {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-blue);
    background: #000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/fundo.jpg') 35% center/70% no-repeat;
    z-index: 0;
    opacity: 0.9;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: block;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.hero-text p {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), rgba(30, 58, 138, 0.8));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
}

.btn-outline {
    background: rgba(30, 58, 138, 0.05);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.character-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.character-placeholder svg {
    width: 100%;
    max-width: 250px;
    filter: drop-shadow(0 10px 30px rgba(30, 58, 138, 0.15));
}

/* SERVIÇOS */
.servicos {
    padding: 80px 0;
    background: var(--light-bg);
}

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

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

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.servico-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.servico-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(30, 58, 138, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.servico-icon svg {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.servico-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.servico-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* DIFERENCIAIS */
.diferenciais {
    padding: 80px 0;
    background: var(--primary-blue);
}

.diferenciais .section-header h2 {
    color: var(--white);
}

.diferenciais-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.diferenciais-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.app-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 380px;
}

.app-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-app {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.app-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.diferenciais-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.diferenciais-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

.diferenciais-text p:last-of-type {
    margin-bottom: 2rem;
}

.btn-cta {
    align-self: flex-start;
    margin-top: auto;
}

/* DEPOIMENTOS */
.depoimentos {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.depoimento-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.depoimento-stars {
    color: #FCD34D;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.depoimento-texto {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.autor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--primary-blue);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autor-info h4 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.autor-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

/* PLANOS */
.planos {
    padding: 80px 0;
}

.cta-planos {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.plano-unico {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    text-align: center;
}

.plano-unico h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.plano-unico > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.plano-unico .plano-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plano-unico .plano-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.plano-unico .plano-features li:last-child {
    border-bottom: none;
}

.plano-unico .btn {
    width: 100%;
}

/* SOBRE RENAN */
.sobre-renan {
    padding: 80px 0;
    background: var(--light-bg);
}

.renan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.renan-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.renan-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.renan-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.renan-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* CERTIFICAÇÕES */
.certificacoes-section {
    text-align: center;
}

.certificacoes-section h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cert-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.certificacao-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.certificacao-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cert-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.certificacao-card h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin: 0;
}
.sobre {
    padding: 80px 0;
    background: var(--light-bg);
}

.sobre-content {
    display: block;
}

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

.sobre-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(30, 58, 138, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.stat h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.character-placeholder-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.character-placeholder-3 svg {
    width: 100%;
    max-width: 250px;
    filter: drop-shadow(0 10px 30px rgba(30, 58, 138, 0.15));
}

/* CTA FINAL */
.cta-final {
    padding: 80px 0;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-final .btn-primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-final .btn-primary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.95));
    color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* FOOTER */
.footer {
    background: #1F2937;
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-section p {
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

.founder {
    font-weight: 600;
    color: var(--accent-red);
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

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

.footer-section a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(30, 58, 138, 0.2);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #9CA3AF;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .hero {
        padding: 0;
        background: #000;
        padding-bottom: 50px;
    }

    .hero-background {
        background: url('img/fundo.avif') 35% 50%/60% no-repeat !important;
        background-attachment: scroll !important;
        position: static;
        height: 380px;
        margin-bottom: 0;
        display: block;
    }

    .hero .container {
        padding-top: 2rem;
    }

    .hero .container {
        position: relative;
        z-index: 1;
    }

    .hero-content {
        display: block;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .navbar-content {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .btn {
        width: 100%;
    }

    .character-placeholder,
    .character-placeholder-2,
    .character-placeholder-3 {
        height: 300px;
    }

    .renan-content {
        grid-template-columns: 1fr;
    }

    .renan-text h2 {
        font-size: 1.8rem;
    }

    .certificacoes-section h3 {
        font-size: 1.5rem;
    }

    .diferenciais-content,
    .sobre-content {
        grid-template-columns: 1fr;
    }

    .diferenciais-text {
        padding: 1.5rem;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
    }

    .plano-card.destaque {
        transform: scale(1);
    }

    .cta-final h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .servicos-grid,
    .depoimentos-grid,
    .planos-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
