.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
/* Menu Hambúrguer */
.menu-toggle {
	position: relative;
    z-index: 2000;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
	min-width: 30px;
    min-height: 21px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;

    background: #FFEB3B;

    border-radius: 3px;

    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    color: var(--text-gray);
    margin-top: 20px;
    line-height: 1.7;
}

.footer-links h3,
.footer-legal h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 235, 59, 0.1);
    color: var(--text-gray);
}
nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    header .container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    nav {

		display: flex;
		flex-direction: column;

		justify-content: flex-start;
		align-items: flex-start;

		gap: 24px;

		position: fixed;

		top: 0;
		right: -100%;

		width: 280px;
		height: 100vh;

		padding: 100px 30px;

		background: #000;

		transition: right .3s ease;

		z-index: 1000;

		border-left: 2px solid var(--primary-color);
	}

    nav.active {
        right: 0;
    }

    nav a {
		display: block;
		width: 100%;
        font-size: 18px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section h2 {
        font-size: 28px;
    }

    .section-intro {
        font-size: 16px;
    }

    .steps-grid,
    .benefits-grid,
    .plans-grid,
    .advantages-grid,
    .guarantees-wrapper,
    .tech-grid,
    .compatibility-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-item:not(:last-child)::before {
        display: none;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
        min-height: 48px;
    }

    .cta-large {
        padding: 18px 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 26px;
    }

    .section {
        padding: 60px 0;
    }

    .logo-text {
        font-size: 20px;
    }
}
