/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f3f6fb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #ffffff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(16, 24, 40, 0.06);
}

.header.is-scrolled {
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.10);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transform: scale(1.6);
    transform-origin: left center;
}

@media (max-width: 768px) {
    .logo-img {
        width: 36px;
        height: 36px;
        transform: scale(1.5);
    }
}

.logo-text {
    color: #0b4a6f;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-link:hover {
    color: #0b4a6f;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-login-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.header-login:hover {
    background: #f1f5f9;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0f172a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #3b5999;
    padding: 56px 0 56px;
    margin-top: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 18px;
    line-height: 1.5;
}

.search-box {
    display: flex;
    gap: 10px;
    max-width: 520px;
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.22);
}

.search-input {
    flex: 1;
    padding: 14px 14px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    box-shadow: none;
}

.search-btn {
    padding: 12px 18px;
    background: #fbbf24;
    color: #0b4a6f;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

.search-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: none;
}

.hero-slider {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(16, 24, 40, 0.22);
    border: 2px solid rgba(255, 255, 255, 0.25);
    position: relative;
}

.hero-slider-track {
    position: relative;
}

.hero-slide {
    display: none;
}

.hero-slide.is-active {
    display: block;
}

.hero-slide-img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}

.hero-slider-dots {
    position: absolute;
    left: 20px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(6px);
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 28px;
    background: #fbbf24;
}

/* Categorias Section */
.categorias {
    padding: 40px 0 38px;
    background: #f6f7fb;
}

.categorias-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
}

.categorias-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.categorias-carousel {
    display: flex;
    align-items: center;
    gap: 12px;
}

.categorias-carousel.is-fit .categorias-track {
    justify-content: space-between;
}

.categorias-carousel.is-fit .categoria-item {
    flex: 1;
    min-width: 0;
}

.categorias-carousel.is-fit .categorias-next {
    display: none;
}

.categorias-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 14px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex: 1;
}

.categorias-track::-webkit-scrollbar {
    height: 0;
}

.categorias-track {
    scrollbar-width: none;
}

.categoria-item {
    min-width: 112px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.categoria-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: #eaf1ff;
    color: #0b4a6f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.categoria-name {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}

.categorias-next {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.10);
    cursor: pointer;
}

.categorias-next:hover {
    background: #f8fafc;
}

/* Ofertas Section */
.ofertas {
    padding: 18px 0 34px;
    background: #f6f7fb;
}

.ofertas-card {
    background: #0b4a6f;
    border-radius: 10px;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.18);
    position: relative;
    overflow: hidden;
}

.ofertas-card::after {
    content: '';
    position: absolute;
    right: -140px;
    top: -120px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.ofertas-card-text {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.ofertas-card-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ofertas-card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.ofertas-card-action {
    position: relative;
    z-index: 1;
}

.ofertas-btn {
    padding: 12px 18px;
    background: #fbbf24;
    color: #0b4a6f;
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.ofertas-btn:hover {
    background: #f59e0b;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .ofertas-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Lojas em Destaque */
.lojas-destaque {
    padding: 80px 0;
    background: white;
}

.featured-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 10px 0 14px;
}

.featured-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.featured-link {
    font-size: 12px;
    font-weight: 700;
    color: #0b4a6f;
    text-decoration: none;
}

.featured-link:hover {
    text-decoration: underline;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.featured-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.10);
}

.featured-card-top {
    background: #2563eb;
    padding: 14px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    position: relative;
}

.featured-card-top::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px 10px 0 0;
    padding: 2px;
    background: linear-gradient(135deg, #3b5999, #fbbf24);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.featured-logo-wrap {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.featured-logo {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: cover;
    background: #ffffff;
}

.featured-top-content {
    min-width: 0;
}

.featured-name {
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}

.featured-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}

.featured-location {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
}

.featured-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-stars {
    color: #fbbf24;
    font-size: 12px;
    letter-spacing: 1px;
}

.featured-rating-count {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
}

.featured-fav {
    margin-left: auto;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.featured-fav:hover {
    background: rgba(255, 255, 255, 0.20);
}

.featured-card-body {
    padding: 14px;
}

.featured-desc {
    font-size: 12px;
    color: #475569;
    line-height: 1.45;
    min-height: 52px;
    margin-bottom: 12px;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-btn {
    width: 100%;
    border: none;
    background: #2563eb;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.featured-btn:hover {
    background: #1d4ed8;
}

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 520px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}

.banners-slider {
    padding: 6px 0 26px;
    background: #ffffff;
}

.banners-slider-shell {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.10);
}

.banners-track {
    position: relative;
    min-height: 140px;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.banner-slide.is-active {
    opacity: 1;
    position: relative;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.banners-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.18);
    background: rgba(255, 255, 255, 0.85);
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    backdrop-filter: blur(6px);
}

.banners-prev {
    left: 12px;
}

.banners-next {
    right: 12px;
}

.banners-nav:hover {
    background: rgba(255, 255, 255, 0.95);
}

.banners-nav:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.banners-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(6px);
}

.banners-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
}

.banners-dot.is-active {
    width: 28px;
    background: #fbbf24;
}

@media (max-width: 768px) {
    .banners-nav {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }
}

.blog-section {
    padding: 34px 0 34px;
    background: #ffffff;
}

.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 18px;
}

.blog-title {
    margin: 0;
    display: grid;
    gap: 2px;
    line-height: 1.1;
    text-align: center;
}

.blog-title-top {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #0b4a6f;
}

.blog-title-bottom {
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e6eef7;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.10);
}

.blog-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-card-link:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 3px;
}

.blog-card-media {
    height: 160px;
    background: #f1f5f9;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-card-body {
    padding: 14px;
}

.blog-card-title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.blog-card-excerpt {
    font-size: 12px;
    color: #475569;
    line-height: 1.45;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.lojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.loja-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.loja-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.loja-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
}

.loja-nome {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.loja-avaliacao {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.estrela {
    color: #ffd700;
    font-size: 14px;
}

.loja-descricao {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.loja-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.loja-btn:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    transform: translateY(-1px);
}

/* Cards Especiais */
.cards-especiais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-especial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.card-especial:hover {
    transform: translateY(-5px);
}

.card-especial-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card-especial-titulo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-especial-descricao {
    font-size: 16px;
    opacity: 0.9;
}

/* Profissionais em Destaque */
.profissionais-destaque {
    padding: 80px 0;
    background: #f8f9fa;
}

.profissionais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.profissional-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.profissional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.profissional-foto {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 24px;
    flex-shrink: 0;
}

.profissional-info {
    flex: 1;
}

.profissional-nome {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.profissional-profissao {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.profissional-avaliacao {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.profissional-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profissional-btn:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
}

/* Vagas Section */
.vagas {
    padding: 80px 0;
    background: white;
}

.vagas-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.vagas-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.vagas-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30,60,114,0.3);
}

.vagas-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30,60,114,0.4);
}

/* Banner Lugar Certo */
.banner-lugar-certo {
    padding: 80px 0;
    background: url('/roger/assets/img/banner-lugar-certo.png') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-lugar-certo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.banner-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.banner-titulo {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-subtitulo {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.banner-btn {
    padding: 15px 40px;
    background: #ffd700;
    color: #1e3c72;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.banner-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,215,0,0.4);
}

/* Cadastro Section */
.cadastro {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cadastro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cadastro .section-title {
    color: white;
    margin-bottom: 20px;
}

.cadastro-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.5;
}

.cadastro-btn {
    padding: 15px 40px;
    background: white;
    color: #764ba2;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cadastro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: #0b4a6f;
    padding: 60px 0 20px;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo {
    max-width: 140px;
    height: auto;
    filter: brightness(1.1);
}

.footer-slogan {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fbbf24;
    border-radius: 1px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-company-name {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.footer-company-cnpj,
.footer-company-address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #fbbf24;
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item:hover {
    color: #fbbf24;
}

.footer-contact-icon {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-title {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-social-links {
    display: flex;
    gap: 8px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.2s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-contact-item {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.footer-contact-item strong {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-copyright p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-made {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .nav {
        justify-content: flex-start;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 24px rgba(16, 24, 40, 0.12);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-slide-img {
        height: 240px;
    }

    .hero-title {
        font-size: 36px;
    }

    .search-box {
        max-width: 100%;
    }
    
    .categorias-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .lojas-grid {
        grid-template-columns: 1fr;
    }
    
    .cards-especiais {
        grid-template-columns: 1fr;
    }
    
    .profissionais-grid {
        grid-template-columns: 1fr;
    }
    
    .profissional-card {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .banner-titulo {
        font-size: 36px;
    }
    
    .banner-subtitulo {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .search-input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .search-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .categorias-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .categoria-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .categoria-name {
        font-size: 12px;
    }
    
    .loja-card {
        padding: 20px;
    }
    
    .banner-titulo {
        font-size: 24px;
    }
    
    .banner-subtitulo {
        font-size: 14px;
    }
}

/* Animações e Transições */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
}