/* ==========================================================================
   Mobile Responsive Styles - AuGo
   This file contains all mobile-specific styles
   ========================================================================== */

/* Mobile - up to 768px */
@media (max-width: 768px) {
    :root {
        --fs-display-1: 32px;
        --fs-h1: 28px;
        --fs-h2: 24px;
        --fs-h3: 20px;
        --fs-h4: 18px;
        --gutter: 16px;
    }

    /* Container */
    .container {
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }

    /* Navigation */
    .nav-center,
    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }



    /* How It Works */
    .how-it-works {
        padding: 40px 0 60px;
    }

    .section-title {
        font-size: var(--fs-h2);
        margin-bottom: 32px;
        text-align: center;
        line-height: 1.3;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 24px;
    }

    .step-card {
        min-height: auto;
        padding: 24px;
        text-align: center;
    }

    .step-image {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }

    .step-description {
        font-size: var(--fs-body-sm);
        line-height: 1.6;
    }

    /* Local Feature Band - "Para quem o serviço faz sentido" */
    .local-feature-band {
        padding: 40px 0;
    }

    .local-feature-layout {
        display: flex;
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .local-feature-media {
        order: 1;
        margin-bottom: 8px;
    }

    .local-feature-media img {
        width: 100%;
        max-width: 260px;
        height: auto;
        border-radius: 16px;
    }

    .local-feature-content {
        order: 2;
        text-align: center;
    }

    .local-card-title {
        font-size: var(--fs-h3);
        margin-bottom: 16px;
        text-align: center;
    }

    .local-feature-content p {
        font-size: var(--fs-body-sm);
        line-height: 1.6;
        text-align: center;
        margin-bottom: 20px;
    }

    .benefit-pill-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin-top: 20px;
    }

    .benefit-pill {
        background: var(--brand-primary);
        color: white;
        padding: 8px 12px;
        border-radius: 20px;
        font-size: var(--fs-caption);
        font-weight: 600;
    }

    /* Augo Protege Section */
    .augo-protege {
        padding: 40px 0;
    }

    .protege-card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        max-height: none;
    }

    .protege-image {
        max-height: 250px;
        order: 1;
    }

    .protege-text {
        padding: 24px;
        order: 2;
    }

    .protege-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .protege-title {
        font-size: var(--fs-h3);
    }

    .protege-subtitle {
        font-size: var(--fs-body);
    }

    .protege-seal {
        width: 70px;
        height: 70px;
    }

    .protege-feature {
        margin-bottom: 16px;
    }

    .protege-feature h4 {
        font-size: var(--fs-body);
        margin-bottom: 8px;
    }

    .protege-feature p {
        font-size: var(--fs-body-sm);
        line-height: 1.6;
    }

    /* Service Link Grid - "Tudo que seu pet precisa" */
    .local-content-section {
        padding: 40px 0;
    }

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

    .local-section-title {
        font-size: var(--fs-h2);
        margin-bottom: 12px;
    }

    .local-section-text {
        font-size: var(--fs-body-sm);
        line-height: 1.6;
        max-width: 100%;
    }

    .service-link-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-link-card {
        padding: 24px;
        border-radius: 16px;
        text-align: center;
        background: white;
        border: 1px solid var(--border-200);
    }

    .service-link-media {
        margin-bottom: 16px;
    }

    .service-link-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .service-link-title {
        font-size: var(--fs-h4);
        margin-bottom: 8px;
    }

    .service-link-description {
        font-size: var(--fs-body-sm);
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .service-link-action {
        display: inline-block;
        padding: 8px 16px;
        background: var(--brand-primary);
        color: white;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: var(--fs-body-sm);
    }

    /* Regional Cities - "Regiões próximas" */
    .regional-exploration-layout {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .city-overview-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .regional-city-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 16px;
    }

    .city-directory-card {
        padding: 16px;
        text-align: center;
        border-radius: 16px;
        min-height: 90px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: white;
        border: 2px solid var(--border-200);
    }

    .city-directory-card.is-placeholder {
        background: var(--surface-1);
        opacity: 0.7;
    }

    .city-directory-name {
        font-size: var(--fs-body);
        margin-bottom: 4px;
        font-weight: 600;
    }

    .city-directory-action {
        font-size: var(--fs-caption);
        color: var(--brand-primary);
        font-weight: 600;
    }

    .city-directory-card.is-placeholder .city-directory-action {
        color: var(--text-500);
        font-style: italic;
    }

    .regional-city-guide {
        padding: 24px;
        border-radius: 16px;
        text-align: center;
        background: var(--surface-2);
        border: 1px solid var(--border-200);
    }

    .city-guide-badge {
        display: inline-block;
        background: var(--brand-secondary);
        color: white;
        padding: 4px 8px;
        border-radius: 8px;
        font-size: var(--fs-caption);
        font-weight: 600;
        margin-bottom: 12px;
    }

    .city-guide-title {
        font-size: var(--fs-h3);
        margin-bottom: 12px;
    }

    .city-guide-text {
        font-size: var(--fs-body-sm);
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .city-guide-features {
        display: none;
    }

    .city-guide-cta {
        margin-top: 16px;
    }

    .city-guide-cta .btn {
        width: 100%;
        padding: 12px 20px;
    }

    /* FAQ Section */
    .faq {
        padding: 40px 0;
    }

    .faq-list {
        max-width: 100%;
    }

    .faq-item {
        margin-bottom: 8px;
    }

    .faq-question {
        font-size: var(--fs-body);
        padding: 16px 0;
        gap: 12px;
    }

    .faq-icon {
        font-size: var(--fs-h5);
        flex-shrink: 0;
    }

    .faq-answer {
        padding-bottom: 16px;
    }

    .faq-answer p {
        font-size: var(--fs-body-sm);
        line-height: 1.6;
    }

    /* Testimonials */
    .testimonials {
        padding: 40px 0;
    }

    .testimonials-slider {
        overflow: hidden;
    }

    .testimonials-track {
        gap: 16px;
    }

    .testimonial-card {
        width: 100%;
        min-width: 100%;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-text {
        font-size: var(--fs-body-sm);
        line-height: 1.6;
    }

    /* Stats Section */
    .stats {
        padding: 32px 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }

    .stats-card {
        padding: 24px;
        text-align: center;
    }

    .stat-number {
        font-size: var(--fs-h2);
        line-height: 1.2;
    }

    .stat-label {
        font-size: var(--fs-body-sm);
    }

    /* CTA Section */
    .cta-section {
        padding: 32px 0;
    }

    .cta-card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cta-image {
        order: 1;
        max-height: 200px;
    }

    .cta-content {
        padding: 24px;
        order: 2;
    }

    .cta-title {
        font-size: var(--fs-h3);
        margin-bottom: 12px;
    }

    .cta-text {
        font-size: var(--fs-body-sm);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .cta-btn {
        width: 100%;
    }

    /* CTA Final */
    .cta-final {
        padding: 40px 0;
    }

    .cta-final-content {
        text-align: center;
    }

    .cta-final-title {
        font-size: var(--fs-h2);
        margin-bottom: 24px;
    }

    .cta-final-buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .cta-final-btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        font-size: var(--fs-body);
    }

    /* Footer */
    .footer-top {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-description {
        max-width: 100%;
        text-align: center;
    }

    .footer-sections {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-column {
        align-items: center;
    }

    .footer-nav {
        align-items: center;
        gap: 12px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Breadcrumbs */
    .breadcrumbs-wrapper {
        padding: 12px 0;
    }

    .breadcrumbs {
        font-size: var(--fs-caption);
        flex-wrap: wrap;
        gap: 4px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float img {
        width: 24px;
        height: 24px;
    }
}

/* Small Mobile - up to 480px */
@media (max-width: 480px) {
    :root {
        --fs-display-1: 28px;
        --fs-h1: 26px;
        --fs-h2: 22px;
        --fs-h3: 18px;
        --fs-h4: 16px;
    }

    .hero-title {
        font-size: var(--fs-h1);
    }

    .regional-city-grid {
        grid-template-columns: 1fr;
    }

    .city-directory-card {
        min-height: 80px;
        padding: 12px;
    }

    .service-link-card {
        padding: 20px;
    }

    .step-card {
        padding: 20px;
    }

    .protege-text {
        padding: 20px;
    }

    .cta-content {
        padding: 20px;
    }
}
