
:root{
    --bs-text-warning: #e7b504;
    --bs-primary: #203e9c;
}

/* Efeito de vidro aprimorado */
.bg-glass {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 24, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
    padding: 40px;
    position: relative;
    overflow: visible;
    border-left: 4px solid #f8b500;
    max-width: 600px;
    margin-left: 20px;
}

.bg-glass:hover {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.bg-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.bg-glass:hover::before {
    opacity: 1;
}

.title-accent {
    color: #f8b500;
    font-style: italic;
    font-weight: 300;
}

.premium-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #f8b500;
    color: #000;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(230, 149, 0, 0.3);
    z-index: 1;
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 24, 0.3), rgba(0, 0, 24, 0.3)), url('../imagens/modern-architecture.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    color: #0d2366;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f8b500;
    margin: 15px 0;
}

.btn-primary-custom {
    background-color: #f8b500;
    color: #000;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
}

.btn-primary-custom:hover {
    background-color: #e6a700;
    color: #000;
}

.gallery-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-img:hover img {
    transform: scale(1.05);
}

.gallery-img.tall {
    height: 500px;
}

.gallery-img.small {
    height: 238px;
}

.info-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.info-box h3 {
    color: #0d2366;
    margin-bottom: 20px;
}

.info-box i {
    color: #f8b500;
    margin-right: 10px;
}

.cta-section {
    background-color: #0d2366;
    color: white;
    padding: 80px 0;
}

footer {
    background-color: #091a4a;
    color: white;
    padding: 50px 0 20px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.bg-gradient-dark {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

.translate-middle-y {
    transform: translateY(-50%);
}

.separator-dot {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
}

.separator-dot span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #f8b500;
    border-radius: 50%;
}

/* Cards de diferenciais */
.diferencial-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Indicador de clique */
.diferencial-card::after {
    content: "Clique para mais detalhes";
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #f8b500;
    color: white;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.diferencial-card:hover::after {
    opacity: 1;
}

/* Ícone de clique */
.diferencial-card .click-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #0d2366;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.diferencial-card:hover .click-icon {
    transform: scale(1.2);
    opacity: 1;
    color: #f8b500;
}

.icon-bg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(248, 181, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-bg i {
    font-size: 28px;
    color: #f8b500;
}

.diferencial-titulo {
    color: #0d2366;
    font-weight: 600;
    margin-bottom: 15px;
}

.diferencial-descricao {
    color: #6c757d;
    margin-bottom: 20px;
}

.diferencial-line {
    width: 40px;
    height: 3px;
    background-color: #f8b500;
}

/* Estilo do modal */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.modal-title {
    color: #0d2366;
    font-size: 24px;
    /* <-- ALTERADO AQUI: Título maior */
}

.modal h5.text-warning {
    font-weight: 600;
    font-size: 20px;
    /* <-- ALTERADO AQUI: Subtítulo maior */
}

.modal-body {
    padding: 30px;
}

.modal-footer .btn {
    border-radius: 30px;
    padding: 8px 25px;
}

.modal-dialog {
    max-width: 800px; /* Um tamanho intermediário */
    margin: 1.75rem auto;
}

/* Estilo para o container da imagem */
.image-container-modal {
    height: 500px; /* Aumentei a altura para comportar uma imagem vertical */
    width: 350px; /* Limitar a largura para forçar o recorte vertical */
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* Estilo para a imagem dentro do modal */
.modal-image {
    height: 100%;
    width: auto; /* Permitir que a largura seja automática */
    max-width: none; /* Remover limite máximo de largura */
    object-fit: cover;
    object-position: center; /* Você pode mudar para "left center" se quiser o foco à esquerda */
}