/* ===============================
   ESTILO PREMIUM — ALUGUE AQUI
   Inspirado em ZAP / OLX / QuintoAndar
   =============================== */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}

/* ===============================
   HEADER
   =============================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    z-index: 999;
}

.logo {
    height: 62px;
    cursor: pointer;
}

nav a {
    margin-left: 28px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: 0.2s;
}

nav a:hover {
    color: #7b2cbf;
}

.btn-login {
    padding: 10px 22px;
    background: #7b2cbf;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 25px;
    transition: 0.25s ease;
    box-shadow: 0 4px 12px rgba(123, 44, 191, 0.25);
}

.btn-login:hover {
    background: #5a1f8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(123, 44, 191, 0.35);
}

/* ===============================
   HERO
   =============================== */
.hero {
    margin-top: 120px;
    padding: 60px;
    background: #fff0e7;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.hero-left h1 {
    font-size: 38px;
    font-weight: 800;
    color: #222;
}

.hero-left p {
    font-size: 17px;
    margin: 12px 0 25px;
}

/* FORM */
.search-box {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.search-box label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.search-box input,
.search-box select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 5px;
}

.btn-primary {
    width: 100%;
    margin-top: 18px;
    padding: 13px;
    background: #7b2cbf;
    color: #fff;
    font-weight: 700;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #5a1f8f;
}

/* HERO IMG */
.hero-right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0px 15px 40px rgba(0,0,0,0.12);
}

/* ===============================
   CATEGORIAS
   =============================== */
.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: #333;
    margin: 60px 0 30px;
}

.horizontal-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-inline: 40px;
    flex-wrap: wrap;
}

.horizontal-card {
    width: 260px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    transition: 0.2s;
}

.horizontal-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.horizontal-card:hover {
    transform: translateY(-6px);
}

.horizontal-card .info {
    padding: 14px;
}

/* ===============================
   BANNER
   =============================== */
.banner {
    margin: 70px auto;
    max-width: 920px;
    height: 170px;
    background: linear-gradient(90deg, #ff7a00, #ffae00);
    color: white;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.banner-btn {
    background: white;
    padding: 12px 25px;
    border-radius: 8px;
    color: #ff7a00;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.banner-btn:hover {
    background: #ffe7c2;
}

/* ===============================
   IMÓVEIS
   =============================== */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    padding: 20px 60px;
}

.property-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.07);
    transition: 0.3s ease;
}

.property-card:hover {
    transform: translateY(-6px);
}

/* IMAGEM PERFEITA NOS CARDS */
.property-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-bottom: 3px solid #f1f1f1;
}

.property-info {
    padding: 18px;
}

.property-info h3 {
    font-size: 18px;
    font-weight: 700;
}

.property-info p {
    font-size: 14px;
    color: #555;
    margin: 8px 0;
}

.property-btn {
    display: block;
    width: 100%;
    padding: 13px;
    margin-top: 10px;
    background: #7b2cbf;
    color: white;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

.property-btn:hover {
    background: #5a1f8f;
}
/* ===============================
   FOOTER — André Pazinato
   =============================== */

.footer {
    background: #7b2cbf;
    color: #ffffff;
    padding: 22px 40px;
    font-size: 14px;
}

/* CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* LOGO */
.footer-logo img {
    height: 36px;
    transition: transform 0.3s ease;
}

.footer-logo a:hover img {
    transform: scale(1.05);
}

/* BLOCO LEGAL */
.footer-legal {
    text-align: center;
}

/* TEXTO */
.footer-text {
    font-weight: 400;
    opacity: 0.95;
    white-space: nowrap;
}

/* LINKS LEGAIS */
.footer-links {
    margin-top: 6px;
    font-size: 13px;
}

.footer-links a {
    color: #eaeaea;
    text-decoration: none;
    margin: 0 6px;
}

.footer-links span {
    color: #cfcfcf;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ÍCONES */
.footer-icons {
    display: flex;
    gap: 14px;
}

.footer-icons a {
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-icons a:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

/* ===============================
   DESKTOP
   =============================== */
@media (min-width: 768px) {

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-legal {
        text-align: center;
        flex: 1;
    }
}

