/* ============================================
   SCORT BRASIL - HOME FINDER DARK
   ============================================ */

:root {
    --hf-primary: #ff1744;
    --hf-primary-dark: #d50032;
    --hf-bg: #0a0a0a;
    --hf-bg-card: #111111;
    --hf-bg-elevated: #161616;
    --hf-bg-input: #1a1a1a;
    --hf-text: #ffffff;
    --hf-text-secondary: rgba(255,255,255,0.7);
    --hf-text-muted: rgba(255,255,255,0.5);
    --hf-border: rgba(255,255,255,0.08);
    --hf-border-hover: rgba(255,255,255,0.15);
    --hf-success: #00c853;
    --hf-radius: 12px;
    --hf-radius-lg: 16px;
    --hf-radius-xl: 24px;
    --hf-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hf {
    background: var(--hf-bg);
    color: var(--hf-text);
    font-family: 'Inter', -apple-system, sans-serif;
}

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

/* HERO */
.hf-hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: #0a0a0a;
}

.hf-hero-bg {
    position: absolute;
    inset: 0;
    background: #0a0a0a;
}

.hf-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,23,68,0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.hf-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin: 0 0 20px;
}

.hf-hero-content h1 span {
    color: var(--hf-primary);
}

.hf-hero-sub {
    font-size: 18px;
    color: var(--hf-text-secondary);
    margin: 0 0 32px;
    max-width: 480px;
}

/* Search Box */
.hf-search {
    display: flex;
    align-items: center;
    background: var(--hf-bg-card);
    border: 1px solid var(--hf-border);
    border-radius: var(--hf-radius-lg);
    padding: 6px;
    box-shadow: var(--hf-shadow);
}

.hf-search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
}

.hf-search-input i {
    color: var(--hf-text-muted);
    font-size: 18px;
}

.hf-search-input input {
    flex: 1;
    background: none;
    border: none;
    font-size: 15px;
    color: var(--hf-text);
    outline: none;
}

.hf-search-input input::placeholder {
    color: var(--hf-text-muted);
}

.hf-search-select {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-left: 1px solid var(--hf-border);
}

.hf-search-select i {
    color: var(--hf-primary);
}

.hf-search-select select {
    background: none;
    border: none;
    color: var(--hf-text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    appearance: none;
    padding-right: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.hf-search-select select option {
    background: #1a1a1a;
    color: #fff;
}

.hf-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--hf-primary) 0%, var(--hf-primary-dark) 100%);
    color: #fff;
    border: none;
    border-radius: var(--hf-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.hf-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,23,68,0.4);
}

/* Tags */
.hf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hf-tags a {
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--hf-border);
    border-radius: 100px;
    color: var(--hf-text-secondary);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hf-tags a:hover {
    background: rgba(255,23,68,0.1);
    border-color: rgba(255,23,68,0.3);
    color: var(--hf-primary);
}

/* Hero Image */
.hf-hero-img {
    position: relative;
}

.hf-hero-photo {
    position: relative;
    display: flex;
    justify-content: center;
}

.hf-hero-photo > img {
    width: 380px;
    height: 480px;
    object-fit: cover;
    border-radius: var(--hf-radius-xl);
    box-shadow: var(--hf-shadow);
}

.hf-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--hf-bg-card);
    border: 1px solid var(--hf-border);
    border-radius: var(--hf-radius);
    box-shadow: var(--hf-shadow);
}

.hf-float.top {
    top: 30px;
    left: -30px;
}

.hf-float.bottom {
    bottom: 60px;
    right: -20px;
}

.hf-float-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,23,68,0.15);
    border-radius: var(--hf-radius);
    color: var(--hf-primary);
    font-size: 20px;
}

.hf-float div strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.hf-float div span {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
}

/* Avatars */
.hf-avatars {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--hf-bg-card);
    border: 1px solid var(--hf-border);
    border-radius: 100px;
    box-shadow: var(--hf-shadow);
}

.hf-avatar-stack {
    display: flex;
}

.hf-avatar-stack img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--hf-bg-card);
    margin-left: -10px;
    object-fit: cover;
}

.hf-avatar-stack img:first-child {
    margin-left: 0;
}

.hf-avatars > span {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}

.hf-avatars > span strong {
    color: #ffffff;
}

/* SECTIONS */
.hf-section {
    padding: 80px 0;
}

.hf-section-alt {
    background: var(--hf-bg-card);
    border-top: 1px solid var(--hf-border);
    border-bottom: 1px solid var(--hf-border);
}

.hf-header {
    margin-bottom: 40px;
}

.hf-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.hf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,23,68,0.15);
    border-radius: 100px;
    color: var(--hf-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.hf-header h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 0 8px;
}

.hf-header p {
    font-size: 16px;
    color: var(--hf-text-muted);
    margin: 0;
}

.hf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hf-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.hf-link:hover {
    gap: 12px;
}

/* POPULAR */
.hf-popular {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.hf-popular-img {
    position: relative;
    border-radius: var(--hf-radius-xl);
    overflow: hidden;
}

.hf-popular-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hf-popular-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 14px 18px;
    background: var(--hf-bg-card);
    border-radius: var(--hf-radius);
    box-shadow: var(--hf-shadow);
}

.hf-popular-badge h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
}

.hf-popular-badge p {
    font-size: 12px;
    color: var(--hf-text-muted);
    margin: 0;
}

.hf-popular-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.hf-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hf-col h4 i {
    color: var(--hf-primary);
}

.hf-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hf-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--hf-bg-elevated);
    border-radius: var(--hf-radius);
    color: var(--hf-text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.hf-links a:hover {
    background: rgba(255,23,68,0.1);
    color: var(--hf-primary);
}

.hf-links a span {
    font-size: 12px;
    color: var(--hf-text-muted);
    background: rgba(255,255,255,0.05);
    padding: 4px 8px;
    border-radius: 6px;
}

/* OFFERS */
.hf-offers {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.hf-offers-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hf-offer {
    padding: 24px;
    background: var(--hf-bg-elevated);
    border: 1px solid var(--hf-border);
    border-radius: var(--hf-radius);
    cursor: pointer;
    transition: all 0.3s;
}

.hf-offer:hover,
.hf-offer.active {
    border-color: var(--hf-primary);
    box-shadow: 0 0 0 1px var(--hf-primary);
}

.hf-offer-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hf-offer-tag.vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.hf-offer-tag.premium {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
    color: #fff;
}

.hf-offer-tag.basic {
    background: rgba(255,255,255,0.1);
    color: var(--hf-text-secondary);
}

.hf-offer h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.hf-offer p {
    font-size: 14px;
    color: var(--hf-text-muted);
    margin: 0 0 16px;
}

.hf-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.hf-price .now {
    font-size: 24px;
    font-weight: 700;
    color: var(--hf-primary);
}

.hf-price .old {
    font-size: 16px;
    color: var(--hf-text-muted);
    text-decoration: line-through;
}

.hf-offers-img {
    border-radius: var(--hf-radius-xl);
    overflow: hidden;
}

.hf-offers-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hf-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--hf-primary) 0%, var(--hf-primary-dark) 100%);
    color: #fff;
    border-radius: var(--hf-radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 8px;
}

.hf-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,23,68,0.4);
}

/* PROFILES */
.hf-profiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hf-card {
    background: var(--hf-bg-card);
    border: 1px solid var(--hf-border);
    border-radius: var(--hf-radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
}

.hf-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hf-shadow);
    border-color: var(--hf-border-hover);
}

.hf-card-img {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.hf-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hf-card:hover .hf-card-img img {
    transform: scale(1.05);
}

.hf-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

.hf-card-badges span {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hf-card-badges span.vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.hf-card-badges span.premium {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
    color: #fff;
}

.hf-card-badges span.ver {
    background: var(--hf-success);
    color: #fff;
}

.hf-card-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.hf-card-fav:hover {
    background: var(--hf-primary);
    transform: scale(1.1);
}

.hf-card-info {
    padding: 20px;
}

.hf-card-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--hf-text);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hf-card-info h3 i {
    color: var(--hf-success);
    font-size: 14px;
}

.hf-card-info > p {
    font-size: 13px;
    color: var(--hf-text-muted);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hf-card-info > p i {
    color: var(--hf-primary);
    font-size: 11px;
}

.hf-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--hf-border);
}

.hf-card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--hf-text);
}

.hf-card-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--hf-text-muted);
}

.hf-card-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--hf-border);
    border-radius: 100px;
    color: var(--hf-text);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.hf-card:hover .hf-card-btn {
    background: var(--hf-primary);
    border-color: var(--hf-primary);
    color: #fff;
}

/* STEPS */
.hf-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.hf-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--hf-border), var(--hf-primary), var(--hf-border));
}

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

.hf-step-num {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hf-bg-elevated);
    border: 2px solid var(--hf-border);
    border-radius: 50%;
    margin: 0 auto 24px;
    font-size: 28px;
    font-weight: 700;
    color: var(--hf-primary);
    position: relative;
    z-index: 2;
}

.hf-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
}

.hf-step p {
    font-size: 14px;
    color: var(--hf-text-muted);
    margin: 0;
    max-width: 250px;
    margin: 0 auto;
}

/* BENEFITS */
.hf-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hf-benefits-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 12px 0;
}

.hf-benefits-content > p {
    font-size: 16px;
    color: var(--hf-text-muted);
    margin: 0 0 32px;
}

.hf-benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.hf-benefits-list > div h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
}

.hf-benefits-list > div p {
    font-size: 13px;
    color: var(--hf-text-muted);
    margin: 0;
}

.hf-stats {
    display: flex;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--hf-border);
}

.hf-stats > div strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--hf-primary);
    margin-bottom: 4px;
}

.hf-stats > div span {
    font-size: 14px;
    color: var(--hf-text-muted);
}

.hf-benefits-img {
    position: relative;
}

.hf-benefits-img > img {
    width: 100%;
    border-radius: var(--hf-radius-xl);
}

.hf-benefits-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--hf-bg-card);
    border: 1px solid var(--hf-border);
    border-radius: var(--hf-radius);
    box-shadow: var(--hf-shadow);
}

.hf-benefits-badge > i {
    font-size: 28px;
    color: var(--hf-primary);
}

.hf-benefits-badge div strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.hf-benefits-badge div span {
    font-size: 13px;
    color: var(--hf-text-muted);
}

/* CTA */
.hf-cta {
    padding: 80px 0;
    background: #111111;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    position: relative;
}

.hf-cta::before {
    display: none;
}

.hf-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    position: relative;
    z-index: 2;
}

.hf-cta-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.hf-cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.hf-cta-features span i {
    color: var(--hf-success);
}

.hf-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--hf-primary);
    color: #ffffff;
    border-radius: var(--hf-radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.hf-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,23,68,0.4);
    background: var(--hf-primary-dark);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hf-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hf-hero-content h1 { font-size: 36px; }
    .hf-hero-sub { max-width: 100%; }
    .hf-tags { justify-content: center; }
    .hf-hero-img { display: none; }
    .hf-popular { grid-template-columns: 1fr; }
    .hf-popular-img { display: none; }
    .hf-offers { grid-template-columns: 1fr; }
    .hf-offers-img { display: none; }
    .hf-profiles { grid-template-columns: repeat(2, 1fr); }
    .hf-benefits { grid-template-columns: 1fr; }
    .hf-benefits-img { display: none; }
}

@media (max-width: 768px) {
    .hf-hero { padding: 120px 0 60px; }
    .hf-hero-content h1 { font-size: 28px; }
    .hf-search { flex-direction: column; }
    .hf-search-input, .hf-search-select { width: 100%; }
    .hf-search-select { border-left: none; border-top: 1px solid var(--hf-border); }
    .hf-search-btn { width: 100%; justify-content: center; }
    .hf-section { padding: 60px 0; }
    .hf-header h2 { font-size: 24px; }
    .hf-header-flex { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hf-popular-cols { grid-template-columns: 1fr; }
    .hf-profiles { grid-template-columns: 1fr; }
    .hf-steps { grid-template-columns: 1fr; gap: 32px; }
    .hf-steps::before { display: none; }
    .hf-benefits-list { grid-template-columns: 1fr; }
    .hf-stats { flex-direction: column; gap: 20px; }
    .hf-cta-features { flex-direction: column; gap: 12px; }
}
