/*
Theme Name: ScortRio
Theme URI: https://scortrio.com.br
Description: Tema profissional dark para site de acompanhantes
Version: 1.0.0
Author: ScortRio
Author URI: https://scortrio.com.br
Text Domain: scortrio
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* ========================================
   MOBILE - IMAGENS COMPLETAS (PRIORIDADE MÁXIMA)
   DEVE ESTAR NO TOPO DO CSS
   ======================================== */
@media only screen and (max-width: 1024px) {
    .top-cards-view.list-view img,
    .top-cards-view.list-view .top-card-image,
    .top-cards-view.list-view img.foto-vertical,
    .top-cards-view.list-view img.foto-horizontal,
    .top-cards-view.list-view .wp-post-image,
    .top-cards-view.list-view .top-card-image-wrapper img {
        object-fit: contain !important;
        object-position: center !important;
    }
}

@media only screen and (max-width: 640px) {
    .top-cards-view.list-view img,
    .top-cards-view.list-view .top-card-image {
        object-fit: contain !important;
        object-position: center !important;
    }
}


/* ========================================
   ESPAÇAMENTOS MÍNIMOS ENTRE SEÇÕES
   ======================================== */

/* Container principal */
.main-content {
    padding: 0;
}

/* Todas as seções com padding MÍNIMO */
section {
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
}

/* Primeira seção (hero) sem padding top */
.hero-section {
    padding-top: 0;
    padding-bottom: 10px;
}

/* Seções específicas com padding MÍNIMO */
.filtros-discretos {
    padding-top: 5px;
    padding-bottom: 5px;
}

.banner-ad {
    display: none !important; /* Banner removido */
}

.blog-banner-section {
    padding-top: 10px;
    padding-bottom: 5px;
}

/* Premium section */
.premium-section {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Top section */
.top-section {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Anúncios section */
.anuncios-section {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Blog section */
.blog-section-elegant {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* About section */
.about-section-customizer {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* FAQ section */
.faq-section {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Stats section */
.stats-section {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Títulos das seções - margem menor */
/* ========================================
   DESIGN SYSTEM - Classes Base (Tailwind-like)
   ======================================== */

/* Spacing */
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }
.p-5 { padding: 20px; }
.p-6 { padding: 24px; }

.space-y-2 > * + * { margin-top: 8px; }
.space-y-3 > * + * { margin-top: 12px; }
.space-y-4 > * + * { margin-top: 16px; }
.space-y-6 > * + * { margin-top: 24px; }

.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

/* Typography */
.text-sm { font-size: 0.875rem; } /* 14px */
.text-base { font-size: 1rem; }   /* 16px */
.text-lg { font-size: 1.125rem; } /* 18px */
.text-xl { font-size: 1.25rem; }  /* 20px */
.text-2xl { font-size: 1.5rem; }  /* 24px */
.text-3xl { font-size: 1.875rem; } /* 30px */

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-relaxed { line-height: 1.625; }
.leading-normal { line-height: 1.5; }
.leading-tight { line-height: 1.25; }

/* Colors */
.text-muted-foreground { color: #a1a1aa; } /* zinc-400 */
.text-foreground { color: #e4e4e7; } /* zinc-200 */
.text-primary { color: #ff1744; }
.text-success { color: #4caf50; }

.bg-card { background: #1a1a1a; }
.bg-accent { background: rgba(255, 23, 68, 0.1); }
.bg-success { background: rgba(76, 175, 80, 0.1); }

.border-border { border-color: #2a2a2a; }
.border-primary { border-color: rgba(255, 23, 68, 0.3); }

/* Borders */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 4px; }
.rounded { border-radius: 6px; }
.rounded-md { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid #2a2a2a; }
.border-2 { border: 2px solid #2a2a2a; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }

/* Transitions */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }

/* Hover Effects */
.hover-lift:hover {
    transform: translateY(-2px);
}

.hover-border-primary:hover {
    border-color: #ff1744;
}

.section-title,
.section-title-minimal {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Container interno com max-width */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Header */
.header {
    background: #000000;
    padding: 20px 0;
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-red {
    color: #ff1744;
}

.header-search {
    flex: 1;
    max-width: 400px;
    margin: 0 30px;
    position: relative;
}

.header-search form {
    width: 100%;
    display: flex;
}

.header-search input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border-radius: 4px;
    border: 1px solid #333;
    font-size: 0.9rem;
    background: #1a1a1a;
    color: #ffffff;
}

.header-search input:focus {
    outline: none;
    border-color: #ff1744;
}

.header-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px 10px;
}

/* Botão Anunciar no Header */
.btn-anunciar {
    background: linear-gradient(135deg, #ff1744 0%, #e60031 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 23, 68, 0.3);
    border: 2px solid transparent;
    margin-left: 20px;
    margin-right: 20px;
}

.btn-anunciar:hover {
    background: linear-gradient(135deg, #e60031 0%, #cc0028 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 23, 68, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-anunciar i {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(255, 23, 68, 0.1);
    border-color: rgba(255, 23, 68, 0.3);
    transform: scale(1.05);
}

.hamburger-menu span {
    width: 24px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-menu:hover span {
    background: #ff1744;
}

/* Animação quando menu está aberto */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

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

/* ========================================
   FILTROS NO HEADER (Desktop e Mobile)
   ======================================== */

.header-filters {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0 20px;
}

.header-filters .filtro-link {
    padding: 10px 18px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.header-filters .filtro-link i {
    font-size: 1.1rem;
}

/* Remover CSS desnecessário dos filtros desktop */
.filtros-header-container,
.filtros-title,
.filtros-wrapper {
    display: none !important;
}

/* Mobile: ajustar layout do header */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .header-search {
        order: 3;
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
    
    .header-filters {
        order: 2;
        margin: 0;
        gap: 6px;
        flex: 1;
        justify-content: flex-end;
    }
    
    .btn-anunciar {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 100px 24px 24px;
    border-left: 2px solid rgba(255, 23, 68, 0.2);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
    animation: fadeIn 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.close-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-menu:hover {
    color: #ff1744;
    background: rgba(255, 23, 68, 0.1);
    border-color: rgba(255, 23, 68, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff1744 0%, #e60031 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-menu a:hover::before {
    transform: scaleY(1);
}

.mobile-menu a:hover {
    color: #ff1744;
    background: rgba(255, 23, 68, 0.08);
    border-color: rgba(255, 23, 68, 0.2);
    transform: translateX(8px);
    padding-left: 28px;
}

.mobile-menu a i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    opacity: 0.8;
}

.mobile-menu a:hover i {
    opacity: 1;
}

/* Botão Anunciar no Mobile Menu */
.btn-anunciar-mobile {
    background: linear-gradient(135deg, #ff1744 0%, #e60031 100%) !important;
    color: white !important;
    padding: 18px 24px !important;
    border-radius: 14px;
    text-align: center;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 24px 0 32px !important;
    border: 2px solid rgba(255, 23, 68, 0.3) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(255, 23, 68, 0.4), 
                0 0 0 0 rgba(255, 23, 68, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem !important;
    position: relative;
    overflow: hidden;
}

.btn-anunciar-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-anunciar-mobile:hover::before {
    left: 100%;
}

.btn-anunciar-mobile:hover {
    background: linear-gradient(135deg, #e60031 0%, #cc0028 100%) !important;
    color: white !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 23, 68, 0.6),
                0 0 0 8px rgba(255, 23, 68, 0.1);
    border-color: rgba(255, 23, 68, 0.5) !important;
}

.btn-anunciar-mobile:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-anunciar-mobile i {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* H1 Discreto acima do Carousel */
.hero-h1-discrete {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    margin: 20px auto 15px auto;
    max-width: 1200px;
    padding: 0 20px;
    letter-spacing: 0.3px;
}

/* Carousel Hero */
.carousel-hero {
    max-width: 1200px;
    margin: 30px auto 30px auto;
    padding: 0px;
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 6px;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.carousel-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    z-index: 2;
}

.carousel-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.carousel-info p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 23, 68, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    color: white;
    font-weight: 300;
    transition: background 0.3s;
}

.carousel-nav:hover {
    background: #ff1744;
}

.carousel-nav.prev { left: 20px; }
.carousel-nav.next { right: 20px; }

/* Section Title */
.section-title {
    font-size: 1.5rem; /* Reduzido de 1.875rem */
    font-weight: 600; /* Reduzido de 700 */
    color: rgba(228, 228, 231, 0.7); /* Mais discreto */
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 0.5px; /* Espaçamento mais sutil */
    text-transform: uppercase;
    line-height: 1.4;
    position: relative;
    padding-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 23, 68, 0.5), transparent);
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 23, 68, 0.2) 20%,
        rgba(255, 23, 68, 0.6) 50%,
        rgba(255, 23, 68, 0.2) 80%,
        transparent 100%
    );
    opacity: 0;
    animation: lineGrow 1s ease 0.3s forwards;
}

@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* Efeito hover sutil */
.section-title:hover {
    color: rgba(255, 23, 68, 0.9);
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title:hover::after {
    width: 120px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 23, 68, 0.4) 20%,
        rgba(255, 23, 68, 1) 50%,
        rgba(255, 23, 68, 0.4) 80%,
        transparent 100%
    );
    transition: all 0.4s ease;
}

/* Variante menor para subseções */
.section-title-small {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600; /* font-semibold */
    color: #e4e4e7;
    margin-bottom: 24px; /* mb-6 */
    letter-spacing: -0.3px;
}

/* Featured Cards */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 COLUNAS */
    gap: 30px;
    margin-bottom: 60px;
}

.featured-card {
    background: #1a1a1a; /* bg-card */
    border-radius: 8px; /* rounded-md */
    overflow: hidden;
    transition: all 0.3s ease; /* transition-all */
    cursor: pointer;
    border: 1px solid #2a2a2a; /* border border-border */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); /* shadow */
}

.featured-card:hover {
    transform: translateY(-5px); /* hover-lift enhanced */
    border-color: #ff1744; /* hover-border-primary */
    box-shadow: 0 10px 15px -3px rgba(255, 23, 68, 0.2), 0 4px 6px -4px rgba(255, 23, 68, 0.15);
}

.featured-card-image {
    width: 100% !important;
    height: 600px !important; /* ALTURA GRANDE - 400x600px (alterado de 450px) */
    object-fit: cover !important; /* CORTA E PREENCHE - Ocupa todo o espaço */
    object-position: center !important; /* Centraliza a imagem */
    background: #0a0a0a; /* Fundo escuro para preencher espaços */
    transition: transform 0.3s ease;
    display: block !important; /* Remove espaços em branco */
    max-width: 100% !important;
}

/* Garante que qualquer link/wrapper em volta também ocupe 100% */
.featured-card > a,
.featured-card > div,
.featured-card-image-wrapper {
    width: 100% !important;
    display: block !important;
}

.featured-card img {
    width: 100% !important;
    height: 600px !important; /* Alterado de 450px para 600px */
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.featured-card:hover .featured-card-image {
    transform: scale(1.05);
}

.featured-card-info {
    padding: 20px; /* p-5 */
}

/* ========================================
   CARD FEATURED STYLED - Design System v2
   ======================================== */

.card-featured-styled {
    background: #1a1a1a; /* bg-card */
    border-radius: 8px; /* rounded-md */
    overflow: hidden;
    transition: all 0.3s ease; /* transition-all */
    cursor: pointer;
    position: relative;
    border: 1px solid #2a2a2a; /* border border-border */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); /* shadow */
}

.card-featured-styled:hover {
    transform: translateY(-3px); /* hover-lift */
    border-color: #ff1744; /* hover-border-primary */
    box-shadow: 0 10px 15px -3px rgba(255, 23, 68, 0.2), 0 4px 6px -4px rgba(255, 23, 68, 0.15);
}

/* Imagem */
.card-featured-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    width: 100%;
    height: 600px; /* Altura fixa para o wrapper (alterado de 450px para 600px) */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-featured-image-wrapper > a {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.card-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cobre todo o espaço mantendo proporção */
    object-position: center; /* Centraliza a imagem */
    background: #0a0a0a;
    transition: transform 0.3s ease;
    display: block; /* Remove espaços em branco */
}

/* Garantir que TODAS as imagens nos cards ocupem 100% do espaço */
.card-featured-image-wrapper img,
.card-featured-image-wrapper .card-featured-image,
.card-featured-image-wrapper .wp-post-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 100% !important;
    min-height: 100% !important;
}

/* Sobrescrever especificamente imagens com atributos width/height inline */
.card-featured-image-wrapper img[width],
.card-featured-image-wrapper img[height] {
    width: 100% !important;
    height: 100% !important;
}

/* Forçar imagens com classes específicas do WordPress */
.card-featured-image-wrapper .wp-post-image,
.card-featured-image-wrapper .attachment-acompanhante-featured {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
}

.card-featured-styled:hover .card-featured-image {
    transform: scale(1.05);
}

/* Badge Online */
.badge-online-featured {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 0.875rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

/* ========================================
   BADGES DE DESTAQUE ELEGANTES
   ======================================== */

.badge-destaque {
    position: absolute;
    top: 12px;
    right: 12px; /* DIREITA para não conflitar com favorito */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem; /* text-xs */
    font-weight: 600; /* font-semibold */
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.badge-destaque svg {
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.card-featured-styled:hover .badge-destaque {
    transform: scale(1.05);
}

/* Badge Premium (Dourado) */
.badge-premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 193, 7, 0.9));
    color: #1a1a1a;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.badge-premium svg {
    stroke: #1a1a1a;
    fill: #1a1a1a;
}

/* Badge VIP (Roxo/Azul) */
.badge-vip-gold {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.9), rgba(99, 102, 241, 0.9));
    color: white;
    border: 1px solid rgba(147, 51, 234, 0.5);
}

.badge-vip-gold svg {
    stroke: white;
    fill: white;
}

/* Badge Destaque/Hot (Vermelho) */
.badge-hot {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.9), rgba(239, 68, 68, 0.9));
    color: white;
    border: 1px solid rgba(255, 23, 68, 0.5);
}

.badge-hot svg {
    stroke: white;
}

/* ========================================
   CONTEÚDO DO CARD FEATURED
   ======================================== */

.card-featured-content {
    padding: 16px; /* p-4 */
    display: flex;
    flex-direction: column;
    gap: 12px; /* space-y-3 */
}

/* Nome e Idade */
.card-featured-header {
    margin-bottom: 0;
}

.card-featured-name {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    color: #e4e4e7; /* text-foreground */
    margin: 0;
    line-height: 1.5; /* leading-normal */
}

.card-featured-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s; /* transition-colors */
}

.card-featured-name a:hover {
    color: #ff1744; /* text-primary */
}

.card-featured-age {
    font-weight: 400;
    color: #a1a1aa; /* text-muted-foreground */
    font-size: 1rem; /* text-base */
}

/* Localização */
.card-featured-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem; /* text-sm */
    color: #a1a1aa; /* text-muted-foreground */
}

.card-featured-icon {
    flex-shrink: 0;
    color: #ff1744; /* text-primary */
}

/* Faixa de Preço */
.card-featured-price {
    background: rgba(76, 175, 80, 0.1); /* bg-success */
    color: #4caf50; /* text-success */
    padding: 6px 12px;
    border-radius: 6px; /* rounded */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

/* Descrição */
.card-featured-description {
    font-size: 0.875rem; /* text-sm */
    color: #d4d4d8; /* lighter muted */
    line-height: 1.625; /* leading-relaxed */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tags */
.card-featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.card-featured-tag {
    background: rgba(255, 23, 68, 0.1); /* bg-accent */
    color: #ff1744; /* text-primary */
    padding: 4px 10px;
    border-radius: 12px; /* rounded-full-like */
    font-size: 0.75rem;
    font-weight: 500; /* font-medium */
    border: 1px solid rgba(255, 23, 68, 0.2); /* border-primary */
    white-space: nowrap;
    transition: all 0.3s ease;
}

.card-featured-tag:hover {
    background: rgba(255, 23, 68, 0.15);
    border-color: rgba(255, 23, 68, 0.4);
}

/* Rodapé */
.card-featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #2a2a2a; /* border-border */
    margin-top: 4px;
}

.card-featured-date {
    font-size: 0.75rem;
    color: #71717a; /* darker muted */
}

.card-featured-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: white;
    padding: 6px 12px;
    border-radius: 6px; /* rounded */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
}

.card-featured-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.3);
}

.card-featured-whatsapp svg {
    flex-shrink: 0;
}

/* ============================================
   BOTÃO WHATSAPP PADRÃO - TODOS OS CARDS
   Botão quadrado com cantos arredondados
   Design uniforme em todos os cards
   ============================================ */

.card-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 8px 12px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.card-whatsapp-btn svg {
    flex-shrink: 0;
    z-index: 2;
    width: 16px;
    height: 16px;
}

.card-whatsapp-btn span {
    z-index: 2;
    font-weight: 600;
    font-size: 0.8125rem;
}

/* Efeito de brilho no hover */
.card-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.card-whatsapp-btn:hover::before {
    left: 100%;
}

.card-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #20ba5a 0%, #0d7a5f 100%);
    border-color: #25D366;
}

.card-whatsapp-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}

/* Responsivo - ajustes para mobile */
@media (max-width: 768px) {
    .card-whatsapp-btn {
        padding: 7px 10px;
        font-size: 0.75rem;
    }
    
    .card-whatsapp-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .card-whatsapp-btn span {
        font-size: 0.75rem;
    }
}

/* Ajuste para cards pequenos (compact) */
.card-compact-footer .card-whatsapp-btn {
    padding: 7px 10px;
    font-size: 0.75rem;
}

/* Ajuste para cards TOP (botão compacto com largura limitada) */
.top-card .card-whatsapp-btn {
    padding: 7px 10px;
    font-size: 0.75rem;
    gap: 5px;
    max-width: 140px;
    width: auto;
}

.top-card .card-whatsapp-btn svg {
    width: 14px;
    height: 14px;
}

.top-card .card-whatsapp-btn span {
    font-size: 0.75rem;
}

/* Manter estilos antigos como fallback */

/* ============================================
   BOTÃO DE FAVORITOS
   Botão de coração para favoritar cards
   ============================================ */

.favorite-btn {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 999 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    pointer-events: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.favorite-btn:hover {
    background: rgba(255, 23, 68, 0.9) !important;
    transform: scale(1.15) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 4px 12px rgba(255, 23, 68, 0.5) !important;
}

.favorite-btn.active {
    background: rgba(255, 23, 68, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

.favorite-icon {
    font-size: 20px !important;
    line-height: 1 !important;
    display: block !important;
    position: relative !important;
    z-index: 1000 !important;
    pointer-events: none !important;
}

.favorite-btn.animating {
    animation: heartBeat 0.5s ease !important;
}

@keyframes heartBeat {
    0%, 100% { 
        transform: scale(1); 
    }
    25% { 
        transform: scale(1.3); 
    }
    50% { 
        transform: scale(1.1); 
    }
    75% { 
        transform: scale(1.2); 
    }
}

/* Garantir que favorito apareça em todos os cards */
.card-featured-image-wrapper .favorite-btn,
.card-compact-image-wrapper .favorite-btn,
.top-card-image-container .favorite-btn,
.card-taxi-image-wrapper .favorite-btn {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Responsivo */
@media (max-width: 640px) {
    .card-featured-content {
        padding: 12px;
        gap: 10px;
    }
    
    .card-featured-name {
        font-size: 1rem;
    }
    
    .card-featured-location {
        font-size: 0.8rem;
    }
    
    .card-featured-description {
        font-size: 0.8rem;
    }
    
    .card-featured-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .card-featured-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .badge-destaque {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

.featured-card-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
}


.featured-card-name a {
    color: inherit;
    text-decoration: none;
}



.featured-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; /* Espaçamento entre os blocos - AUMENTADO */
  align-items: center;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: capitalize;
  line-height: 1.6;
}

.featured-card-details i {
  margin-right: 6px; /* Espaço entre o ícone e o texto */
  color: #ff1744; /* Cor dos ícones */
}

.featured-card-details > * {
  display: flex;
  align-items: center;
  gap: 6px; /* Espaço interno entre ícone e texto */
  padding: 5px 12px; /* Padding interno */
  background: rgba(255, 255, 255, 0.05); /* Fundo sutil */
  border-radius: 4px; /* Bordas arredondadas */
}


.btn-whatsapp {
    width: 100%;
    background: #ff1744;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    text-align: center;
    display: block;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #e60031;
}

/* Banner */
.banner-ad {
    display: none !important; /* Banner removido - usar botão do header */
}

/* Top Cards - Horizontal */
.top-section {
    margin-bottom: 60px;
}

/* ========================================
   VIEW TOGGLE - Alternância Lista/Grade
   ======================================== */

.view-toggle-container {
    margin-bottom: 32px;
}

.view-toggle-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.view-toggle-buttons {
    display: flex;
    gap: 8px;
    background: #1a1a1a; /* bg-card */
    padding: 4px;
    border-radius: 8px; /* rounded-md */
    border: 1px solid #2a2a2a; /* border-border */
}

.view-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px; /* rounded */
    background: transparent;
    border: none;
    color: #a1a1aa; /* text-muted-foreground */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-toggle-btn:hover {
    color: #e4e4e7; /* text-foreground */
    background: rgba(255, 255, 255, 0.05);
}

.view-toggle-btn.active {
    background: #ff1744; /* bg-primary */
    color: white;
    box-shadow: 0 2px 4px rgba(255, 23, 68, 0.3);
}

.view-toggle-btn svg {
    flex-shrink: 0;
}

/* ========================================
   TOP CARDS - Modos Lista e Grade
   ======================================== */

.top-cards-view {
    transition: all 0.3s ease;
}

/* MODO LISTA - Cards Horizontais (Padrão) */
.top-cards-view.list-view .top-card {
    display: flex;
    flex-direction: row;
    height: 250px;
    margin-bottom: 20px;
    width: 100%;
}

.top-cards-view.list-view .top-card-image {
    width: 400px;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
}

.top-cards-view.list-view .top-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.top-cards-view.list-view .top-card:hover {
    transform: translateX(5px);
}

/* MODO GRADE - Cards Verticais em Grid */
.top-cards-view.grid-view {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    width: 100%;
}

.top-cards-view.grid-view .top-card {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    margin-bottom: 0 !important;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.top-cards-view.grid-view .top-card:hover {
    transform: translateY(-4px);
    border-color: #ff1744;
    box-shadow: 0 10px 15px -3px rgba(255, 23, 68, 0.2);
}

.top-cards-view.grid-view .top-card-image {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    flex-shrink: 0;
}

.top-cards-view.grid-view .top-card-content {
    padding: 20px !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.top-cards-view.grid-view .top-card-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.top-cards-view.grid-view .top-card-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.top-cards-view.grid-view .top-card-description {
    font-size: 0.875rem;
    line-height: 1.625;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.top-cards-view.grid-view .top-card-btn,
.top-cards-view.grid-view .top-card-whatsapp {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ========================================
   Responsivo - View Toggle
   ======================================== */

@media (max-width: 1024px) {
    .view-toggle-wrapper {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .view-toggle-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .top-cards-view.grid-view {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .top-cards-view.list-view .top-card {
        height: auto;
        flex-direction: column;
        overflow: hidden !important; /* CRITICAL: Impede overflow */
    }
    
    .top-cards-view.list-view .top-card-image-wrapper {
        width: 100% !important;
        height: 400px !important;
        background: #0a0a1a !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important; /* CRITICAL: Impede overflow */
        position: relative !important;
    }
    
    .top-cards-view.list-view .top-card-image-wrapper img,
    .top-cards-view.list-view .top-card-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        max-width: 100% !important;
        max-height: 400px !important;
        display: block !important;
    }
    
    .top-cards-view.list-view .top-card-content {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .view-toggle-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
    }
    
    .view-toggle-btn span {
        display: none;
    }
    
    .top-cards-view.grid-view {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .top-cards-view.list-view .top-card {
        height: auto;
        margin-bottom: 16px;
        flex-direction: column; /* Vertical no mobile */
        overflow: hidden !important; /* CRITICAL: Impede que imagem saia do card */
    }
    
    .top-cards-view.list-view .top-card-image-wrapper {
        height: 450px !important;
        width: 100% !important;
        background: #0a0a1a !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important; /* CRITICAL: Impede overflow da imagem */
        position: relative !important;
    }
    
    /* CRITICAL: Imagem 100% DENTRO do container */
    .top-cards-view.list-view .top-card-image-wrapper img,
    .top-cards-view.list-view .top-card-image-wrapper .top-card-image,
    .top-cards-view.list-view .top-card-image,
    .top-cards-view.list-view img {
        width: 100% !important;         /* Preenche largura do container */
        height: 100% !important;        /* Preenche altura do container */
        object-fit: contain !important; /* Mostra imagem completa */
        object-position: center !important;
        max-width: 100% !important;     /* Nunca ultrapassa largura */
        max-height: 450px !important;   /* Nunca ultrapassa altura */
        display: block !important;      /* Remove espaços inline */
    }
    
    .top-cards-view.list-view .top-card-content {
        padding: 16px;
    }
    
    /* Grid view também com imagens completas */
    .top-cards-view.grid-view .top-card-image-wrapper {
        height: 350px !important;
        background: #0a0a1a !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }
    
    .top-cards-view.grid-view .top-card-image-wrapper img,
    .top-cards-view.grid-view .top-card-image {
        object-fit: contain !important;
        object-position: center !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
    }
}

.top-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 250px;
}

.top-card:hover {
    transform: translateX(5px);
}

/* Wrapper da imagem com favorito */
.top-card-image-wrapper {
    position: relative;
    width: 400px;
    height: 250px;
    flex-shrink: 0;
    overflow: hidden;
    background: #0a0a1a; /* Fundo escuro para preencher espaços vazios */
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-card-image-wrapper a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.top-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Desktop usa cover */
}

/* Garantir que TODAS as imagens no top-card ocupem 100% do espaço */
.top-card-image-container > a {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.top-card-image-container img,
.top-card-image-container .top-card-image,
.top-card-image-container .wp-post-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 100% !important;
    min-height: 100% !important;
}

/* Sobrescrever especificamente imagens com atributos width/height inline */
.top-card-image-container img[width],
.top-card-image-container img[height] {
    width: 100% !important;
    height: 100% !important;
}

/* Forçar imagens com classes específicas do WordPress */
.top-card-image-container .wp-post-image,
.top-card-image-container .attachment-acompanhante-top {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
}

/* Ajustes para fotos horizontais */
.top-card-image.foto-horizontal {
    object-fit: cover;
    object-position: center;
}

/* Ajustes para fotos verticais */
.top-card-image.foto-vertical {
    object-fit: cover;
    object-position: center top;
}

/* MOBILE: Forçar contain antes das media queries para garantir prioridade */
@media (max-width: 1024px) {
    .top-card-image,
    .top-card-image.foto-horizontal,
    .top-card-image.foto-vertical,
    img.top-card-image,
    img.foto-horizontal,
    img.foto-vertical {
        object-fit: contain !important;
        object-position: center !important;
    }
}

.top-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

/* CRÍTICO: CSS Específico para Mobile - SEMPRE CONTAIN */
@media screen and (max-width: 1024px) {
    /* Qualquer imagem dentro de top-cards-view.list-view */
    .top-cards-view.list-view img,
    .top-cards-view.list-view .top-card-image,
    .top-cards-view.list-view img.foto-vertical,
    .top-cards-view.list-view img.foto-horizontal,
    .top-cards-view.list-view .top-card-image-wrapper img,
    .top-cards-view.list-view .wp-post-image {
        object-fit: contain !important;
        object-position: center center !important;
    }
}

@media screen and (max-width: 640px) {
    /* Extra específico para celulares */
    .top-cards-view.list-view img,
    .top-cards-view.list-view .top-card-image,
    .top-cards-view.list-view img.foto-vertical,
    .top-cards-view.list-view img.foto-horizontal {
        object-fit: contain !important;
        object-position: center center !important;
    }
}

.top-card-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.top-card-name a {
    color: inherit;
    text-decoration: none;
}

.top-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Espaçamento entre os blocos */
    align-items: center;
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 15px;
    line-height: 1.6;
}

.top-card-details > span {
    display: flex;
    align-items: center;
    gap: 6px; /* Espaço interno */
    padding: 5px 12px; /* Padding interno */
    background: rgba(255, 255, 255, 0.05); /* Fundo sutil */
    border-radius: 4px; /* Bordas arredondadas */
}

.top-card-details i {
    color: #ff1744; /* Cor dos ícones */
    margin-right: 6px;
}

.top-card-description {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 12px;
}

.top-card-btn {
    background: #ff1744;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    width: fit-content;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-card-btn:hover {
    background: #e60031;
}

.top-card-btn svg {
    flex-shrink: 0;
}

/* Botão WhatsApp estilo moderno (igual ao card-compact) */
.top-card-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.top-card-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.top-card-whatsapp svg {
    flex-shrink: 0;
}

/* Anuncios Grid */
.anuncios-section {
    margin-bottom: 60px;
}

.anuncios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 COLUNAS para Destaque */
    gap: 20px;
}

#taxiGrid {
    grid-template-columns: repeat(5, 1fr); /* 5 COLUNAS para Táxi */
}

.anuncio-card {
    background: #1a1a1a; /* bg-card */
    border-radius: 8px; /* rounded-md */
    overflow: hidden;
    transition: all 0.3s ease; /* transition-all */
    cursor: pointer;
    position: relative;
    border: 1px solid #2a2a2a; /* border border-border */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
}

.anuncio-card:hover {
    transform: translateY(-3px); /* hover-lift */
    border-color: #ff1744; /* hover-border-primary */
    box-shadow: 0 6px 16px rgba(255, 23, 68, 0.12);
}

.anuncio-card-image {
    width: 100%;
    height: 375px; /* ALTURA MÉDIA - 250x375px para Destaque */
    object-fit: contain; /* NÃO CORTA - Mostra modelo completa */
    background: #0a0a0a; /* Fundo escuro */
}

/* Altura específica para cards Táxi */
#taxiGrid .anuncio-card-image {
    height: 300px; /* ALTURA ATUAL - 200x300px para Táxi */
}

.anuncio-card-info {
    padding: 15px; /* p-4 smaller */
    text-align: center;
}

.anuncio-card-name {
    font-size: 1rem; /* text-base */
    font-weight: 600; /* font-semibold */
    color: #e4e4e7; /* text-foreground */
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.anuncio-card-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s; /* transition-colors */
}

.anuncio-card-name a:hover {
    color: #ff1744; /* text-primary */
}

.anuncio-card-location {
    font-size: 0.875rem; /* text-sm */
    color: #a1a1aa; /* text-muted-foreground */
}

/* ========================================
   CARD COMPACT ESTILIZADO - Design System v2
   ======================================== */

.card-compact-styled {
    background: #1a1a1a; /* bg-card */
    border-radius: 8px; /* rounded-md */
    overflow: hidden;
    transition: all 0.3s ease; /* transition-all */
    cursor: pointer;
    position: relative;
    border: 1px solid #2a2a2a; /* border border-border */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); /* shadow */
}

.card-compact-styled:hover {
    transform: translateY(-3px); /* hover-lift */
    border-color: #ff1744; /* hover-border-primary */
    box-shadow: 0 10px 15px -3px rgba(255, 23, 68, 0.2), 0 4px 6px -4px rgba(255, 23, 68, 0.15);
}

/* Imagem */
.card-compact-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-compact-image-wrapper > a {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.card-compact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0a0a0a;
    transition: transform 0.3s ease;
    display: block;
}

/* Garantir que TODAS as imagens no card compact ocupem 100% do espaço */
.card-compact-image-wrapper img,
.card-compact-image-wrapper .card-compact-image,
.card-compact-image-wrapper .wp-post-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 100% !important;
    min-height: 100% !important;
}

/* Sobrescrever especificamente imagens com atributos width/height inline */
.card-compact-image-wrapper img[width],
.card-compact-image-wrapper img[height] {
    width: 100% !important;
    height: 100% !important;
}

/* Forçar imagens com classes específicas do WordPress */
.card-compact-image-wrapper .wp-post-image,
.card-compact-image-wrapper .attachment-acompanhante-compact {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
}

.card-compact-styled:hover .card-compact-image {
    transform: scale(1.05);
}

/* Conteúdo */
.card-compact-content {
    padding: 12px; /* Reduzido de 16px */
    display: flex;
    flex-direction: column;
    gap: 8px; /* Reduzido de 12px */
}

/* Nome e Idade */
.card-compact-header {
    margin-bottom: 0;
}

.card-compact-name {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    color: #e4e4e7; /* text-foreground */
    margin: 0;
    line-height: 1.5; /* leading-normal */
}

.card-compact-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s; /* transition-colors */
}

.card-compact-name a:hover {
    color: #ff1744; /* text-primary */
}

.card-compact-age {
    font-weight: 400;
    color: #a1a1aa; /* text-muted-foreground */
    font-size: 1rem; /* text-base */
}

/* Localização */
.card-compact-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem; /* text-sm */
    color: #a1a1aa; /* text-muted-foreground */
}

.card-compact-icon {
    flex-shrink: 0;
    color: #ff1744; /* text-primary */
}

/* Faixa de Preço */
.card-compact-price {
    background: rgba(76, 175, 80, 0.1); /* bg-success */
    color: #4caf50; /* text-success */
    padding: 6px 12px;
    border-radius: 6px; /* rounded */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

/* Descrição */
.card-compact-description {
    font-size: 0.875rem; /* text-sm */
    color: #d4d4d8; /* lighter muted */
    line-height: 1.625; /* leading-relaxed */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tags */
.card-compact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.card-compact-tag {
    background: rgba(255, 23, 68, 0.1); /* bg-accent */
    color: #ff1744; /* text-primary */
    padding: 4px 10px;
    border-radius: 12px; /* rounded-full-like */
    font-size: 0.75rem;
    font-weight: 500; /* font-medium */
    border: 1px solid rgba(255, 23, 68, 0.2); /* border-primary */
    white-space: nowrap;
    transition: all 0.3s ease;
}

.card-compact-tag:hover {
    background: rgba(255, 23, 68, 0.15);
    border-color: rgba(255, 23, 68, 0.4);
}

/* Rodapé */
.card-compact-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #2a2a2a; /* border-border */
    margin-top: 4px;
}

.card-compact-date {
    font-size: 0.75rem;
    color: #71717a; /* darker muted */
}

.card-compact-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: white;
    padding: 6px 12px;
    border-radius: 6px; /* rounded */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
}

.card-compact-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.3);
}

.card-compact-whatsapp svg {
    flex-shrink: 0;
}

/* Responsivo Mobile */
@media (max-width: 640px) {
    .card-compact-content {
        padding: 12px;
        gap: 10px;
    }
    
    .card-compact-image {
        height: 280px;
    }
    
    .card-compact-name {
        font-size: 1rem;
    }
    
    .card-compact-location {
        font-size: 0.85rem;
    }
    
    .card-compact-description {
        font-size: 0.8rem;
    }
    
    .card-compact-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .card-compact-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   CARD TAXI COMPACTO - Design System v2
   ======================================== */

.card-taxi-compact {
    background: #1a1a1a; /* bg-card */
    border-radius: 6px; /* rounded */
    overflow: hidden;
    transition: all 0.3s ease; /* transition-all */
    cursor: pointer;
    position: relative;
    border: 1px solid #2a2a2a; /* border border-border */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
}

.card-taxi-compact:hover {
    transform: translateY(-2px); /* hover-lift */
    border-color: #ff1744; /* hover-border-primary */
    box-shadow: 0 6px 16px rgba(255, 23, 68, 0.12);
}

/* Imagem */
.card-taxi-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-taxi-image-wrapper > a {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.card-taxi-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0a0a0a;
    transition: transform 0.3s ease;
    display: block;
}

/* Garantir que TODAS as imagens no card taxi ocupem 100% do espaço */
.card-taxi-image-wrapper img,
.card-taxi-image-wrapper .card-taxi-image,
.card-taxi-image-wrapper .wp-post-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 100% !important;
    min-height: 100% !important;
}

/* Sobrescrever especificamente imagens com atributos width/height inline */
.card-taxi-image-wrapper img[width],
.card-taxi-image-wrapper img[height] {
    width: 100% !important;
    height: 100% !important;
}

/* Forçar imagens com classes específicas do WordPress */
.card-taxi-image-wrapper .wp-post-image,
.card-taxi-image-wrapper .attachment-acompanhante-thumb {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
}

.card-taxi-compact:hover .card-taxi-image {
    transform: scale(1.03);
}

/* Badges compactos */
.badge-online-taxi,
.badge-vip-taxi {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Conteúdo */
.card-taxi-content {
    padding: 10px; /* Reduzido de 12px */
    display: flex;
    flex-direction: column;
    gap: 6px; /* Reduzido de 8px */
}

/* Nome e Idade */
.card-taxi-name {
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    color: #e4e4e7; /* text-foreground */
    margin: 0;
    line-height: 1.5; /* leading-normal */
}

.card-taxi-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s; /* transition-colors */
}

.card-taxi-name a:hover {
    color: #ff1744; /* text-primary */
}

.card-taxi-age {
    font-weight: 400;
    color: #a1a1aa; /* text-muted-foreground */
    font-size: 0.875rem;
}

/* Localização */
.card-taxi-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #a1a1aa; /* text-muted-foreground */
}

.card-taxi-icon {
    flex-shrink: 0;
    color: #ff1744; /* text-primary */
}

/* Preço Compacto */
.card-taxi-price {
    background: rgba(76, 175, 80, 0.1); /* bg-success */
    color: #4caf50; /* text-success */
    padding: 4px 8px;
    border-radius: 4px; /* rounded-sm */
    font-size: 0.75rem;
    font-weight: 600; /* font-semibold */
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.2);
    display: inline-block;
    align-self: flex-start;
    transition: all 0.3s ease;
}

/* Tags Compactas */
.card-taxi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 2px;
}

.card-taxi-tag {
    background: rgba(255, 23, 68, 0.1); /* bg-accent */
    color: #ff1744; /* text-primary */
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 500; /* font-medium */
    border: 1px solid rgba(255, 23, 68, 0.2); /* border-primary */
    white-space: nowrap;
    transition: all 0.3s ease;
}

.card-taxi-tag:hover {
    background: rgba(255, 23, 68, 0.15);
}

/* Responsivo Mobile para Taxi */
@media (max-width: 640px) {
    .card-taxi-content {
        padding: 10px;
        gap: 6px;
    }
    
    .card-taxi-image {
        height: 250px;
    }
    
    .card-taxi-name {
        font-size: 0.9rem;
    }
    
    .card-taxi-location {
        font-size: 0.75rem;
    }
    
    .card-taxi-price {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .card-taxi-tag {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
}

.badge-online {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #5cb85c;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-vip {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f0ad4e;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Infinite Loader */
.infinite-loader {
    text-align: center;
    padding: 30px;
    display: none;
}

.infinite-loader.active {
    display: block;
}

.loader-spinner {
    border: 3px solid #333;
    border-top: 3px solid #ff1744;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/**
 * ============================================================================
 * SEÇÃO DE CONTEÚDO SEO NO FOOTER
 * Cores Oficiais do Tema ScortRio
 * ============================================================================
 */

/* Seção de Conteúdo SEO */
.footer-seo-content {
    background: #000000;
    padding: 60px 20px;
    border-top: 3px solid #ff1744;
    border-bottom: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho sutil no fundo (usando vermelho ScortRio) */
.footer-seo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 23, 68, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-seo-content .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.seo-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Título da seção */
.seo-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    text-transform: none;
}

.seo-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff1744, transparent);
}

/* Texto SEO */
.seo-text {
    color: #999;
    line-height: 1.8;
    font-size: 15px;
}

.seo-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.seo-text p:last-child {
    margin-bottom: 0;
}

.seo-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Links dentro do texto SEO */
.seo-text a {
    color: #ff1744;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.seo-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff1744;
    transition: width 0.3s ease;
}

.seo-text a:hover {
    color: #ff4569;
}

.seo-text a:hover::after {
    width: 100%;
}

/* Footer principal - mantém estilo original do tema */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 50px 20px 30px;
    margin-top: 0; /* Remove margin pois já tem a seção SEO */
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #ff1744;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff1744;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 8px 0;
    line-height: 1.6;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
    margin-top: 10px;
}

/* ============================================================================
   RESPONSIVO
   ============================================================================ */

/* Tablets */
@media (max-width: 768px) {
    .footer-seo-content {
        padding: 40px 20px;
    }
    
    .seo-title {
        font-size: 24px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .seo-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .seo-text p {
        margin-bottom: 18px;
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer-seo-content {
        padding: 30px 15px;
    }
    
    .seo-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .seo-title::after {
        width: 60px;
        height: 2px;
    }
    
    .seo-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .seo-text p {
        margin-bottom: 15px;
    }
    
    .footer {
        padding: 40px 15px 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
}

/* ============================================================================
   VARIAÇÕES DE ESTILO (OPCIONAL)
   ============================================================================ */

/* Versão com mais contraste */
.footer-seo-content.high-contrast {
    background: #000000;
    border-top: 5px solid #ff1744;
}

/* Versão com padrão sutil */
.footer-seo-content.patterned {
    background-image: 
        linear-gradient(#000000, #000000),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.01) 10px,
            rgba(255, 255, 255, 0.01) 20px
        );
}

/* ============================================================================
   ANIMAÇÕES SUAVES (OPCIONAL)
   ============================================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seo-content-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

/* Efeito de brilho nos links ao passar o mouse */
.seo-text a:hover {
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .header-search {
        display: none;
    }
    
    /* Esconder botão Anunciar no header mobile - aparece no menu */
    .btn-anunciar {
        display: none;
    }

    .carousel-hero {
        height: 300px;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr); /* Premium: 2 colunas em tablet */
        gap: 20px;
    }

    .anuncios-grid {
        grid-template-columns: repeat(3, 1fr); /* Destaque: 3 colunas em tablet */
        gap: 15px;
    }
    
    /* Ajustes para Destaque em tablet */
    .anuncios-grid .anuncio-card-image {
        height: 320px;
    }

    #taxiGrid {
        grid-template-columns: repeat(4, 1fr); /* Táxi: 4 colunas em tablet */
    }
    
    /* Ajustes para Táxi em tablet */
    #taxiGrid .anuncio-card-image {
        height: 280px;
    }

    .top-card {
        flex-direction: column;
        height: auto;
    }

    .top-card-image {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 640px) {
    .featured-grid {
        grid-template-columns: 1fr; /* Premium: 1 coluna em mobile */
    }

    .carousel-hero {
        height: 250px;
    }
    
    /* Banner removido - usar botão do header */
    .banner-ad {
        display: none !important;
    }

    /* Cards Destaque - 2 colunas no mobile */
    .anuncios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Ajustes específicos para cards Destaque */
    .anuncios-grid .anuncio-card {
        border-radius: 6px;
    }
    
    .anuncios-grid .anuncio-card-image {
        height: 280px; /* Altura otimizada */
        object-fit: cover; /* Preenche o card */
    }
    
    .anuncios-grid .anuncio-card-info {
        padding: 10px;
    }
    
    .anuncios-grid .anuncio-card-name {
        font-size: 0.9rem;
        margin-bottom: 3px;
        line-height: 1.3;
    }
    
    .anuncios-grid .anuncio-card-location {
        font-size: 0.75rem;
    }

    /* Cards Táxi - 2 colunas no mobile */
    #taxiGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Ajustes para cards Táxi no mobile */
    #taxiGrid .anuncio-card {
        border-radius: 6px;
    }
    
    #taxiGrid .anuncio-card-image {
        height: 280px;
        object-fit: cover;
    }
    
    #taxiGrid .anuncio-card-info {
        padding: 10px;
    }
    
    #taxiGrid .anuncio-card-name {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    #taxiGrid .anuncio-card-location {
        font-size: 0.75rem;
    }

    .top-card-image {
        height: 250px;
    }

    .top-card-content {
        padding: 20px;
    }

    .section-title {
        font-size: 1.3rem;
    }
    
    /* H1 Discreto - Mobile */
    .hero-h1-discrete {
        font-size: 1.1rem;
        margin: 15px auto 10px auto;
    }
    
    /* Page Header Home - Mobile */
    .page-header-home {
        padding: 12px 15px;
        margin-bottom: 15px;
    }
    
    .page-title-home {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    /* Filtro - Mobile */
    .filtro-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* Mobile muito pequeno - 2 colunas também */
@media (max-width: 400px) {
    /* Destaque - 2 colunas em telas muito pequenas */
    .anuncios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; /* Gap menor para caber melhor */
    }
    
    .anuncios-grid .anuncio-card-image {
        height: 260px; /* Altura ajustada para 2 cols */
    }
    
    .anuncios-grid .anuncio-card-info {
        padding: 8px;
    }
    
    .anuncios-grid .anuncio-card-name {
        font-size: 0.85rem; /* Nome menor */
        line-height: 1.2;
    }
    
    .anuncios-grid .anuncio-card-location {
        font-size: 0.7rem; /* Local menor */
    }
    
    /* Táxi - 2 colunas em telas muito pequenas */
    #taxiGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    #taxiGrid .anuncio-card-image {
        height: 260px;
    }
    
    #taxiGrid .anuncio-card-info {
        padding: 8px;
    }
    
    #taxiGrid .anuncio-card-name {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    #taxiGrid .anuncio-card-location {
        font-size: 0.7rem;
    }
}


/* ========================================
   H1 PRINCIPAL DA HOME
   ======================================== */

.page-header-home {
    text-align: center;
    padding: 15px 20px;
    margin-bottom: 20px;
}

/* Novo container de filtros no header */
.filtros-header-container {
    text-align: center;
    padding: 30px 20px 20px;
    margin: 0 auto;
    max-width: 1400px;
}

.filtros-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #e4e4e7;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.filtros-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.page-title-home {
    font-size: 1.3rem;
    font-weight: 400;
    color: #999;
    line-height: 1.5;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.destaque-vermelho {
    color: #ff1744;
    font-weight: 500;
}

.filtros-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Separador entre os filtros */
.filtros-discretos + .filtros-discretos::before {
    content: '•';
    color: #666;
    margin: 0 5px;
    font-size: 0.8rem;
}

/* ========================================
   FILTROS DISCRETOS (Busque por bairros / tipo)
   ======================================== */

.filtros-discretos {
    display: inline-block;
    margin: 0 10px;
}

.filtro-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff1744;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(255, 23, 68, 0.05);
    border: 1px solid rgba(255, 23, 68, 0.2);
}

.filtro-link:hover {
    color: #ff4569;
    background: rgba(255, 23, 68, 0.1);
    border-color: rgba(255, 23, 68, 0.4);
    transform: translateY(-1px);
}

.filtro-link i {
    font-size: 1rem;
}

/* ========================================
   POP-UP OVERLAY & CONTENT
   ======================================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-content {
    background: #1a1a1a;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid #2a2a2a;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #999;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    color: #ff1744;
    transform: rotate(90deg);
}

/* ========================================
   POP-UP HEADER
   ======================================== */

.popup-header {
    padding: 20px;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    gap: 15px;
}

.popup-back {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.popup-back:hover {
    color: #ff1744;
}

.popup-search {
    flex: 1;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.popup-search:focus {
    border-color: #ff1744;
}

.popup-search::placeholder {
    color: #666;
}

/* ========================================
   POP-UP BODY
   ======================================== */

.popup-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Scrollbar customizada */
.popup-body::-webkit-scrollbar {
    width: 8px;
}

.popup-body::-webkit-scrollbar-track {
    background: #0a0a0a;
}

.popup-body::-webkit-scrollbar-thumb {
    background: #ff1744;
    border-radius: 4px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
    background: #ff4569;
}

.bairros-list,
.caracteristicas-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bairro-item,
.caracteristica-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #0a0a0a;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bairro-item:hover,
.caracteristica-item:hover {
    background: rgba(255, 23, 68, 0.1);
}

.bairro-item input[type="checkbox"],
.caracteristica-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #ff1744;
}

.bairro-item span,
.caracteristica-item span {
    flex: 1;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

/* Primeiro item (Selecionar todos) */
.bairro-item:first-child,
.caracteristica-item:first-child {
    background: rgba(255, 23, 68, 0.15);
    border: 1px solid rgba(255, 23, 68, 0.3);
    font-weight: 600;
}

/* ========================================
   POP-UP FOOTER
   ======================================== */

.popup-footer {
    padding: 20px;
    border-top: 1px solid #2a2a2a;
    display: flex;
    gap: 15px;
}

.btn-popup-fechar,
.btn-popup-buscar {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-popup-fechar {
    background: transparent;
    border: 2px solid #2a2a2a;
    color: #999;
}

.btn-popup-fechar:hover {
    border-color: #fff;
    color: #fff;
}

.btn-popup-buscar {
    background: #ff1744;
    color: #fff;
}

.btn-popup-buscar:hover {
    background: #ff4569;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 23, 68, 0.4);
}

/* ========================================
   RESPONSIVE POP-UP
   ======================================== */

@media (max-width: 768px) {
    /* H1 responsivo */
    .page-header-home {
        padding: 30px 20px 20px 20px;
        margin-bottom: 30px;
    }
    
    .page-title-home {
        font-size: 1.5rem;
    }
    
    .filtros-container {
        flex-direction: row;
        gap: 3px;
    }
    
    /* Pop-up */
    .popup-content {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 16px 16px 0 0;
        margin-top: auto;
    }
    
    .popup-header {
        padding: 15px;
    }
    
    .popup-body {
        padding: 15px;
    }
    
    .popup-footer {
        padding: 15px;
        flex-direction: column;
    }
    
    .popup-search {
        font-size: 16px; /* Evita zoom no iOS */
    }
}

@media (max-width: 480px) {
    /* H1 mobile */
    .page-title-home {
        font-size: 1.3rem;
    }
    
    .filtros-container {
        font-size: 0.9rem;
    }
    
    /* Filtros */
    .filtro-link {
        font-size: 0.9rem;
    }
    
    .bairro-item span,
    .caracteristica-item span {
        font-size: 0.95rem;
    }
}

/* ========================================
   SEÇÕES MINIMALISTAS (Fatal Models Style)
   ======================================== */

/* Título padrão para seções discretas */
.section-title-minimal {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    text-transform: none;
    letter-spacing: 0;
}

/* ========================================
   ESTATÍSTICAS - Versão Discreta
   ======================================== */

.stats-section-discrete {
    background: transparent;
    padding: 40px 0;
    margin: 0;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff1744;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #2a2a2a;
}

/* ========================================
   BLOG - Versão Elegante com Imagens
   ======================================== */

/* Banner do Blog */
.blog-banner-section {
    background: transparent;
    padding: 40px 0 20px 0;
    margin: 0;
}

.blog-banner-figure {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-banner-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.blog-banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.blog-banner-link:hover .blog-banner-img {
    transform: scale(1.03);
}

/* Seção Blog */
.blog-section-elegant {
    background: transparent;
    padding: 10px 0;
    margin: 0;
}

.blog-elegant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-elegant-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-elegant-card:hover {
    transform: translateY(-5px);
    border-color: #ff1744;
}

.blog-elegant-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-elegant-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-elegant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-elegant-card:hover .blog-elegant-image img {
    transform: scale(1.05);
}

.blog-elegant-placeholder {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder-icon {
    font-size: 3rem;
    opacity: 0.3;
}

.blog-elegant-content {
    padding: 20px;
}

.blog-elegant-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-elegant-link:hover .blog-elegant-title {
    color: #ff1744;
}

.blog-elegant-excerpt {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.5;
    margin-bottom: 15px;
}

.blog-elegant-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-elegant-date {
    font-size: 0.85rem;
    color: #666;
}

.blog-elegant-arrow {
    font-size: 1.2rem;
    color: #ff1744;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.blog-elegant-link:hover .blog-elegant-arrow {
    opacity: 1;
    transform: translateX(0);
}

.blog-elegant-footer {
    text-align: center;
    margin-top: 30px;
}

.blog-ver-todos {
    display: inline-block;
    color: #ff1744;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-ver-todos:hover {
    color: #ff4569;
}

/* ========================================
   PÁGINAS DO BLOG
   ======================================== */

/* Single Post */
.blog-single-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 20px;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #999;
}

.blog-breadcrumb a {
    color: #ff1744;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: #ff4569;
}

.blog-breadcrumb .separator {
    color: #666;
}

.blog-breadcrumb .current {
    color: #ccc;
}

.blog-single-article {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.blog-single-header {
    margin-bottom: 30px;
}

.blog-single-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-single-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #999;
}

.meta-date, .meta-category {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-single-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-single-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

.blog-single-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-single-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-single-content p {
    margin-bottom: 20px;
}

.blog-single-content ul, .blog-single-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.blog-single-content li {
    margin-bottom: 10px;
}

.blog-single-content a {
    color: #ff1744;
    text-decoration: underline;
}

.blog-single-content a:hover {
    color: #ff4569;
}

.blog-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.blog-single-content blockquote {
    border-left: 4px solid #ff1744;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #999;
}

.blog-single-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
    margin-bottom: 30px;
}

.tags-label {
    font-weight: 600;
    color: #999;
}

.tag-item {
    background: rgba(255, 23, 68, 0.1);
    color: #ff1744;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #ff1744;
    color: white;
}

.blog-single-share {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
}

.share-label {
    font-weight: 600;
    color: #999;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    background: #2a2a2a;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-facebook:hover {
    background: #1877f2;
}

.share-twitter:hover {
    background: #1da1f2;
}

.share-whatsapp:hover {
    background: #25d366;
}

.blog-related {
    margin-bottom: 40px;
}

.related-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.blog-back-link {
    text-align: center;
}

.btn-back-blog {
    display: inline-block;
    background: transparent;
    border: 2px solid #ff1744;
    color: #ff1744;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-blog:hover {
    background: #ff1744;
    color: white;
}

/* Archive & Blog Page */
.blog-archive-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.blog-archive-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
}

.blog-archive-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.blog-archive-subtitle {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 20px;
}

.archive-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.blog-pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #ccc;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: #ff1744;
    border-color: #ff1744;
    color: white;
}

.blog-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 10px 20px;
}

.blog-no-posts h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.blog-no-posts p {
    color: #999;
    margin-bottom: 30px;
}

.btn-back-home {
    display: inline-block;
    background: #ff1744;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: #ff4569;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff1744;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 12px;
}

.categories-list a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.categories-list a:hover {
    color: #ff1744;
}

.cat-count {
    color: #666;
    font-size: 0.9rem;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a2a;
}

.recent-posts-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-posts-list a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.recent-posts-list a:hover {
    color: #ff1744;
}

.post-date {
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Blog Pages */
@media (max-width: 1024px) {
    .blog-archive-container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blog-single-container {
        padding: 40px 15px;
    }
    
    .blog-single-article {
        padding: 25px;
    }
    
    .blog-single-title {
        font-size: 1.8rem;
    }
    
    .blog-single-content {
        font-size: 1rem;
    }
    
    .blog-archive-container {
        padding: 40px 15px;
    }
    
    .blog-archive-title {
        font-size: 1.8rem;
    }
    
    .blog-archive-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SOBRE - Versão Customizer (Editável)
   ======================================== */

.about-section-customizer {
    background: transparent;
    padding: 10px 0;
    margin: 0;
}

.about-customizer-content {
    max-width: 1200px;
    margin: 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
}

.about-customizer-content::-webkit-scrollbar {
    width: 8px;
}

.about-customizer-content::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.about-customizer-content::-webkit-scrollbar-thumb {
    background: #ff1744;
    border-radius: 4px;
}

.about-customizer-content::-webkit-scrollbar-thumb:hover {
    background: #ff4569;
}

.about-section-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a2a;
}

.about-section-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-item-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ff1744;
    margin-bottom: 10px;
    text-align: left;
}

.about-item-content {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 10px;
}

.about-item-content p {
    margin-bottom: 10px;
}

.about-item-content strong {
    color: #ffffff;
}

.about-item-content a {
    color: #ff1744;
    text-decoration: underline;
}

.about-item-content a:hover {
    color: #ff4569;
}

.about-item-content ul,
.about-item-content ol {
    padding-left: 25px;
    margin-bottom: 8px;
}

.about-item-content li {
    margin-bottom: 5px;
}

.about-item-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff1744;
    margin: 15px 0 8px 0;
}

.about-item-additional {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
}

.about-item-additional p {
    margin-bottom: 8px;
}

/* ========================================
   RESPONSIVE - SEÇÕES MINIMALISTAS
   ======================================== */

@media (max-width: 768px) {
    /* Stats */
    .stats-section-discrete {
        padding: 10px 20px;
    }
    
    .stats-row {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* Blog */
    .blog-banner-section {
        padding: 30px 20px 15px 20px;
    }
    
    .blog-banner-figure {
        border-radius: 8px;
    }
    
    .blog-section-elegant {
        padding: 15px 15px;
    }
    
    .blog-elegant-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .blog-elegant-image {
        height: 180px;
    }
    
    /* About */
    .about-section-customizer {
        padding: 15px 15px;
    }
    
    .about-customizer-content {
        max-width: 100%;
    }
    
    .about-item-title {
        font-size: 1.5rem;
    }
    
    .about-section-item {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    /* Título */
    .section-title-minimal {
        font-size: 1.3rem;
    }
}

/* Fix H3 para manter design original */


/* ========================================
   MELHORIAS MENU MOBILE - SCROLLBAR
   ======================================== */

.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff1744 0%, #e60031 100%);
    border-radius: 10px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e60031 0%, #cc0028 100%);
}

/* Prevenir scroll do body quando menu aberto */
body.menu-open {
    overflow: hidden;
}

/* Separador no menu */
.mobile-menu hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 23, 68, 0.3) 50%, transparent 100%);
    margin: 24px 0;
}

/* Animação dos itens do menu */
.mobile-menu.active a {
    animation: slideInRight 0.3s ease forwards;
    opacity: 0;
}

.mobile-menu.active a:nth-child(2) { animation-delay: 0.05s; }
.mobile-menu.active a:nth-child(3) { animation-delay: 0.1s; }
.mobile-menu.active a:nth-child(4) { animation-delay: 0.15s; }
.mobile-menu.active a:nth-child(5) { animation-delay: 0.2s; }
.mobile-menu.active a:nth-child(6) { animation-delay: 0.25s; }
.mobile-menu.active a:nth-child(7) { animation-delay: 0.3s; }
.mobile-menu.active a:nth-child(8) { animation-delay: 0.35s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Melhorias responsivas */
@media (max-width: 480px) {
    .mobile-menu {
        width: 280px;
        padding: 90px 20px 20px;
    }
    
    .mobile-menu a {
        font-size: 0.95rem;
        padding: 14px 16px;
    }
    
    .btn-anunciar-mobile {
        padding: 16px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* Badge de notificação (futuro) */
.mobile-menu a .badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff1744 0%, #e60031 100%);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 23, 68, 0.4);
}

/* ========================================
   TÍTULOS DE SEÇÃO DISCRETOS - VARIAÇÕES
   ======================================== */

/* Título extra discreto (para vitrine, etc) */
.section-title-discrete {
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    color: rgba(228, 228, 231, 0.4);
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease 0.2s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.section-title-discrete::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(255, 23, 68, 0.3);
}

/* Título elegante com ícone */
.section-title-elegant {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(228, 228, 231, 0.6);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    animation: slideDown 0.6s ease 0.2s forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title-elegant::before,
.section-title-elegant::after {
    content: '';
    flex: 0 0 60px;
    height: 1px;
    background: linear-gradient(
        var(--gradient-direction, 90deg),
        transparent,
        rgba(255, 23, 68, 0.4)
    );
}

.section-title-elegant::before {
    --gradient-direction: 270deg;
}

/* Título minimalista */
.section-title-minimal {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(228, 228, 231, 0.5);
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    opacity: 0;
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.section-title-minimal:hover {
    color: rgba(255, 23, 68, 0.7);
    letter-spacing: 4px;
    transition: all 0.3s ease;
}

/* Título com badge */
.section-title-badge {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(228, 228, 231, 0.6);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.2s forwards;
}

.section-title-badge::before {
    content: '•';
    position: absolute;
    left: calc(50% - 100px);
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 23, 68, 0.4);
    font-size: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.section-title-badge::after {
    content: '•';
    position: absolute;
    right: calc(50% - 100px);
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 23, 68, 0.4);
    font-size: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.5);
    }
}

/* Título com gradiente sutil */
.section-title-gradient {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(
        135deg,
        rgba(228, 228, 231, 0.4) 0%,
        rgba(255, 23, 68, 0.6) 50%,
        rgba(228, 228, 231, 0.4) 100%
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    opacity: 0;
    animation: fadeInGradient 1s ease 0.2s forwards, gradientShift 4s ease-in-out infinite;
}

@keyframes fadeInGradient {
    to {
        opacity: 1;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Performance: usar will-change apenas quando necessário */
.section-title:hover,
.section-title-elegant:hover,
.section-title-minimal:hover {
    will-change: transform, color, letter-spacing;
}

/* Reduzir motion para usuários que preferem */
@media (prefers-reduced-motion: reduce) {
    .section-title,
    .section-title-discrete,
    .section-title-elegant,
    .section-title-minimal,
    .section-title-badge,
    .section-title-gradient {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .section-title::after,
    .section-title-badge::before,
    .section-title-badge::after {
        animation: none;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.25rem;
        margin-bottom: 32px;
        padding-bottom: 16px;
    }
    
    .section-title-elegant::before,
    .section-title-elegant::after {
        flex: 0 0 30px;
    }
    
    .section-title-discrete {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .section-title-badge::before {
        left: calc(50% - 70px);
    }
    
    .section-title-badge::after {
        right: calc(50% - 70px);
    }
    
    /* Ajustar altura das imagens no mobile */
    .card-compact-image,
    .card-compact-image-wrapper {
        height: auto;
        min-height: 250px;
        max-height: 350px;
    }
    
    .card-taxi-image,
    .card-taxi-image-wrapper {
        height: auto;
        min-height: 200px;
        max-height: 280px;
    }
    
    .card-compact-image,
    .card-taxi-image {
        object-fit: cover;
        aspect-ratio: 3/4;
    }
    
    /* Filtros responsivos no mobile */
    .filtros-header-container {
        padding: 20px 15px 15px;
    }
    
    .filtros-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .filtros-wrapper {
        gap: 6px;
    }
    
    .filtro-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* Títulos específicos por seção */
.featured-grid .section-title,
.taxi-section .section-title,
.top-section .section-title {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(228, 228, 231, 0.45);
    letter-spacing: 2.5px;
    margin-bottom: 40px;
}

/* Ocultar completamente títulos se necessário */
.section-title-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================
   MODAL DE CONTATO (TELEFONE/WHATSAPP)
   ======================================== */

/* Overlay do Modal */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.contact-modal-overlay.active {
    display: flex;
}

/* Modal Container */
.contact-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 40px 32px;
    max-width: 420px;
    width: 100%;
    position: relative;
    border: 2px solid rgba(255, 23, 68, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Botão Fechar */
.contact-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.contact-modal-close:hover {
    background: rgba(255, 23, 68, 0.1);
    border-color: rgba(255, 23, 68, 0.3);
    color: #ff1744;
    transform: rotate(90deg);
}

/* Header do Modal */
.contact-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-modal-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.contact-modal-subtitle {
    font-size: 0.875rem;
    color: rgba(228, 228, 231, 0.5);
    letter-spacing: 0.5px;
}

/* Número de Telefone */
.contact-modal-phone {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 23, 68, 0.15);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-modal-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 23, 68, 0.1), 
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.contact-modal-phone-label {
    font-size: 0.75rem;
    color: rgba(228, 228, 231, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.contact-modal-phone-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

/* Botões de Ação */
.contact-modal-actions {
    display: grid;
    gap: 12px;
}

.contact-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.contact-modal-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-modal-btn:hover::before {
    width: 300px;
    height: 300px;
}

.contact-modal-btn i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.contact-modal-btn span {
    position: relative;
    z-index: 1;
}

/* Botão WhatsApp */
.contact-modal-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: 2px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.contact-modal-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    border-color: rgba(37, 211, 102, 0.6);
}

.contact-modal-btn-whatsapp:active {
    transform: translateY(-1px);
}

/* Botão Ligar */
.contact-modal-btn-call {
    background: linear-gradient(135deg, #ff1744 0%, #e60031 100%);
    color: #fff;
    border: 2px solid rgba(255, 23, 68, 0.3);
    box-shadow: 0 8px 24px rgba(255, 23, 68, 0.3);
}

.contact-modal-btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 23, 68, 0.5);
    border-color: rgba(255, 23, 68, 0.6);
}

.contact-modal-btn-call:active {
    transform: translateY(-1px);
}

/* Botão Copiar */
.contact-modal-btn-copy {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.contact-modal-btn-copy:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-modal-btn-copy:active {
    transform: translateY(0);
}

/* Estado Copiado */
.contact-modal-btn-copy.copied {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    border-color: rgba(76, 175, 80, 0.5);
}

.contact-modal-btn-copy.copied i::before {
    content: "\f00c"; /* checkmark */
}

/* Aviso no rodapé */
.contact-modal-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.contact-modal-note {
    font-size: 0.75rem;
    color: rgba(228, 228, 231, 0.4);
    line-height: 1.5;
}

/* Responsivo */
@media (max-width: 480px) {
    .contact-modal {
        padding: 32px 24px;
        max-width: 100%;
        margin: 0 16px;
    }
    
    .contact-modal-phone-number {
        font-size: 1.5rem;
    }
    
    .contact-modal-btn {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
}

/* Animação de entrada dos botões */
.contact-modal.active .contact-modal-btn {
    animation: slideInBtn 0.5s ease forwards;
    opacity: 0;
}

.contact-modal.active .contact-modal-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-modal.active .contact-modal-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-modal.active .contact-modal-btn:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInBtn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Prevenir scroll quando modal aberto */
body.modal-open {
    overflow: hidden;
}

/* Ajuste para botão WhatsApp como button */

/* ========================================
   AJUSTES PARA BOTÕES (não links)
   ======================================== */

/* Remover estilos de button padrão, mas manter o CSS visual original */
.card-compact-whatsapp,
.card-featured-whatsapp,
.top-card-whatsapp {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Focus apenas (acessibilidade) */
.card-compact-whatsapp:focus,
.card-featured-whatsapp:focus,
.top-card-whatsapp:focus {
    outline: 2px solid rgba(37, 211, 102, 0.6);
    outline-offset: 2px;
}

/* ========================================
   MELHORIAS CARDS TOP - MOBILE
   ======================================== */

/* Ajustes adicionais para fotos horizontais no mobile */
@media (max-width: 1024px) {
    .top-card-image-wrapper {
        background: #0a0a1a;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    /* Gradiente sutil nas bordas para transição suave */
    .top-card-image-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 80%,
            rgba(10, 10, 26, 0.3) 95%,
            rgba(10, 10, 26, 0.6) 100%
        );
        pointer-events: none;
    }
    
    /* Garantir que a imagem não ultrapasse o container */
    .top-cards-view.list-view .top-card-image,
    .top-cards-view.grid-view .top-card-image {
        max-width: 100%;
        max-height: 100%;
        width: auto !important;
        height: auto !important;
        margin: auto;
    }
}

/* Mobile pequeno - ajustes extras */
@media (max-width: 640px) {
    /* Aumentar altura para fotos terem espaço adequado e aparecerem completas */
    .top-cards-view.list-view .top-card-image-wrapper,
    .top-cards-view.grid-view .top-card-image-wrapper {
        min-height: 320px;
        height: 320px;
        background: #0a0a1a;
    }
    
    /* Garantir que todas as imagens sejam exibidas completas */
    .top-cards-view.list-view .top-card-image-wrapper img,
    .top-cards-view.grid-view .top-card-image-wrapper img,
    .top-card-image-wrapper .top-card-image {
        object-fit: contain !important;
        object-position: center;
        width: 100%;
        height: 100%;
    }
    
    /* Nome menor no mobile */
    .top-card-name {
        font-size: 1.5rem !important;
    }
    
    /* Detalhes mais compactos */
    .top-card-details {
        font-size: 0.875rem !important;
        gap: 10px !important;
    }
}

/* Garantir que imagens horizontais sejam exibidas completas em tablets e mobile */
.top-card-image.foto-horizontal {
    aspect-ratio: auto;
    max-height: none;
}

@media (max-width: 1024px) {
    .top-card-image.foto-horizontal,
    .top-card-image.foto-vertical {
        aspect-ratio: auto;
        object-fit: contain !important;
        object-position: center;
    }
    
    /* Garantir que o wrapper tenha fundo escuro */
    .top-card-image-wrapper {
        background: #0a0a1a !important;
    }
}

/* ============================================
   SKELETON LOADING - CARDS
   Animação de carregamento para melhor UX
   ============================================ */

/* Keyframe da animação de shimmer */
@keyframes skeleton-loading {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

/* Container base do skeleton */
.skeleton {
    animation: skeleton-loading 1.5s ease-in-out infinite;
    background: linear-gradient(
        90deg,
        #1a1a1a 0%,
        #2a2a2a 20%,
        #3a3a3a 40%,
        #2a2a2a 60%,
        #1a1a1a 100%
    );
    background-size: 800px 100%;
}

/* Skeleton para imagens dos cards */
.skeleton-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: inherit;
}

/* Esconder skeleton quando imagem carregar */
.card-featured-image-wrapper img,
.card-compact-image-wrapper img,
.top-card-image-container img,
.card-taxi-image-wrapper img {
    opacity: 0;
    transition: opacity 0.4s ease-in;
    background: transparent;
    position: relative;
    z-index: 3;
}

.card-featured-image-wrapper img.loaded,
.card-compact-image-wrapper img.loaded,
.top-card-image-container img.loaded,
.card-taxi-image-wrapper img.loaded {
    opacity: 1;
}

/* Skeleton específico para cada tipo de card */

/* Card Featured */
.card-featured-image-wrapper {
    position: relative;
    background: #1a1a1a;
    min-height: 600px; /* Ajustado de 400px para 600px */
    overflow: hidden;
}

.card-featured-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #1a1a1a 0%,
        #2a2a2a 20%,
        #3a3a3a 40%,
        #2a2a2a 60%,
        #1a1a1a 100%
    );
    background-size: 800px 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    z-index: 1;
    border-radius: inherit;
    opacity: 1;
    transition: opacity 0.4s ease-in;
    pointer-events: none;
}

.card-featured-image-wrapper.loaded::before {
    opacity: 0;
}

/* Card Compact */
.card-compact-image-wrapper {
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
}

.card-compact-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #1a1a1a 0%,
        #2a2a2a 20%,
        #3a3a3a 40%,
        #2a2a2a 60%,
        #1a1a1a 100%
    );
    background-size: 800px 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    z-index: 1;
    border-radius: inherit;
    opacity: 1;
    transition: opacity 0.4s ease-in;
    pointer-events: none;
}

.card-compact-image-wrapper.loaded::before {
    opacity: 0;
}

/* Card TOP */
.top-card-image-container {
    position: relative;
    background: #1a1a1a;
    min-height: 280px;
    overflow: hidden;
}

.top-card-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #1a1a1a 0%,
        #2a2a2a 20%,
        #3a3a3a 40%,
        #2a2a2a 60%,
        #1a1a1a 100%
    );
    background-size: 800px 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    z-index: 1;
    border-radius: inherit;
    opacity: 1;
    transition: opacity 0.4s ease-in;
    pointer-events: none;
}

.top-card-image-container.loaded::before {
    opacity: 0;
}

/* Card Taxi */
.card-taxi-image-wrapper {
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
}

.card-taxi-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #1a1a1a 0%,
        #2a2a2a 20%,
        #3a3a3a 40%,
        #2a2a2a 60%,
        #1a1a1a 100%
    );
    background-size: 800px 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    z-index: 1;
    border-radius: inherit;
    opacity: 1;
    transition: opacity 0.4s ease-in;
    pointer-events: none;
}

.card-taxi-image-wrapper.loaded::before {
    opacity: 0;
}

/* Fallback visual para imagens quebradas */
.card-featured-image-wrapper img[src=""],
.card-compact-image-wrapper img[src=""],
.top-card-image-container img[src=""],
.card-taxi-image-wrapper img[src=""],
.card-featured-image-wrapper img:not([src]),
.card-compact-image-wrapper img:not([src]),
.top-card-image-container img:not([src]),
.card-taxi-image-wrapper img:not([src]) {
    opacity: 0;
}

/* Skeleton para texto (opcional - usar se quiser skeleton no texto também) */
.skeleton-text {
    height: 12px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.skeleton-text.title {
    height: 20px;
    width: 80%;
}

.skeleton-text.subtitle {
    height: 14px;
    width: 60%;
}

.skeleton-text.description {
    height: 12px;
    width: 100%;
}

/* Performance - reduzir animação em dispositivos lentos */
@media (prefers-reduced-motion: reduce) {
    .skeleton,
    .card-featured-image-wrapper::before,
    .card-compact-image-wrapper::before,
    .top-card-image-container::before,
    .card-taxi-image-wrapper::before {
        animation: none;
        background: #2a2a2a;
    }
}

/* Garantir que o skeleton não apareça após carregamento */
img[data-loaded="true"] + .skeleton,
.loaded .skeleton {
    display: none;
}

/* ========================================
   MOBILE - FORÇAR IMAGENS COMPLETAS
   ======================================== */
@media (max-width: 1024px) {
    /* Força imagens completas em tablets e mobile */
    .top-cards-view.list-view .top-card-image-wrapper,
    .top-cards-view.list-view .top-card-image-wrapper a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }
    
    /* CRITICAL: Imagem 100% do container */
    .top-cards-view.list-view .top-card-image-wrapper img,
    .top-cards-view.list-view .top-card-image,
    .top-cards-view.list-view img.foto-horizontal,
    .top-cards-view.list-view img.foto-vertical,
    .top-cards-view.list-view img.wp-post-image {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 400px !important;
        object-fit: contain !important;
        object-position: center !important;
        display: block !important;
    }
}

@media (max-width: 640px) {
    /* Container com overflow hidden */
    .top-cards-view.list-view .top-card-image-wrapper {
        min-height: 450px !important;
        height: 450px !important;
        overflow: hidden !important;
    }
    
    /* CRITICAL: Imagem 100% DENTRO do container */
    .top-cards-view.list-view .top-card-image-wrapper img,
    .top-cards-view.list-view img.wp-post-image,
    .top-cards-view.list-view .top-card-image,
    .top-cards-view.list-view img[width][height] {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 450px !important;
        object-fit: contain !important;
        object-position: center !important;
        display: block !important;
    }
    
    /* Sobrescrever qualquer estilo inline */
    .top-cards-view.list-view .top-card-image-wrapper img[style],
    .top-cards-view.list-view .top-card-image[style] {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
}


/* ========================================
   FORÇAR CONTAIN - MÁXIMA PRIORIDADE
   ======================================== */
@media screen and (max-width: 1024px) {
    /* Sobrescreve TUDO - maior especificidade possível */
    .top-cards-view.list-view .top-card-image-wrapper img.top-card-image,
    .top-cards-view.list-view .top-card-image-wrapper img.foto-vertical,
    .top-cards-view.list-view .top-card-image-wrapper img.foto-horizontal,
    .top-cards-view.list-view .top-card-image-wrapper img.wp-post-image,
    .top-cards-view.list-view .top-card-image-wrapper a img {
        object-fit: contain !important;
        object-position: center !important;
    }
}

@media screen and (max-width: 640px) {
    /* Mobile - máxima prioridade */
    .top-cards-view.list-view img.top-card-image,
    .top-cards-view.list-view img.foto-vertical,
    .top-cards-view.list-view img.foto-horizontal {
        object-fit: contain !important;
        object-position: center !important;
    }
}

/* ============================================
   PÁGINA DE PLANOS - page-planos.php
   ============================================ */

.planos-page-container {
    background: #0a0a1a;
    min-height: 100vh;
}

/* Hero Planos */
.planos-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px;
    text-align: center;
}

.planos-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.planos-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.planos-hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid #ff1744;
    padding: 10px 25px;
    border-radius: 50px;
    color: #ff1744;
    font-weight: 500;
}

/* Sections */
.planos-section {
    padding: 60px 20px;
}

.planos-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: #ff1744;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #999;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #1a1a2e;
    border: 2px solid #2a2a3e;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.pricing-card.featured {
    border-color: #ff1744;
    background: linear-gradient(135deg, #1a1a2e 0%, #2a1a3e 100%);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #333;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-badge.popular {
    background: linear-gradient(135deg, #ff1744, #ff4569);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #2a2a3e;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    color: #ff1744;
    margin-top: 10px;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
}

.period {
    font-size: 1.2rem;
    color: #999;
    margin-top: 25px;
}

.plan-description {
    color: #ccc;
    font-size: 1.1rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .icon {
    font-size: 1.2rem;
}

.plan-footer {
    margin-top: 30px;
    text-align: center;
}

.btn-plan {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    background: #2a2a3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: #3a3a4e;
    transform: scale(1.05);
}

.btn-featured {
    background: linear-gradient(135deg, #ff1744, #ff4569);
}

.btn-featured:hover {
    background: linear-gradient(135deg, #ff4569, #ff1744);
}

.btn-vip {
    background: linear-gradient(135deg, #d4af37, #f4d47f);
    color: #000;
}

.btn-vip:hover {
    background: linear-gradient(135deg, #f4d47f, #d4af37);
}

/* Extras Section */
.extras-section {
    background: #16213e;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.extra-card {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.extra-card:hover {
    transform: translateY(-5px);
    background: #2a2a3e;
}

.extra-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.extra-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.extra-card p {
    color: #999;
    line-height: 1.6;
}

/* Comparison Table */
.results-section {
    background: #1a1a2e;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #16213e;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table thead tr {
    background: #1a1a2e;
}

.comparison-table th {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table td {
    color: #ccc;
}

.comparison-table .highlight {
    background: rgba(255, 23, 68, 0.1);
    color: #ff1744 !important;
    font-weight: 600;
}

/* Testimonials */
.testimonials-section {
    background: #16213e;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #2a2a3e;
}

.stars {
    color: #ffa500;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #ffffff;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}



/* CTA */
.planos-cta {
    background: linear-gradient(135deg, #ff1744, #ff4569);
    padding: 80px 20px;
    text-align: center;
}

.planos-cta h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.planos-cta p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffffff;
    color: #ff1744;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.cta-footer {
    margin-top: 30px;
}

.cta-footer small {
    color: #ffffff;
    opacity: 0.8;
}

/* ============================================
   PÁGINA DE CONTATO - page-contato.php
   ============================================ */

.contato-page-container {
    background: #0a0a1a;
    min-height: 100vh;
}

.contato-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px;
    text-align: center;
}

.contato-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contato-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.contato-hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
}

/* Contact Info Cards */
.contato-section {
    padding: 60px 20px;
}

.contato-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #2a2a3e;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: #ff1744;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-info-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #ccc;
    margin-bottom: 10px;
}

.contact-info-card a {
    color: #ff1744;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.availability {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-top: 10px;
}

/* Contact Form */
.form-section {
    background: #16213e;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form {
    background: #1a1a2e;
    padding: 40px;
    border-radius: 20px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #16213e;
    border: 2px solid #2a2a3e;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff1744;
    background: #1a1a2e;
}

.form-helper {
    display: block;
    color: #999;
    font-size: 0.85rem;
    margin-top: 5px;
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-label a {
    color: #ff1744;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 30px;
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff1744, #ff4569);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-messages {
    margin-top: 20px;
}

.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.alert-success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
}

.alert-error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
}

/* Form Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: #1a1a2e;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #2a2a3e;
}

.sidebar-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.sidebar-card p {
    color: #ccc;
    line-height: 1.6;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-card.urgent {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.1), rgba(255, 69, 105, 0.1));
    border-color: #ff1744;
}

.btn-whatsapp {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: #25d366;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: scale(1.05);
}

/* Hours Section */
.hours-section {
    background: #1a1a2e;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.hour-card {
    background: #16213e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.hour-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hour-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.hour-card p {
    color: #ccc;
    line-height: 1.8;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    background: #0a0a0a;
    padding: 80px 0;
    margin: 60px 0;
}

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

.faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-section .section-subtitle {
    font-size: 1.1rem;
    color: #999;
    margin-top: 10px;
}

.faq-accordion {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff1744;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 23, 68, 0.1);
}

.faq-question.active {
    background: rgba(255, 23, 68, 0.15);
    color: #ff1744;
}

.faq-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: #ff1744;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 25px 25px;
    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #2a2a2a;
}

.faq-footer p {
    font-size: 1.1rem;
    color: #999;
}

.faq-contact-link {
    color: #ff1744;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-contact-link:hover {
    color: #ff4569;
    text-decoration: underline;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-section .section-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
}
/* Social Section */
.social-section {
    background: #1a1a2e;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.social-card {
    background: #16213e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    border: 2px solid #2a2a3e;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: #ff1744;
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.social-card h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.social-card p {
    color: #999;
    font-size: 0.9rem;
}

/* CTA Final */
.contato-cta {
    background: linear-gradient(135deg, #ff1744, #ff4569);
    padding: 80px 20px;
    text-align: center;
}

.contato-cta h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.contato-cta p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* ============================================
   PÁGINA COMO FUNCIONA - page-como-funciona.php
   ============================================ */

.como-funciona-page-container {
    background: #0a0a1a;
    min-height: 100vh;
}

.como-funciona-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px;
    text-align: center;
}

.como-funciona-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.como-funciona-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.como-funciona-hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid #ff1744;
    padding: 10px 20px;
    border-radius: 50px;
    color: #ff1744;
    font-weight: 500;
}

/* Profile Types */
.como-funciona-section {
    padding: 60px 20px;
}

.como-funciona-content {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.profile-card {
    background: #1a1a2e;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #2a2a3e;
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
    border-color: #ff1744;
}

.profile-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.profile-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.profile-card p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-profile {
    display: inline-block;
    padding: 12px 30px;
    background: #ff1744;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-profile:hover {
    background: #ff4569;
    transform: scale(1.05);
}

/* Steps Container */
.anunciantes-section {
    background: #16213e;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-item::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(to bottom, #ff1744, transparent);
}

.step-item:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff1744, #ff4569);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.4);
}

.step-content {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #2a2a3e;
}

.step-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-content p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.step-content li {
    color: #ccc;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.step-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff1744;
    font-size: 1.5rem;
}

.step-tip {
    background: rgba(255, 23, 68, 0.1);
    border-left: 4px solid #ff1744;
    padding: 15px;
    margin-top: 15px;
    border-radius: 5px;
    color: #ccc;
}

/* Dicas Section */
.dicas-section {
    background: #1a1a2e;
}

.dicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.dica-card {
    background: #16213e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #2a2a3e;
    transition: all 0.3s ease;
}

.dica-card:hover {
    transform: translateY(-5px);
    border-color: #ff1744;
}

.dica-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.dica-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.dica-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Cliente Steps */
.clientes-section {
    background: #1a1a2e;
}

.cliente-steps {
    max-width: 900px;
    margin: 0 auto;
}

.cliente-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    background: #16213e;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #2a2a3e;
}

.step-icon {
    font-size: 4rem;
    text-align: center;
}

.step-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-info p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.step-info ul {
    list-style: none;
    padding: 0;
}

.step-info li {
    color: #ccc;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.step-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff1744;
    font-size: 1.5rem;
}

.badges-example {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.badge-verified,
.badge-premium,
.badge-vip {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-verified {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.badge-premium {
    background: rgba(255, 165, 0, 0.1);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.badge-vip {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border: 1px solid #d4af37;
}

.contact-tips {
    background: rgba(255, 23, 68, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-tips strong {
    color: #ff1744;
    display: block;
    margin-bottom: 10px;
}

/* Segurança Section */
.seguranca-section {
    background: #16213e;
}

.seguranca-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.seguranca-card {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #2a2a3e;
}

.seguranca-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.seguranca-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.seguranca-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Regras Section */
.regras-section {
    background: #1a1a2e;
}

.regras-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.regra-box {
    background: #16213e;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #2a2a3e;
}

.regra-box.proibido {
    border-color: #ff1744;
    background: rgba(255, 23, 68, 0.05);
}

.regra-box.permitido {
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.05);
}

.regra-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.regra-box.proibido h3 {
    color: #ff1744;
}

.regra-box.permitido h3 {
    color: #00ff00;
}

.regra-box ul {
    list-style: none;
    padding: 0;
}

.regra-box li {
    color: #ccc;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.politicas-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.politicas-links a {
    padding: 12px 30px;
    background: #16213e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #2a2a3e;
    transition: all 0.3s ease;
}

.politicas-links a:hover {
    border-color: #ff1744;
    transform: scale(1.05);
}


/* CTA Final */
.como-funciona-cta {
    background: linear-gradient(135deg, #ff1744, #ff4569);
    padding: 80px 20px;
    text-align: center;
}

.como-funciona-cta h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.como-funciona-cta p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-stats .stat {
    color: #ffffff;
    font-size: 1rem;
    opacity: 0.9;
}

/* RESPONSIVE - Mobile */
@media (max-width: 768px) {
    .planos-hero-title,
    .contato-hero-title,
    .como-funciona-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cliente-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .regras-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta {
        width: 100%;
    }
}
