@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Montserrat:wght@300;400;600;700&family=Cormorant+Garamond:wght@300;400;600;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}
.grecaptcha-badge {
    display: none !important;}
    
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(218,165,32,0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(218,165,32,0.2) 100%);
}

/* Logo Watermark */
.logo-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    width: 60%;
    max-width: 600px;
    pointer-events: none;
    animation: pulse-slow 8s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.05; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.08; transform: translate(-50%, -50%) scale(1.05); }
}

/* 3D Card Effect */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-3d:hover {
    transform: translateY(-15px) scale(1.02);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(218, 165, 32, 0.15);
}

/* Gold Glow */
.gold-glow {
    text-shadow: 0 0 30px rgba(218,165,32,0.4), 0 0 60px rgba(218,165,32,0.2);
}

.gold-glow-box {
    box-shadow: 0 0 40px rgba(218,165,32,0.3), 0 0 80px rgba(218,165,32,0.15);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #DAA520, #FFD700);
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease;
    box-shadow: 0 0 10px rgba(218,165,32,0.5);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
}

.reveal-up {
    transform: translateY(80px);
}

.reveal-up.active {
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-left.active {
    transform: translateX(0);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-right.active {
    transform: translateX(0);
}

.reveal-scale {
    transform: scale(0.8);
}

.reveal-scale.active {
    transform: scale(1);
}

/* ========================================
   NAVBAR AUTO-HIDE v3.0 - FORCED UPDATE
   ======================================== */

/* Navbar */
#navbar {
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important,
                opacity 1s cubic-bezier(0.16, 1, 0.3, 1) !important,
                background 0.4s ease,
                box-shadow 0.4s ease;
    top: 0;
    opacity: 1;
    will-change: transform, opacity;
    transform: translateY(0);
}

#navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(218,165,32,0.2);
}

/* Auto-hide navbar - SUPER SUAVE COM FORÇA TOTAL */
#navbar.hidden {
    transform: translateY(-120%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important,
                opacity 1s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Garantir que elementos internos também façam fade */
#navbar.hidden > * {
    opacity: 0 !important;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ======================================== */

/* Mobile Menu */
#mobile-menu {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.open {
    transform: translateX(0);
}

/* Mobile menu overlay/backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Divider */
.divider-gold {
    height: 2px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
}


/* Gallery Hover Effect */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218,165,32,0.9), rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Service Card */
.service-card {
    transition: all 0.4s ease;
    border: 2px solid rgba(218,165,32,0.2);
}

.service-card:hover {
    border-color: rgba(218,165,32,0.6);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(218,165,32,0.3);
}

/* Barber Pole Animation */
@keyframes rotate-pole {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.barber-pole-icon {
    animation: rotate-pole 8s linear infinite;
    transform-origin: center;
}

/* Custom SVG Icons */
.custom-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: block;
}

/* Unit Card */
.unit-card {
    transition: all 0.4s ease;
    cursor: pointer;
}

.unit-card:hover {
    transform: translateY(-10px);
    border-color: #DAA520;
}

.unit-card.active {
    border-color: #DAA520;
    background: rgba(218,165,32,0.1);
}

/* Unit Info - Esconde todas e mostra só a ativa */
.unit-info {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.unit-info.active {
    display: block;
    opacity: 1;
}

/* Map Container */
.map-container {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    display: none;
}

.map-container.active {
    display: block;
}

/* Counter Animation */
.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #DAA520;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: #000;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(218,165,32,0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #DAA520;
    color: #DAA520;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #DAA520;
    color: #000;
    transform: translateY(-3px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    position: relative;
    border: 2px solid rgba(218,165,32,0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #DAA520;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: #FFD700;
}

/* Responsive */
@media (max-width: 768px) {
    .counter {
        font-size: 2rem;
    }


    .modal-content {
        padding: 20px;
    }
}

/* ============================================
   SEÇÃO DE CONTATO - COM MODAL
   ============================================ */

.contato-section {
    padding: 120px 0;
    background: #000;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.contato-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(218, 165, 32, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contato-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Header */
.contato-header {
    text-align: center;
    margin-bottom: 80px;
}

.contato-subtitulo {
    color: #DAA520;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contato-titulo {
    font-size: 64px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -1px;
}

.contato-titulo::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
    margin: 24px auto 0;
}

.contato-descricao {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* Cards de Informação */
.contato-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .contato-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(20px);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid rgba(218, 165, 32, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.info-card:hover {
    border-color: rgba(218, 165, 32, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.2);
}

.info-titulo {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-items {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-content {
    text-align: center;
}

.info-link {
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.info-link:hover {
    color: #DAA520;
    transform: scale(1.05);
}

/* Botão Abrir Modal */
.contato-cta {
    text-align: center;
    margin: 60px 0;
}

.btn-contato-modal {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    color: #000;
    border: none;
    padding: 22px 50px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 35px rgba(218, 165, 32, 0.4);
}

.btn-contato-modal:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 50px rgba(218, 165, 32, 0.6);
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
}

.btn-contato-modal i:first-child {
    font-size: 22px;
}

.btn-contato-modal i:last-child {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-contato-modal:hover i:last-child {
    transform: translateX(6px);
}

/* ============================================
   MODAL DO FORMULÁRIO
   ============================================ */

.modal-contato {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-contato.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-contato-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-contato-content {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-contato.active .modal-contato-content {
    transform: scale(1);
}

.modal-contato-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(218, 165, 32, 0.15);
    border: 1px solid rgba(218, 165, 32, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-contato-close:hover {
    background: #DAA520;
    border-color: #DAA520;
    transform: rotate(90deg);
}

.modal-contato-close i {
    color: #DAA520;
    font-size: 20px;
    transition: color 0.3s ease;
}

.modal-contato-close:hover i {
    color: #000;
}

.modal-contato-header {
    padding: 50px 50px 30px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.15);
    text-align: center;
}

.modal-contato-title {
    font-size: 36px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.modal-contato-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 300;
}

.modal-contato-body {
    padding: 40px 50px 50px;
    max-height: calc(90vh - 160px);
    overflow-y: auto;
}

.modal-contato-body::-webkit-scrollbar {
    width: 6px;
}

.modal-contato-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.modal-contato-body::-webkit-scrollbar-thumb {
    background: rgba(218, 165, 32, 0.3);
    border-radius: 10px;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.form-label i {
    color: #DAA520;
    font-size: 15px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 18px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus,
.form-textarea:focus {
    border-color: #DAA520;
    background: rgba(0, 0, 0, 0.7);
    outline: none;
    box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Montserrat', sans-serif;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    color: #000000;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.5);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.form-feedback {
    margin-top: 24px;
}

.feedback-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.06));
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
}

.feedback-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.06));
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
}

.feedback-success i,
.feedback-error i {
    font-size: 24px;
    flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 1023px) {
    .contato-section {
        padding: 100px 0;
    }
    
    .contato-section .container {
        padding: 0 30px;
    }
    
    .contato-titulo {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .contato-section {
        padding: 80px 0;
    }
    
    .contato-section .container {
        padding: 0 20px;
    }
    
    .contato-header {
        margin-bottom: 60px;
    }
    
    .contato-titulo {
        font-size: 38px;
    }
    
    .contato-descricao {
        font-size: 16px;
    }
    
    .contato-info {
        gap: 20px;
    }
    
    .info-card {
        padding: 32px 24px;
    }
    
    .btn-contato-modal {
        padding: 18px 36px;
        font-size: 15px;
    }
    
    .modal-contato {
        padding: 10px;
    }
    
    .modal-contato-header {
        padding: 40px 30px 24px;
    }
    
    .modal-contato-title {
        font-size: 28px;
    }
    
    .modal-contato-body {
        padding: 30px 24px 40px;
    }
}

/* ============================================
   SEÇÃO DE BLOG
   ============================================ */

.blog-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(218, 165, 32, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.blog-header {
    text-align: center;
    margin-bottom: 80px;
}

.blog-subtitulo {
    color: #DAA520;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-titulo {
    font-size: 64px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -1px;
}

.blog-titulo::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
    margin: 24px auto 0;
}

.blog-descricao {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(218, 165, 32, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(218, 165, 32, 0.4);
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.2);
}

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

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.blog-card-content {
    padding: 32px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.blog-card-meta i {
    margin-right: 6px;
    color: #DAA520;
}

.blog-card-destaque {
    background: rgba(218, 165, 32, 0.15);
    color: #DAA520;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: 'Cormorant Garamond', serif;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #DAA520;
}

.blog-card-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #DAA520;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    gap: 14px;
    color: #FFD700;
}

.blog-card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-card-link:hover i {
    transform: translateX(4px);
}

.blog-cta {
    text-align: center;
    padding-top: 40px;
}

.blog-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    color: #000;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 35px rgba(218, 165, 32, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(218, 165, 32, 0.6);
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
}

.blog-cta-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.blog-cta-button:hover i {
    transform: translateX(6px);
}

/* Responsivo Blog */
@media (max-width: 1023px) {
    .blog-section {
        padding: 100px 0;
    }
    
    .blog-section .container {
        padding: 0 30px;
    }
    
    .blog-titulo {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 80px 0;
    }
    
    .blog-section .container {
        padding: 0 20px;
    }
    
    .blog-header {
        margin-bottom: 60px;
    }
    
    .blog-titulo {
        font-size: 38px;
    }
    
    .blog-descricao {
        font-size: 16px;
    }
    
    .blog-grid {
        gap: 30px;
    }
    
    .blog-card-content {
        padding: 24px;
    }
    
    .blog-card-title {
        font-size: 20px;
    }
    
    .blog-cta-button {
        padding: 16px 36px;
        font-size: 14px;
    }
}
.unit-card, .unit-info {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
