/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary-color: #3b6b6a;
    /* Tom mais rico e elegante */
    --secondary-color: #2a4c4b;
    --accent-color: #b1a999;
    --text-dark: #1f2937;
    /* Mais legibilidade */
    --text-light: #4b5563;
    --text-muted: #9ca3af;
    --bg-light: #f3f4f6;
    /* Mais suave */
    --white: #ffffff;

    /* Sombras Premium */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0;
    color: var(--white);
    text-align: center;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Utilizando uma imagem placeholder de alta qualidade. Substitua pela imagem ideal */
    background: linear-gradient(rgba(42, 76, 75, 0.7), rgba(42, 76, 75, 0.8)), url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&q=80&w=2070') center/cover;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Glassmorphism Search Form */
.search-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

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

.input-group {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    transition: box-shadow 0.3s ease;
    min-width: 0;
}

.input-group:focus-within {
    box-shadow: 0 0 0 2px var(--accent-color);
}

.input-group i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.input-group input,
.input-group select {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-search {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-search:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Destaques */
.destaques {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.card-destaque {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid var(--bg-light);
}

.card-destaque:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(59, 107, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.card-destaque:hover .icon-wrapper {
    transform: scale(1.1);
    background: var(--primary-color);
}

.card-destaque:hover .icon-wrapper i {
    color: var(--white);
}

.card-destaque i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.card-destaque h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.card-destaque p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Carrossel de ImÃ³veis */
.imoveis-destaque {
    padding: 100px 0;
    background: var(--bg-light);
}

.subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 4rem;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 16px;
    padding: 10px 0;
    /* Para acomodar a sombra no hover */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    gap: 20px;
}

.carousel-card {
    min-width: calc(33.333% - 14px);
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.carousel-card:hover .card-image img {
    transform: scale(1.08);
}

.badge-destaque {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.card-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.localizacao {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}

.localizacao i {
    color: var(--primary-color);
    margin-right: 8px;
}

.card-features {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.card-features span {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-features i {
    color: var(--primary-color);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.preco {
    display: flex;
    flex-direction: column;
}

.valor {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.periodo {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.btn-ver-mais {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.btn-ver-mais:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* BotÃµes do Carrossel */
.carousel-btn,
.depoimentos-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.carousel-btn:hover,
.depoimentos-carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-btn.prev,
.depoimentos-carousel-btn.prev {
    left: 0;
}

.carousel-btn.next,
.depoimentos-carousel-btn.next {
    right: 0;
}

.carousel-btn i,
.depoimentos-carousel-btn i {
    font-size: 1.2rem;
}

/* Indicadores */
.carousel-indicators,
.depoimentos-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2.5rem;
}

.indicator,
.depoimento-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    padding: 0;
}

.indicator.active,
.depoimento-indicator.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 5px;
}

/* SeÃ§Ã£o de Depoimentos */
.depoimentos-section {
    padding: 100px 0;
    background: var(--white);
}

.depoimentos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.depoimentos-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.depoimentos-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.depoimentos-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.depoimentos-carousel-wrapper {
    overflow: hidden;
    padding: 15px 0;
}

.depoimentos-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    gap: 30px;
}

.depoimento-card {
    min-width: calc(33.333% - 20px);
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.estrelas {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
    color: #f59e0b;
    /* Dourado */
}

.estrelas i {
    font-size: 1.1rem;
}

.depoimento-texto {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: left;
    font-style: italic;
    flex: 1;
}

.depoimento-autor {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.autor-nome {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.autor-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-col h4 {
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.footer-col p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-link {
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.developer-credit a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.developer-credit a:hover {
    opacity: 0.8;
}

.developer-credit i {
    font-size: 1.1rem;
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .carousel-card {
        min-width: calc(50% - 10px);
    }

    .depoimento-card {
        min-width: calc(50% - 15px);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 320px;
        background: var(--white);
        display: flex;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

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

    .nav-menu li {
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .hero {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .carousel-container,
    .depoimentos-carousel-container {
        padding: 0 45px;
    }

    .carousel-card,
    .depoimento-card {
        min-width: 100%;
    }

    .carousel-btn,
    .depoimentos-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .depoimento-texto {
        font-size: 0.95rem;
    }
}

/* =========================================
   PÁGINA CASAS.PHP - NOSSAS CASAS
   ========================================= */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar Filters */
.sidebar {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-group h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.filter-group input[type="text"],
.filter-group input[type="number"],
.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.btn-filter {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 15px;
}

.btn-filter:hover {
    background: var(--secondary-color);
}

.btn-clear {
    width: 100%;
    padding: 10px;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-clear:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Properties Section */
.properties-section {
    min-height: 500px;
}

.properties-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.property-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.badge-destaque {
    background: var(--primary-color);
}

.badge-novo {
    background: #10b981;
}

.badge-promocao {
    background: #f59e0b;
}

.property-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.property-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-location i {
    color: var(--primary-color);
}

.property-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.property-features span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-features i {
    color: var(--primary-color);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.property-price {
    display: flex;
    flex-direction: column;
}

.price-value {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 0.8rem;
    color: var(--text-light);
}

.btn-details {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-details:hover {
    background: var(--secondary-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination button {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination button:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile Toggle Button */
.filter-toggle {
    display: none;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

/* Estilização melhorada dos selects */
.filter-group select,
.sort-options select {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233b6b6a' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.filter-group select:hover,
.sort-options select:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(59, 107, 106, 0.1);
}

.filter-group select:focus,
.sort-options select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 107, 106, 0.1);
}

.filter-group select option,
.sort-options select option {
    padding: 10px;
    background-color: var(--white);
    color: var(--text-dark);
}

.filter-group select option:hover {
    background-color: var(--bg-light);
}

.filter-group select:active,
.sort-options select:active {
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: fixed;
        left: -300px;
        top: 0;
        height: 100vh;
        width: 280px;
        z-index: 1001;
        transition: left 0.3s;
        overflow-y: auto;
    }

    .sidebar.active {
        left: 0;
    }

    .filter-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .sidebar-overlay.active {
        display: block;
    }
}

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

    .page-header h1 {
        font-size: 1.8rem;
    }

    .properties-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .filter-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        position: static;
        bottom: auto;
        right: auto;
        box-shadow: none;
    }

    .properties-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .sort-options {
        flex: 1;
        max-width: 200px;
    }

    .sort-options label {
        display: none;
    }

    .sort-options select {
        width: 100%;
        font-size: 0.85rem;
    }

    .results-count {
        display: none;
    }

    .filter-group select,
    .sort-options select {
        padding: 10px 35px 10px 12px;
        font-size: 0.9rem;
    }
}

/* =========================================
   PÁGINA SOBRE.PHP - SOBRE NÓS
   ========================================= */

/* Nossa História */
.nossa-historia {
    padding: 80px 0;
    background: var(--white);
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.historia-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.historia-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.8;
}

.historia-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

/* Missão, Visão e Valores */
.mvv-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.mvv-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid var(--bg-light);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mvv-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mvv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mvv-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Números */
.numeros-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.numero-item {
    padding: 2rem;
}

.numero-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.numero-item h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.numero-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Diferenciais */
.diferenciais-section {
    padding: 80px 0;
    background: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.diferencial-card {
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.diferencial-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.diferencial-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.diferencial-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.diferencial-card p {
    color: var(--text-light);
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.cta-final p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .historia-content {
        grid-template-columns: 1fr;
    }

    .historia-image {
        order: -1;
    }

    .historia-text h2 {
        font-size: 2rem;
    }

    .cta-final h2 {
        font-size: 2rem;
    }
}

/* =========================================
   PÁGINA CONTATO.PHP - CONTATO
   ========================================= */

.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info>p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    margin: 0;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.contact-form {
    padding: 3rem;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form .form-group label span {
    color: #ef4444;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-group.error input,
.contact-form .form-group.error select,
.contact-form .form-group.error textarea {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.3rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
}

.success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.success-message.show {
    display: block;
}

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

    .contact-info {
        order: 2;
    }
}

/* =========================================
   PÁGINA TERMOS.PHP - TERMOS E CONDIÇÕES
   ========================================= */

.terms-section {
    padding: 80px 0;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary-color);
}

.terms-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.terms-header p {
    font-size: 1rem;
    color: var(--text-light);
}

.terms-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    margin: 0 auto;
}

.terms-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.terms-content h2:first-child {
    margin-top: 0;
}

.terms-content h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.terms-content p {
    margin-bottom: 1rem;
    text-align: justify;
    color: var(--text-light);
    line-height: 1.8;
}

.terms-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-content li {
    margin-bottom: 0.4rem;
    color: var(--text-light);
}

.info-box {
    background: rgba(59, 107, 106, 0.08);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin: 1rem 0 1.5rem;
}

.info-box i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.info-box p,
.info-box li {
    color: var(--text-dark);
}

.highlight-box {
    background: #fef3c7;
    padding: 1.5rem;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.highlight-box strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.highlight-box p {
    color: var(--text-dark);
}

.btn-voltar-termos {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
}

.btn-voltar-termos:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-content {
        padding: 2rem 1.5rem;
    }

    .terms-content h2 {
        font-size: 1.5rem;
    }
}

/* =========================================
   PÁGINA DETALHES-IMOVEL.PHP
   ========================================= */

/* Botão Voltar */
.btn-voltar-detalhes {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin: 20px 0;
    transition: gap 0.3s ease;
}

.btn-voltar-detalhes:hover {
    gap: 12px;
}

/* Galeria Principal */
.galeria-principal {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.imagem-destaque {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
}

.imagem-destaque img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.imagem-destaque:hover img {
    transform: scale(1.05);
}

.badge-status {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #10b981;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.miniaturas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.miniatura {
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.miniatura:hover,
.miniatura.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

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

.hidden-miniatura {
    display: none;
}

.btn-ver-mais-fotos {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.btn-ver-mais-fotos:hover {
    background: var(--secondary-color);
}

/* Layout Principal Detalhes */
.conteudo-principal {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Informações do Imóvel */
.info-imovel {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.cabecalho-imovel {
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.cabecalho-imovel h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.localizacao-principal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.localizacao-principal i {
    color: var(--primary-color);
}

.preco-destaque {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.preco-destaque .valor {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.preco-destaque .periodo {
    color: var(--text-light);
    font-size: 1.1rem;
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.caracteristica-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.caracteristica-item:hover {
    box-shadow: var(--shadow-sm);
}

.caracteristica-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.caracteristica-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.caracteristica-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.descricao h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.descricao p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.comodidades {
    margin-top: 2rem;
}

.comodidades h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.comodidade-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem;
}

.comodidade-item i {
    color: #10b981;
    font-size: 1.2rem;
}

/* Sidebar - Formulário de Contato do Imóvel */
.sidebar-contato {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.card-contato {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.card-contato h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.card-contato .form-group {
    margin-bottom: 1.2rem;
}

.card-contato .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.card-contato .form-group input,
.card-contato .form-group textarea,
.card-contato .form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}

.card-contato .form-group input:focus,
.card-contato .form-group textarea:focus,
.card-contato .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.card-contato .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-enviar {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-md);
}

.btn-enviar:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-airbnb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #FF5A5F;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
    margin-top: 1rem;
}

.btn-airbnb:hover {
    background: #E04B50;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 90, 95, 0.4);
}

.btn-airbnb i {
    font-size: 1.3rem;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-whatsapp i {
    font-size: 1.2rem;
}

.btn-container {
    margin-bottom: 1rem;
}

.btn-container:last-child {
    margin-bottom: 0;
}

.info-proprietario {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

.info-proprietario h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.contato-item i {
    color: var(--primary-color);
    width: 20px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsivo Detalhes */
@media (max-width: 768px) {
    .conteudo-principal {
        grid-template-columns: 1fr;
    }

    .imagem-destaque {
        height: 300px;
    }

    .sidebar-contato {
        position: static;
    }

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

    .cabecalho-imovel h1 {
        font-size: 1.6rem;
    }
}