/* ========================================
   LAUNDRY LOUNGE - Landing Page
   Design: Clean Blue + White
   ======================================== */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-900: #0c1b33;
    --blue-800: #1a2744;
    --blue-700: #1e3a5f;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-100: #dbeafe;
    --blue-50: #eff6ff;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn--primary {
    background: var(--blue-600);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn--white {
    background: var(--white);
    color: var(--blue-600);
}

.btn--white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

.navbar.scrolled .navbar__logo {
    color: var(--gray-800);
}

.logo-icon { font-size: 1.6rem; }

.navbar__logo-img {
    height: 36px;
    width: auto;
}

.footer__logo-img {
    height: 32px;
    width: auto;
}

.service-card__icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 20px;
}

.navbar__links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar__links a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.navbar.scrolled .navbar__links a {
    color: var(--gray-600);
}

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

.navbar.scrolled .navbar__links a:hover {
    color: var(--blue-600);
}

.navbar__cta {
    background: var(--blue-600) !important;
    color: var(--white) !important;
    border: 2px solid var(--blue-600);
    padding: 10px 24px !important;
    font-size: 0.9rem;
    border-radius: 50px;
}

.navbar__cta:hover {
    background: var(--blue-700) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.navbar.scrolled .navbar__cta {
    background: var(--blue-600) !important;
    color: var(--white) !important;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .navbar__toggle span {
    background: var(--gray-800);
}

.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar.scrolled .navbar__toggle span {
    background: var(--gray-800);
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

/* === BUBBLES === */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-up linear infinite;
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 8s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.bubble:nth-child(4) {
    width: 80px;
    height: 80px;
    left: 50%;
    animation-duration: 20s;
    animation-delay: 2s;
}

.bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 65%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.bubble:nth-child(6) {
    width: 25px;
    height: 25px;
    left: 75%;
    animation-duration: 9s;
    animation-delay: 3s;
}

.bubble:nth-child(7) {
    width: 60px;
    height: 60px;
    left: 85%;
    animation-duration: 14s;
    animation-delay: 1s;
}

.bubble:nth-child(8) {
    width: 15px;
    height: 15px;
    left: 5%;
    animation-duration: 7s;
    animation-delay: 4s;
}

.bubble:nth-child(9) {
    width: 45px;
    height: 45px;
    left: 45%;
    animation-duration: 11s;
    animation-delay: 2s;
}

.bubble:nth-child(10) {
    width: 30px;
    height: 30px;
    left: 90%;
    animation-duration: 13s;
    animation-delay: 0s;
}

@keyframes float-up {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-1200px) scale(0.5);
        opacity: 0;
    }
}

.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__text {
    color: var(--white);
}

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.hero__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 380px;
}

.hero__card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 20px;
    text-align: center;
}

.hero__card-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero__card-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--blue-50);
    border-radius: var(--radius);
}

.hero__card-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue-600);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero__card-step-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.hero__card-step-text p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* === SECTION UTILS === */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: var(--blue-100);
    color: var(--blue-600);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 550px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-desc {
    margin: 0 auto;
}

/* === SERVICES === */
.services {
    padding: 100px 0;
    background: var(--gray-50);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-200, #bfdbfe);
}

.service-card--featured {
    border: 2px solid var(--blue-600);
    background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
}

.service-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 50px;
    background: var(--blue-600);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--blue-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--blue-600);
    font-size: 1.5rem;
}

.service-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.service-card__features {
    margin-bottom: 24px;
}

.service-card__features li {
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray-100);
}

.service-card__features li:last-child {
    border-bottom: none;
}

.service-card__features li::before {
    content: '\2713';
    color: var(--blue-600);
    font-weight: 700;
    font-size: 0.85rem;
}

/* === HOW IT WORKS === */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--blue-100);
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--blue-600);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.step__text {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* === DIFFERENTIALS === */
.differentials {
    padding: 100px 0;
    background: var(--blue-50);
}

.differentials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.diff-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.diff-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.diff-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.diff-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* === PLANS === */
.plans {
    padding: 100px 0;
    background: var(--blue-50);
}

.plans__category {
    margin-bottom: 48px;
}

.plans__category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 24px;
    text-align: center;
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.plans__grid--single {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

.plan-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.plan-card--featured {
    border: 2px solid var(--blue-600);
    background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
}

.plan-card__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.plan-card__badge--featured {
    background: var(--blue-600);
    color: var(--white);
}

.plan-card__name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.plan-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.plan-card__features span {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.plan-card__features strong {
    color: var(--blue-600);
    font-weight: 700;
}

.plan-card__price {
    margin-bottom: 16px;
}

.plan-card__price .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue-600);
}

.plan-card__price .price-cents {
    font-size: 1rem;
    font-weight: 600;
}

.plan-card__price .price--contact {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-600);
    font-style: italic;
}

.plan-card__note {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.plan-card__ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-600);
    color: var(--white);
    padding: 6px 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    z-index: 1;
    white-space: nowrap;
}

.plan-card--featured {
    position: relative;
    overflow: hidden;
}

.plans__info {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-top: 32px;
}

/* === FAQ === */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq__list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--gray-800);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-item__question:hover {
    color: var(--blue-600);
}

.faq-item__arrow {
    flex-shrink: 0;
    color: var(--gray-300);
    transition: var(--transition);
}

.faq-item.active .faq-item__arrow {
    transform: rotate(180deg);
    color: var(--blue-600);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-item__answer p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === MAP === */
.map-section {
    padding: 100px 0;
    background: var(--white);
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }
}

/* === CTA FINAL === */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bubbles--cta {
    z-index: 0;
}

.bubbles--cta .bubble:nth-child(1) {
    width: 30px;
    height: 30px;
    left: 15%;
    animation-duration: 10s;
}

.bubbles--cta .bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 40%;
    animation-duration: 8s;
    animation-delay: 1s;
}

.bubbles--cta .bubble:nth-child(3) {
    width: 40px;
    height: 40px;
    left: 60%;
    animation-duration: 12s;
}

.bubbles--cta .bubble:nth-child(4) {
    width: 25px;
    height: 25px;
    left: 80%;
    animation-duration: 9s;
    animation-delay: 2s;
}

.bubbles--cta .bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 25%;
    animation-duration: 11s;
    animation-delay: 3s;
}

.cta-final__content {
    position: relative;
    z-index: 1;
}

.cta-final__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-final__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    padding: 60px 0 0;
    background: var(--gray-900);
    color: var(--white);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.footer__logo-img {
    height: 36px;
    width: auto;
}

.footer__tagline {
    color: var(--gray-300);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer__contact-info {
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 2;
}

.footer__links h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer__links p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer__links a {
    color: var(--gray-400);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--blue-400);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* === BRANDING NEGOCIOS SMART === */
.branding-ns {
    text-align: center;
    padding: 16px 0;
    background: var(--gray-800);
}

.branding-ns p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.branding-ns a {
    color: var(--blue-400);
    font-weight: 600;
    transition: var(--transition);
}

.branding-ns a:hover {
    color: var(--blue-300, #93c5fd);
}

/* === BRANDING NEGOCIOS SMART === */
.branding-ns {
    text-align: center;
    padding: 16px 0;
    background: var(--gray-800);
}

.branding-ns p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.branding-ns a {
    color: var(--blue-400);
    font-weight: 600;
    transition: var(--transition);
}

.branding-ns a:hover {
    color: #93c5fd;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* === ANIMATIONS === */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

    .services__grid,
    .plans__grid,
    .differentials__grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps::before {
        display: none;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar__links,
    .navbar__cta {
        display: none;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar.mobile-open {
        background: var(--white);
    }

    .navbar.mobile-open .navbar__links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow);
        z-index: 1000;
    }

    .navbar.mobile-open .navbar__links a {
        color: var(--gray-800);
        font-size: 1rem;
        padding: 8px 0;
    }

    .navbar.mobile-open .navbar__cta {
        display: inline-flex;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        justify-content: center;
        z-index: 1000;
        margin-top: 8px;
        width: 100%;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__subtitle {
        font-size: 0.95rem;
    }

    .hero__badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .plans__grid {
        grid-template-columns: 1fr;
    }

    .plans__grid--single {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .btn--lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .cta-final__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-final__actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .navbar__logo {
        font-size: 1.1rem;
    }

    .navbar__logo .logo-icon {
        font-size: 1.3rem;
    }

    .plan-card {
        padding: 24px;
    }

    .plan-card__name {
        font-size: 1.2rem;
    }

    .plan-card__price .price {
        font-size: 1.8rem;
    }
}
