html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 1050;
    background-color: #25D366;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(37,211,102,.5);
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0 0 2rem 2rem;
}

/* ===== Info Cards ===== */
.info-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 1rem !important;
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.12) !important;
}
.info-icon {
    font-size: 2.5rem;
    line-height: 1;
}

/* ===== Gallery Grid ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: .5rem;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: .75rem;
    border-radius: .5rem;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-label {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .02em;
    text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

/* ===== Modal Carousel ===== */
.carousel-img {
    max-height: 70vh;
    object-fit: contain;
    background: #111;
}
#galleryModal .modal-content {
    border-radius: 1rem;
    overflow: hidden;
}
#galleryModal .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    opacity: .5;
}
#galleryModal .carousel-indicators .active {
    opacity: 1;
}