*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

body{
    background:#f5f7fb;
    color:#111;
}

a{
    text-decoration:none;
}

.container{
    width:1200px;
    margin:auto;
}

header{
    background:#fff;
    padding:20px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:999;
}

.header-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#6c3cff;
}

.menu{
    display:flex;
    gap:25px;
}

.menu a{
    color:#333;
    font-weight:600;
}

.hero{
    padding:80px 0;
    text-align:center;
}

.hero h1{
    font-size:55px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    color:#666;
    margin-bottom:40px;
}

.search-box{
    background:#fff;
    padding:25px;
    border-radius:20px;
    display:flex;
    gap:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.search-box input,
.search-box select{
    flex:1;
    padding:16px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
}

.search-box button{
    background:#6c3cff;
    color:#fff;
    border:none;
    padding:16px 35px;
    border-radius:12px;
    font-size:16px;
    cursor:pointer;
}

.section{
    padding:60px 0;
}

.section-title{
    font-size:35px;
    margin-bottom:40px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.badge{
    background:#6c3cff;
    color:#fff;
    padding:6px 12px;
    border-radius:50px;
    display:inline-block;
    font-size:12px;
    margin-bottom:15px;
}

.card h3{
    margin-bottom:10px;
}

.card p{
    color:#666;
    line-height:1.6;
}

.price{
    margin-top:20px;
    font-weight:bold;
    color:#6c3cff;
}

footer{
    background:#111827;
    color:#fff;
    padding:60px 0;
    margin-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.footer-grid h4{
    margin-bottom:20px;
}

.footer-grid a{
    display:block;
    color:#ccc;
    margin-bottom:10px;
}

.negocio-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.negocio-cover{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:20px;
}

.negocio-info h1{
    font-size:42px;
    margin-bottom:15px;
}

.negocio-rubro{
    display:inline-block;
    background:#6c3cff;
    color:#fff;
    padding:8px 15px;
    border-radius:50px;
    margin-bottom:25px;
}

.negocio-desc{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.negocio-data{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-bottom:35px;
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
    padding:18px 30px;
    border-radius:14px;
    display:inline-block;
    font-weight:bold;
}

.auth-box{
    width:500px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.auth-box h1{
    margin-bottom:30px;
}

.auth-box form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.auth-box input{
    padding:18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
}

.auth-box button{
    background:#6c3cff;
    color:#fff;
    border:none;
    padding:18px;
    border-radius:12px;
    font-size:16px;
    cursor:pointer;
}

.success{
    background:#d1fae5;
    color:#065f46;
    padding:15px;
    border-radius:12px;
    margin-bottom:20px;
}

.error{
    background:#fee2e2;
    color:#991b1b;
    padding:15px;
    border-radius:12px;
    margin-bottom:20px;
}

.dashboard{
    display:flex;
    min-height:100vh;
}

.sidebar{
    width:280px;
    background:#111827;
    padding:40px 25px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.sidebar-logo{
    color:#fff;
    font-size:30px;
    font-weight:bold;
    margin-bottom:30px;
}

.sidebar a{
    color:#d1d5db;
    padding:15px;
    border-radius:12px;
    transition:0.3s;
}

.sidebar a:hover{
    background:#1f2937;
}

.dashboard-content{
    flex:1;
    padding:50px;
    background:#f5f7fb;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.stat-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.stat-card h3{
    margin-bottom:15px;
    color:#666;
}

.stat-card p{
    font-size:35px;
    font-weight:bold;
    color:#6c3cff;
}

.edit-form{
    margin-top:40px;
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-bottom:30px;
}

.edit-form label{
    display:block;
    margin-bottom:10px;
    font-weight:bold;
}

.edit-form input,
.edit-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
}

.upload-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:30px;
}

.preview-img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:15px;
    margin-top:15px;
}

.save-btn{
    margin-top:40px;
    background:#6c3cff;
    color:#fff;
    border:none;
    padding:18px 35px;
    border-radius:14px;
    font-size:16px;
    cursor:pointer;
}

.results-info{
    margin:30px 0;
    color:#666;
    font-weight:600;
}

.card-location{
    margin-top:15px;
    color:#777;
    font-size:14px;
}

.empty-state{
    background:#fff;
    padding:60px;
    border-radius:25px;
    text-align:center;
    margin-top:40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.empty-state h2{
    margin-bottom:15px;
    font-size:32px;
}

.empty-state p{
    color:#666;
}

.hero-home{
    padding:90px 0;
    background:
    linear-gradient(
    135deg,
    #f7f5ff 0%,
    #eef2ff 100%
    );
}

.hero-content{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    background:#ede9fe;
    color:#6c3cff;
    padding:10px 18px;
    border-radius:50px;
    font-weight:bold;
    margin-bottom:25px;
}

.hero-left h1{
    font-size:65px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-left p{
    font-size:20px;
    color:#666;
    line-height:1.7;
    margin-bottom:40px;
}

.advanced-search{
    margin-bottom:40px;
}

.search-group{
    flex:1;
}

.hero-stats{
    display:flex;
    gap:40px;
}

.hero-stat h3{
    font-size:34px;
    color:#6c3cff;
}

.hero-stat p{
    margin-top:5px;
    font-size:15px;
}

.hero-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,0.1);
}

.hero-card img{
    width:100%;
    height:400px;
    object-fit:cover;
}

.hero-card-content{
    padding:30px;
}

.section-header{
    margin-bottom:45px;
}

.section-header p{
    color:#666;
    margin-top:10px;
}

.categories-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.category-card{
    background:#fff;
    padding:30px 20px;
    border-radius:22px;
    text-align:center;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.category-card:hover{
    transform:translateY(-5px);
}

.category-icon{
    font-size:40px;
    margin-bottom:15px;
}

.modern-card{
    overflow:hidden;
}

.card-image{
    position:relative;
}

.card-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#6c3cff;
    color:#fff;
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:bold;
}

.card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.card-price{
    background:#ede9fe;
    color:#6c3cff;
    padding:8px 12px;
    border-radius:12px;
    font-weight:bold;
}

.card-footer{
    display:flex;
    justify-content:space-between;
    margin-top:25px;
    color:#666;
    font-size:14px;
}

.benefits-section{
    background:#fff;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.benefit-card{
    background:#f9fafb;
    padding:40px;
    border-radius:25px;
}

.benefit-icon{
    font-size:50px;
    margin-bottom:25px;
}

.benefit-card h3{
    margin-bottom:15px;
}

.benefit-card p{
    color:#666;
    line-height:1.7;
}

.cta-section{
    padding:100px 0;
}

.cta-box{
    background:
    linear-gradient(
    135deg,
    #6c3cff,
    #8b5cf6
    );

    color:#fff;
    padding:80px;
    border-radius:35px;
    text-align:center;
}

.cta-box h2{
    font-size:50px;
    margin-bottom:20px;
}

.cta-box p{
    font-size:20px;
    margin-bottom:35px;
}

.cta-box a{
    background:#fff;
    color:#6c3cff;
    padding:18px 35px;
    border-radius:14px;
    display:inline-block;
    font-weight:bold;
}

