/* Estilos Gerais */
:root {
    --primary-color: #ee8723;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --light-gray: #f4f4f4;
    --dark-gray: #555555;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-name {
    font-weight: 500;
    font-size: 16px;
}

.plus-sign {
    font-weight: bold;
    font-size: 18px;
}

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-right a {
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    transition: opacity 0.3s;
}

.top-bar-right a i {
    font-size: 16px;
}

.top-bar-right a:hover {
    opacity: 0.8;
}

/* Header */
header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--text-color);
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Banner */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

/* Search Section */
.search-section {
    background: transparent;
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.search-container {
    background: white;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
}

.search-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.search-form select, .search-form button {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.btn-search {
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-advanced {
    background-color: #f39c12;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

.search-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.search-options div {
    font-weight: bold;
    cursor: pointer;
}

/* Categories */
.categories {
    padding: 60px 0;
    text-align: center;
}

.categories h2 {
    margin-bottom: 40px;
    font-size: 28px;
}

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

.category-item {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

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

.category-item:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
}

/* Features */
.features {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-col p, .footer-col li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .top-bar-right a span {
        display: none;
    }
    
    .top-bar-right {
        gap: 15px;
    }

    .top-bar-right a i {
        font-size: 18px;
    }

    .menu-toggle {
        display: block;
        order: 1;
    }

    .logo {
        order: 2;
        flex-grow: 1;
        text-align: center;
        padding: 5px 0;
    }

    .logo img {
        height: 45px;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        order: 3;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        display: block;
        padding: 15px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .top-bar-left .brand-name {
        font-size: 14px;
    }

    .hero {
        height: 250px;
    }

    .search-container {
        padding: 20px;
        margin-top: -40px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Page Header (Breadcrumb area) */
.page-header {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 24px;
    color: #333;
    font-weight: 400;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form {
    background: white;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-send {
    background-color: #34495e;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-send:hover {
    background-color: #2c3e50;
}

.contact-map {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* Empresa Page */
.empresa-content {
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.empresa-content h2 {
    margin: 40px 0 20px;
    color: var(--primary-color);
    font-size: 32px;
}

.empresa-content p {
    margin-bottom: 20px;
    color: #666;
}

.empresa-content ul {
    padding-left: 20px;
}

.empresa-content li {
    margin-bottom: 10px;
    list-style-type: disc;
    color: #666;
}

/* Condominio Page */
.condominio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: #eee;
    border: 1px solid #eee;
    margin-bottom: 60px;
}

.condominio-item {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
    transition: background 0.3s;
}

.condominio-item:hover {
    background-color: #f9f9f9;
}

.condominio-item img {
    height: 60px;
    margin-bottom: 20px;
}

.condominio-item h3 {
    font-size: 16px;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .condominio-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos Adicionais do Footer */
.footer-col a:hover {
    opacity: 0.8;
}

.associada-logos img {
    transition: transform 0.3s ease;
}

.associada-logos img:hover {
    transform: scale(1.05);
}

.footer-col p {
    margin-bottom: 12px;
}

.footer-col p a {
    display: flex;
    align-items: center;
    gap: 8px;
}
