/* ============================================
   PÁGINA DE DETALHES - LAYOUT IGUAL AO PRINT
   Design Limpo e Profissional
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #111827;
    --gold: #d4af37;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --green: #10b981;
    --whatsapp: #16a34a;
    --red: #ef4444;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER ========== */
.header-pro {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 0;
}

/* Container específico do header - logo grudada na lateral */
.header-pro .container {
    padding: 0 2rem 0 0;
    max-width: 100%;
    margin: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    width: 100%;
    padding-left: 0;
}

.logo-pro {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    padding-left: 0;
    margin-left: 0;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-pro:hover .logo-img {
    opacity: 0.8;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-pro {
    display: flex;
    gap: 32px;
}

.nav-pro a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-pro a:hover {
    color: var(--gold);
}

/* ========== GALERIA DE 3 FOTOS ========== */
.gallery-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    height: 100%;
    padding: 0 12px;
}

.gallery-item {
    position: relative;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.btn-more-photos {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.btn-more-photos:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

.gallery-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.photo-counter {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.photo-counter svg {
    width: 16px;
    height: 16px;
}


/* ========== MODAL LIGHTBOX CORRIGIDO ========== */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    flex-direction: column;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.5);
    flex-shrink: 0; /* Não encolhe */
}

.lightbox-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.lightbox-counter {
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 500;
}

.lightbox-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

.lightbox-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
    min-height: 0; /* IMPORTANTE: Permite que o flex container calcule corretamente */
    overflow: hidden;
}

.lightbox-image {
    max-width: 90vw; /* Limita largura a 90% da viewport */
    max-height: calc(100vh - 280px); /* Limita altura (viewport - header - thumbnails) */
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
}

.lightbox-nav.prev { left: 40px; }
.lightbox-nav.next { right: 40px; }

.lightbox-thumbnails {
    display: flex;
    gap: 12px;
    padding: 20px 40px;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.5);
    flex-shrink: 0; /* Não encolhe */
}

.lightbox-thumb {
    min-width: 80px;
    height: 60px;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.lightbox-thumb:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-thumb.active {
    border-color: var(--gold);
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== RESPONSIVE LIGHTBOX ========== */
@media (max-width: 768px) {
    .lightbox-header {
        padding: 16px 20px;
    }
    
    .lightbox-content {
        padding: 20px;
    }
    
    .lightbox-image {
        max-width: 95vw;
        max-height: calc(100vh - 240px);
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
    
    .lightbox-nav.prev { left: 20px; }
    .lightbox-nav.next { right: 20px; }
    
    .lightbox-thumbnails {
        padding: 16px 20px;
    }
    
    .lightbox-thumb {
        min-width: 70px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .lightbox-header {
        padding: 12px 16px;
    }
    
    .lightbox-title {
        font-size: 14px;
    }
    
    .lightbox-counter {
        font-size: 12px;
    }
    
    .lightbox-content {
        padding: 16px;
    }
    
    .lightbox-image {
        max-width: 100vw;
        max-height: calc(100vh - 200px);
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav.prev { left: 12px; }
    .lightbox-nav.next { right: 12px; }
    
    .lightbox-thumbnails {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .lightbox-thumb {
        min-width: 60px;
        height: 45px;
    }
}
/* ========== CONTENT SECTION ========== */
.content-section {
    padding: 40px 0 60px;
    background: var(--gray-50);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

/* ========== MAIN CONTENT ========== */
.main-content {
    min-width: 0;
}

/* ========== PROPERTY HEADER CLEAN ========== */
.property-header-clean {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.property-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.property-title-clean {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.property-location-clean {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

/* Botão Compartilhar */
.btn-share {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
}

.btn-share:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--gray-900);
}

.btn-share svg {
    width: 18px;
    height: 18px;
}

/* ========== CARACTERÍSTICAS COM ÍCONES ========== */
.property-features-icons {
    background: var(--white);
    padding: 16px 28px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.feature-icon-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature-icon-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-900);
    white-space: nowrap;
}

/* ========== DESCRIPTION SECTION ========== */
.description-section {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.description-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

.description-content {
    margin-bottom: 24px;
}

.description-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.description-content p:last-child {
    margin-bottom: 0;
}

/* ========== REFERENCE INFO ========== */
.reference-info {
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.reference-code {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.reference-disclaimer {
    font-size: 13px;
    color: var(--gray-600);
    font-style: italic;
    margin: 0;
}

.reference-disclaimer strong {
    font-style: italic;
}

/* ========== INFO BOX SECTIONS (Cômodos, Áreas) ========== */
.info-box-section {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
    overflow: hidden;
}

.info-box-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    padding: 16px 24px;
    margin: 0;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.info-box-content {
    padding: 20px 24px;
}

.info-items-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.info-item-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    text-align: center;
}

.info-item-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

/* Area Item Box */
.area-item-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 20px;
}

.area-label-text {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.area-value-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
}

/* Características Row */
.caracteristicas-row {
    flex-wrap: wrap;
}

/* ========== SIDEBAR ========== */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* ========== CONTACT CARD ========== */
.contact-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ========== PRICE HEADER ========== */
.price-header {
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.5px;
    line-height: 1;
}

.price-slash {
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-400);
    margin: 0 4px;
}

.price-type-inline {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Price Extras (IPTU e Condomínio) */
.price-extras {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.price-extra-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.extra-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--whatsapp);
}

.extra-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
}

.extras-message {
    font-size: 13px;
    color: var(--gray-500);
    font-style: italic;
    margin: 16px 0 0 0;
}

/* ========== AGENT INFO ========== */
.agent-info {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.agent-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.agent-logo {
    flex-shrink: 0;
}

.agent-logo img {
    display: block;
}

.agent-details {
    flex: 1;
}

.agent-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.agent-creci {
    font-size: 12px;
    color: var(--gray-500);
}

.agent-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
}

.contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--whatsapp);
    flex-shrink: 0;
}

.contact-item button {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--gray-400);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item button:hover {
    color: var(--gray-700);
}

/* ========== CONTACT FORM ========== */
.contact-form {
    padding: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-size: 14px;
    color: var(--gray-900);
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gray-400);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

/* Phone Input Wrapper */
.phone-input-wrapper {
    display: flex;
    gap: 8px;
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    background: var(--gray-50);
    min-width: 80px;
}

.flag-icon {
    width: 22px;
    height: 14px;
    border-radius: 2px;
}

.phone-code {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
}

.phone-input-wrapper .form-input {
    flex: 1;
}

/* Form Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--gray-900);
}

.form-checkbox label {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

/* ========== FORM ACTIONS ========== */
.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-whatsapp-form {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp-form:hover {
    background: #15803d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.btn-email-form {
    background: var(--gray-900);
    color: white;
}

.btn-email-form:hover {
    background: var(--gray-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-submit svg {
    width: 16px;
    height: 16px;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ========== FOOTER ========== */
.footer-pro {
    background: #1A1A1A;
    padding: 40px 0;
    text-align: center;
    color: var(--gray-400);
    font-size: 14px;
}

.footer-dev {
    margin-top: 8px;
    font-size: 13px;
    color: var(--gray-500);
}

.footer-dev a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-dev a:hover {
    color: #e9c85d;
    text-decoration: underline;
}

/* ========== ERROR ========== */
.error-section {
    padding: 120px 0;
    text-align: center;
}

.error-content h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

.error-content p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--gray-900);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--gray-900);
}

.gallery-placeholder {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-400);
}

/* ========== TOAST NOTIFICATION ========== */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 20px;
    background: var(--gray-900);
    color: white;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.toast.success {
    background: var(--whatsapp);
}

.toast.error {
    background: var(--red);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: relative;
        top: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:last-child {
        display: none;
    }
}

@media (max-width: 768px) {
    .property-title-clean {
        font-size: 22px;
    }
    
    .property-header-top {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-share {
        align-self: flex-start;
    }
    
    .gallery-section {
        height: 400px;
    }
    
    .gallery-grid {
        padding: 0 8px;
        gap: 8px;
    }
    
    .nav-pro {
        display: none;
    }
    
    .btn-more-photos {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .form-actions {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        margin-bottom: 24px;
    }
    
    .property-header-clean,
    .description-section,
    .info-box-section {
        padding: 24px;
    }
    
    .property-features-icons {
        padding: 16px 22px;
        gap: 18px;
    }
    
    .info-box-title {
        padding: 14px 20px;
    }
    
    .info-box-content {
        padding: 16px 20px;
    }
    
    /* Grid responsivo para proximidades em tablets */
    .info-items-row {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .content-section {
        padding: 24px 0 40px;
    }
    
    .content-grid {
        gap: 24px;
    }
    
    .gallery-section {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 4px;
        gap: 4px;
    }
    
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3) {
        display: none;
    }
    
    .price-value {
        font-size: 24px;
    }
    
    .agent-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .property-header-clean,
    .description-section,
    .info-box-section {
        padding: 20px;
        border-radius: 6px;
    }
    
    .property-features-icons {
        padding: 14px 18px;
        gap: 14px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feature-icon-item {
        width: 100%;
    }
    
    .feature-icon-img {
        width: 16px;
        height: 16px;
    }
    
    .feature-icon-text {
        font-size: 12px;
    }
    
    .description-title {
        font-size: 16px;
    }
    
    .description-content p {
        font-size: 14px;
    }
    
    /* Mantém itens lado a lado em todas as resoluções */
    .info-item-box {
        flex: 0 1 auto;
        min-width: fit-content;
    }
    
    /* Grid responsivo para proximidades */
    .info-items-row {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .btn-share span {
        display: none;
    }
    
    .btn-share {
        padding: 10px;
    }
}

/* ========== RESPONSIVIDADE DO HEADER ========== */

/* Tablets */
@media (max-width: 768px) {
    .header-pro {
        padding: 1rem 0;
    }
    
    .header-pro .container {
        padding: 0 1rem 0 0;
    }
    
    .logo-pro {
        padding-left: 0;
        margin-left: 0;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        min-height: auto;
    }
    
    .nav-pro {
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-pro a {
        font-size: 14px;
    }
}

/* Intermediário */
@media (max-width: 600px) {
    .header-pro .container {
        padding: 0 0.5rem 0 0;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text {
        display: none; /* Ocultar texto da logo para economizar espaço */
    }
    
    .header-content {
        flex-direction: row !important; /* Manter na mesma linha */
        align-items: center !important;
        min-height: 60px;
    }
    
    .nav-pro {
        width: auto !important;
        justify-content: flex-end !important;
        gap: 0.5rem;
    }
    
    .nav-pro a {
        font-size: 0.75rem;
        padding: 0.25rem 0;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .header-pro {
        padding: 0.5rem 0;
    }
    
    .header-pro .container {
        padding: 0 0.5rem 0 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-text {
        display: none; /* Ocultar texto em mobile */
    }
    
    .header-content {
        flex-direction: row !important; /* Horizontal */
        align-items: center !important;
        gap: 0.5rem;
        min-height: 60px;
    }
    
    .nav-pro {
        width: auto !important;
        justify-content: flex-end !important;
        gap: 0.4rem;
        flex-wrap: nowrap;
    }
    
    .nav-pro a:not(:last-child) {
        display: none; /* Mostrar apenas último link em telas muito pequenas */
    }
    
    .nav-pro a {
        font-size: 0.7rem;
        white-space: nowrap;
    }
}