/* ==========================================================================
   ARQUIVO: css/responsive.css
   LOVE IN CODE — RESPONSIVIDADE LANDING PAGE
   ========================================================================== */

/* TABLET E NOTEBOOK MENOR */
@media (max-width: 992px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        justify-content: flex-start;
        gap: 42px;

        min-height: auto;
        padding-top: 150px;
        padding-bottom: 70px;
    }

    .hero-content {
        max-width: 760px;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .typewriter-box {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        justify-content: center;
    }

    /* SEMI RODAPÉ — ALINHADO À ESQUERDA */
    .footer-top {
        flex-direction: column;
        gap: 45px;
        text-align: left;
        align-items: flex-start;
        padding-top: 70px;
        padding-bottom: 55px;
    }

    .footer-brand {
        max-width: 520px;
        text-align: left;
    }

    .footer-brand .logo-link {
        justify-content: flex-start;
    }

    .footer-links-group {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 46px;
        text-align: left;
    }

    .footer-col {
        text-align: left;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .section-padding {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .header {
        height: auto;
    }

    .nav-wrapper {
        height: 72px;
    }

    .logo-img {
        max-height: 60px;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;

        width: 100%;
        height: calc(100vh - 72px);

        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        padding: 42px 24px;
        gap: 28px;

        transition: left 0.35s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 1.08rem;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* HERO */
    .hero {
        min-height: auto;
        padding-top: 132px;
        padding-bottom: 64px;
        gap: 38px;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.75rem);
        line-height: 1.12;
        margin-bottom: 22px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .typewriter-box {
        min-height: 44px;
        padding-left: 8px;
        padding-right: 8px;
        justify-content: center;
        text-align: center;
    }

    .typewriter-text {
        font-size: 1rem;
        line-height: 1.45;
    }

    .hero-description {
        font-size: 0.96rem;
        line-height: 1.75;
        padding-left: 6px;
        padding-right: 6px;
        margin-bottom: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        gap: 12px;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        min-width: 0;
    }

    .iphone-15-mockup {
        width: 260px;
        height: 535px;
        border-width: 10px;
        border-radius: 40px;
    }

    .dynamic-island {
        width: 100px;
        height: 24px;
    }

    .screen {
        padding: 62px 18px 22px;
    }

    .app-photo {
        height: 210px;
    }

    /* TEXTOS DAS SEÇÕES */
    .section-header {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 42px;
    }

    .section-header h2 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        line-height: 1.18;
        margin-bottom: 16px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .section-header p {
        font-size: 0.95rem;
        line-height: 1.75;
        padding-left: 10px;
        padding-right: 10px;
    }

    .step-card,
    .benefit-card,
    .accordion-item {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .step-card,
    .benefit-card {
        padding: 26px 22px;
        text-align: center;
    }

    .step-icon,
    .benefit-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .steps-grid {
        display: block;
        position: relative;
        min-height: 320px;
    }

   .steps-grid .step-card {
    display: none;
    width: 100%;
    min-height: 320px;
}

    .steps-grid .step-card.active {
        display: block;
        opacity: 1;
        transform: translateX(0);
    }

    /* CARD DE PREÇO */
    .pricing-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .pricing-card {
        width: 100%;
        max-width: 390px;
        margin: 0 auto;
        padding: 38px 24px 30px;
        text-align: center;
    }

    .pricing-badge {
        position: relative;
        top: auto;
        right: auto;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        margin: 0 auto 18px;
    }

    .pricing-features {
        text-align: left;
    }

    .price {
        font-size: 3rem;
    }

    /* FAQ */
    .accordion-header {
        padding: 20px;
        text-align: left;
        gap: 14px;
    }

    .accordion-content p {
        padding-left: 20px;
        padding-right: 20px;
    }

    .social-contact-icons {
        justify-content: center;
        align-items: center;
    }

    /* FOOTER */
    .footer {
        margin-top: 20px;
    }

    /* SEMI RODAPÉ — LOGO, TEXTO E COLUNAS À ESQUERDA */
    .footer-top {
        padding: 60px 22px 42px;
        gap: 36px;

        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-brand {
        max-width: 100%;
        text-align: left;
    }

    .footer-brand .logo-link {
        justify-content: flex-start;
    }

    .footer-brand p {
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }

    .footer-links-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        width: 100%;
        text-align: left;
    }

    .footer-col {
        text-align: left;
        width: 100%;
    }

    .footer-col ul {
        align-items: flex-start;
    }

    /* RODAPÉ FINAL — DIREITOS RESERVADOS CENTRALIZADO */
    .footer-bottom {
        padding-bottom: 18px;
    }

    .bottom-content {
        padding: 24px 20px 30px;
        text-align: center;
    }

    .bottom-content p {
        font-size: 0.82rem;
        line-height: 1.6;

        padding-left: 10px;
        padding-right: 10px;

        text-align: center;
    }
}

/* CELULARES PEQUENOS */
@media (max-width: 420px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero {
        padding-top: 124px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .iphone-15-mockup {
        width: 235px;
        height: 500px;
    }

    .app-photo {
        height: 190px;
    }

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

    .section-header p {
        font-size: 0.92rem;
    }

    .pricing-card {
        max-width: 350px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .price {
        font-size: 2.7rem;
    }
}