/* ========================================
   IMOBIPRIME - ESQUEMA DE CORES CUSTOMIZADO
   Branco e Vermelho
   ======================================== */

:root {
    --primary-red: #DC143C;      /* Vermelho principal (Crimson) */
    --primary-red-dark: #B01030; /* Vermelho escuro para hover */
    --primary-red-light: #FF6B6B; /* Vermelho claro */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #2C3E50;
    --text-dark: #000000;
}

/* ========================================
   CORES PRIMÁRIAS - SUBSTITUIR BOOTSTRAP
   ======================================== */

/* Texto Primário */
.text-primary {
    color: var(--primary-red) !important;
}

/* Background Primário */
.bg-primary {
    background-color: var(--primary-red) !important;
}

/* Botões Primários */
.btn-primary {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: var(--white) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-red-dark) !important;
    border-color: var(--primary-red-dark) !important;
    color: var(--white) !important;
}

/* Botões Outline Primário */
.btn-outline-primary {
    color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: var(--white) !important;
}

/* ========================================
   BACKGROUNDS E SEÇÕES
   ======================================== */

/* Background Escuro -> Branco */
.bg-dark {
    background-color: var(--white) !important;
    color: var(--text-dark) !important;
}

/* Background Secundário -> Cinza Claro */
.bg-secondary {
    background-color: var(--light-gray) !important;
    color: var(--text-dark) !important;
}

/* Texto em backgrounds escuros */
.bg-dark .text-body,
.bg-secondary .text-body {
    color: var(--text-dark) !important;
}

/* ========================================
   NAVEGAÇÃO MODERNA
   ======================================== */

/* Navbar */
.modern-navbar {
    background-color: var(--white) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0 !important;
}

/* Logo no Navbar */
.navbar-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
    transform: scale(3.5) translateX(30px);
    transform-origin: left center;
}

.modern-navbar.navbar-scrolled .navbar-logo {
    height: 50px;
    transform: scale(2.5) translateX(20px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 !important;
    margin-left: 20px;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(3.5) translateX(30px);
}

.modern-navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    padding: 10px 0 !important;
}

.navbar-dark .navbar-brand h2 {
    color: var(--primary-red) !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-brand:hover h2 {
    transform: scale(1.05);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 20px !important;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
    background: rgba(255, 0, 0, 0.05);
}

.navbar-dark .navbar-nav .nav-link:hover::before {
    width: 60%;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
    background: rgba(255, 0, 0, 0.1);
}

.navbar-dark .navbar-nav .nav-link.active::before {
    width: 60%;
}

/* Botão Anunciar */
.btn-anunciar {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 25px !important;
    border-radius: 25px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-anunciar:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%) !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Ajuste para conteúdo não ficar atrás do menu fixo */
body {
    padding-top: 120px;
}

/* ========================================
   HEADER/CAROUSEL
   ======================================== */

.page-header {
    background-color: var(--primary-red) !important;
}

.page-header h1,
.page-header h2,
.page-header h3,
.page-header h4,
.page-header h5,
.page-header h6 {
    color: var(--white) !important;
}

/* Overlay do carousel */
.carousel-item::before {
    background: rgba(220, 20, 60, 0.3) !important; /* Overlay vermelho suave */
}

/* Todos os textos no carousel devem ser brancos */
.carousel-caption h1,
.carousel-caption h2,
.carousel-caption h3,
.carousel-caption h4,
.carousel-caption h5,
.carousel-caption h6,
.carousel-caption p {
    color: var(--white) !important;
}

/* ========================================
   TÍTULOS E TEXTOS
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    color: var(--text-white) !important;
}

/* H1 em áreas com fundo escuro ou imagens devem ser brancos */
.carousel-caption h1,
.page-header h1,
.carousel-item h1 {
    color: var(--white) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-light {
    color: var(--light-gray) !important;
}

/* ========================================
   ÍCONES E ELEMENTOS
   ======================================== */

/* Ícones de check */
.fa-check-circle {
    color: var(--primary-red) !important;
}

/* Spinner/Loading */
.spinner-grow {
    color: var(--primary-red) !important;
}

/* ========================================
   CARDS E ITENS - NOVO LAYOUT MODERNO
   ======================================== */

/* Cards de Imóveis (Team Items) */
.team-item {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.team-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.15);
}

/* Container da imagem */
.team-body {
    position: relative;
    overflow: hidden;
}

.team-body img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-item:hover .team-body img {
    transform: scale(1.05);
}

/* Badge de status (Lançamento, Em Construção) */
.team-item[data-badge]::before {
    content: attr(data-badge);
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Esconder os labels antigos */
.team-before {
    display: none !important;
}

/* Container de informações */
.team-after {
    position: static !important;
    background: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Estilo dos ícones e informações */
.team-after span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.team-after span::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--primary-red);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    flex-shrink: 0;
}

/* Ícones específicos */
.team-after span:nth-child(1)::before {
    /* Ícone de área */
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm10 0h8v8h-8v-8z'/%3E%3C/svg%3E");
}

.team-after span:nth-child(2)::before {
    /* Ícone de quartos */
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-8v7H3V6H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4z'/%3E%3C/svg%3E");
}

.team-after span:nth-child(3)::before {
    /* Ícone de banheiros */
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm13 17H4v-1h16v1zm0-3H4V9h16v8z'/%3E%3C/svg%3E");
}

.team-after span:nth-child(4)::before {
    /* Ícone de vagas */
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z'/%3E%3C/svg%3E");
}

/* Nome do imóvel */
.team-name {
    padding: 0 20px 20px 20px;
    display: block;
}

.team-name h5 {
    color: var(--text-dark) !important;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team-item:hover .team-name h5 {
    color: var(--primary-red) !important;
}

/* Localização */
.property-location {
    color: #999;
    font-size: 13px;
    margin-bottom: 15px;
}

/* Footer do card com badge e botão */
.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* Badge Residencial/Comercial */
.property-type {
    background-color: #f5f5f5;
    color: #666;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Botão Ver Detalhes */
.btn-details {
    background-color: #000;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-details:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

/* ========================================
   FORMULÁRIOS
   ======================================== */

.form-control {
    background-color: var(--white) !important;
    border: 2px solid #E0E0E0 !important;
    color: var(--text-dark) !important;
}

.form-control:focus {
    border-color: var(--primary-red) !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 20, 60, 0.25) !important;
}

.form-control::placeholder {
    color: #999999 !important;
}

/* ========================================
   FOOTER MODERNO
   ======================================== */

.footer {
    background: #000000 !important;
    color: var(--white) !important;
}

/* Logo no Footer */
.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer h4 {
    color: #FFFFFF !important;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer h1,
.footer h2,
.footer h3,
.footer h5,
.footer h6 {
    color: #FFFFFF !important;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border-radius: 2px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.8;
}

.footer .btn-link {
    display: block;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer .btn-link:hover {
    color: var(--primary-red) !important;
    padding-left: 10px;
}

.footer .btn-link::before {
    content: '›';
    margin-right: 8px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Botões Sociais */
.footer .btn-lg-square {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    transition: all 0.3s ease;
}

.footer .btn-lg-square:hover {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%) !important;
    border-color: var(--primary-red) !important;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

/* Ícones de Contato */
.footer i {
    color: var(--primary-red) !important;
}

/* Copyright */
.copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright a {
    color: var(--primary-red) !important;
    text-decoration: none;
    font-weight: 600;
}

.copyright a:hover {
    color: var(--primary-red-light) !important;
}

.border-bottom {
    border-bottom: 2px solid var(--primary-red) !important;
}

/* ========================================
   SERVIÇOS
   ======================================== */

.service-item {
    background-color: var(--white);
}

.service-text h3 {
    color: var(--primary-red) !important;
}

/* ========================================
   DEPOIMENTOS
   ======================================== */

.testimonial-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.testimonial-carousel .owl-dot {
    border: 2px solid var(--primary-red) !important;
}

.testimonial-carousel .owl-dot.active {
    background-color: var(--primary-red) !important;
}

/* ========================================
   BREADCRUMBS
   ======================================== */

.breadcrumb-item.active {
    color: var(--primary-red) !important;
}

.breadcrumb-item a {
    color: var(--white) !important;
}

.breadcrumb-item a:hover {
    color: var(--primary-red-light) !important;
}

/* ========================================
   LINKS
   ======================================== */

a {
    color: var(--primary-red);
    text-decoration: none;
}

a:hover {
    color: var(--primary-red-dark);
}

/* ========================================
   BORDAS E SEPARADORES
   ======================================== */

.border-primary {
    border-color: var(--primary-red) !important;
}

.border-secondary {
    border-color: #E0E0E0 !important;
}

/* ========================================
   LISTAS
   ======================================== */

.list-group-item {
    background-color: var(--white) !important;
    color: var(--text-dark) !important;
    border-color: #E0E0E0 !important;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
    background-color: var(--primary-red) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-red) !important;
}

.back-to-top:hover {
    background-color: var(--primary-red-dark) !important;
    border-color: var(--primary-red-dark) !important;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media (max-width: 991px) {
    .navbar-dark {
        background-color: var(--white) !important;
    }
    
    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
}

/* ========================================
   ANIMAÇÕES E TRANSIÇÕES
   ======================================== */

.btn,
.team-item,
.service-item,
a {
    transition: all 0.3s ease;
}

/* ========================================
   AJUSTES ESPECÍFICOS
   ======================================== */

/* Garantir que o spinner seja visível */
#spinner.show {
    background-color: rgba(255, 255, 255, 0.95) !important;
}

/* Ajustar contraste em seções escuras */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
    color: var(--text-dark) !important;
}

/* Garantir legibilidade em todos os backgrounds */
.bg-secondary h1,
.bg-secondary h2,
.bg-secondary h3,
.bg-secondary h4,
.bg-secondary h5,
.bg-secondary h6 {
    color: var(--text-dark) !important;
}

/* ========================================
   SEÇÃO DE BUSCA - NOVO DESIGN
   ======================================== */

.search-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.search-wrapper {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.search-info {
    padding-right: 30px;
}

.search-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.search-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.search-tagline {
    font-size: 1.2rem;
    color: #FF0000;
    font-weight: 600;
    margin-bottom: 20px;
}

.search-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.search-box-argo {
    background: linear-gradient(135deg, #000 0%, #2c2c2c 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.search-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.search-form .search-input {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-form .search-input:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Estilos para Select2 */

/* Select2 Container */
.select2-container--default .select2-selection--multiple {
    background-color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 8px 10px !important;
    min-height: 45px !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: none !important;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2) !important;
}

/* Selected items (tags) */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #FF0000 !important;
    border: none !important;
    outline: none !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 5px 10px !important;
    font-size: 0.85rem !important;
    margin: 3px !important;
    box-shadow: none !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff !important;
    margin-right: 5px !important;
    font-weight: bold !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ffcccc !important;
    background: transparent !important;
}

/* Placeholder */
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999 !important;
}

/* Dropdown */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #FF0000 !important;
}

.select2-dropdown {
    border: none !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
}

.select2-results__option {
    padding: 10px 15px !important;
    font-size: 0.9rem !important;
}

/* Search box inside dropdown */
.select2-search--dropdown .select2-search__field {
    border: 2px solid #f0f0f0 !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #FF0000 !important;
    outline: none !important;
}

.btn-search-argo {
    width: 100%;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.btn-search-argo:hover {
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
}

/* ========================================
   CARDS DE EMPREENDIMENTOS - NOVO DESIGN
   ======================================== */

.empreendimentos-section {
    background: #fff;
}

.section-title-argo {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    position: relative;
    display: inline-block;
}

.section-title-argo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border-radius: 2px;
}

.card-argo {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-argo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

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

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

.card-argo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.card-argo-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-argo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.card-argo-location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-argo-location i {
    color: #FF0000;
    font-size: 1.1rem;
}

.card-argo-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #333;
}

.detail-item i {
    color: #FF0000;
    font-size: 1.2rem;
    width: 20px;
}

.card-argo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
    margin-top: auto;
}

.card-argo-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-argo-type i {
    color: #FF0000;
}

.btn-card-argo {
    padding: 0.6rem 1.5rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-card-argo:hover {
    background: #FF0000;
    color: #fff;
    transform: translateX(5px);
}

/* ========================================
   RESPONSIVIDADE - BUSCA E CARDS
   ======================================== */

@media (max-width: 991px) {
    .search-wrapper {
        padding: 30px;
    }
    
    .search-info {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .search-main-title {
        font-size: 2rem;
    }
    
    .search-box-argo {
        padding: 30px 20px;
    }
    
    .section-title-argo {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .search-wrapper {
        padding: 20px;
    }
    
    .search-main-title {
        font-size: 1.5rem;
    }
    
    .search-box-argo {
        padding: 20px 15px;
    }
    
    .card-argo-details {
        padding: 0.8rem;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
    
    .section-title-argo {
        font-size: 1.5rem;
    }
    
    .select2-container--default .select2-selection--multiple {
        min-height: 40px !important;
        padding: 6px 8px !important;
    }
    
    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        font-size: 0.8rem !important;
        padding: 4px 8px !important;
    }
}
