@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .container {
        padding: 0 25px;
    }

    #btn-mobile {
        display: flex;
        padding: 10px;
        font-size: 1rem;
        border: none;
        background: none;
        cursor: pointer;
        gap: 0.5rem;
        color: var(--navy-blue);
        align-items: center;
    }

    #hamburger {
        border-top: 2px solid;
        width: 25px;
        display: block;
    }

    #hamburger::after, #hamburger::before {
        content: '';
        display: block;
        width: 25px;
        height: 2px;
        background: currentColor;
        margin-top: 6px;
        transition: 0.3s;
        position: relative;
    }

    #nav.active #hamburger {
        border-top-color: transparent;
    }

    #nav.active #hamburger::before {
        transform: rotate(135deg);
    }

    #nav.active #hamburger::after {
        transform: rotate(-135deg);
        top: -8px;
    }

    #menu {
        display: block;
        position: absolute;
        width: 100%;
        top: var(--header-height);
        right: 0;
        background: var(--bg-white);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        height: 0;
        visibility: hidden;
        overflow-y: hidden;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    #nav.active #menu {
        height: calc(100vh - var(--header-height));
        visibility: visible;
        overflow-y: auto;
        padding-bottom: 40px;
    }

    #menu a {
        padding: 1.2rem 0;
        margin: 0 2rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        display: block;
        text-align: center;
        font-size: 1.1rem;
    }

    #menu a:hover {
        color: var(--royal-gold);
        background-color: #fafafa;
    }

    #menu .btn-nav {
        background: var(--navy-blue) !important;
        color: #fff !important;
        margin-top: 25px;
        display: block;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        border-radius: 50px;
        padding: 15px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        width: 100%;
        padding: 50px 30px;
    }

    .grid-diferenciais {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-img {
        order: -1;
    }
}

@media (max-width: 600px) {
    :root {
        --header-height: 80px;
    }

    .logo img {
        height: 45px;
    }

    .hero {
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        padding: 40px 20px;
        border-radius: 15px;
    }

    .hero-logo {
        width: 90px;
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header h2::after {
        margin-top: 10px;
        width: 60px;
    }

    .grid-tecnologia, .grid-promocoes {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card, .promo-card {
        margin: 0 5px;
    }

    .form-wrapper {
        padding: 25px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .tipo-pessoa-selector {
        display: flex;
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        gap: 10px;
        width: 100%;
    }

    .btn-selector {
        width: 100%;
        text-align: center;
        border: 1px solid #e5e7eb;
        background-color: #f9fafb;
        border-radius: 8px !important;
        padding: 12px;
    }

    .tipo-pessoa-selector input[type="radio"]:checked + label {
        border-color: var(--navy-blue);
        transform: scale(1.02);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .footer-info img {
        margin: 0 auto 20px auto;
    }

    .footer-links ul li a:hover {
        padding-left: 0;
        color: var(--royal-gold);
        text-decoration: underline;
    }
}