* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
}

.text-shadow {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.img-zoom-hover {
    transition: transform 0.4s ease-in-out;
}

.img-zoom-hover:hover {
    transform: scale(1.05);
}


/* Header */

nav a:hover {
    color: #e7d5b9 !important;
    text-decoration: underline;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    margin-top: 0.5rem;
}

/* Posicionamiento fijo abajo a la derecha */
.BtnWhatsApp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition: width 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  background-color: #00d757;
}

/* Icono */
.sign {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s ease;
}
.sign svg {
  width: 25px;
}
.sign svg path {
  fill: white;
}

/* index / inicio */

.card-img-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-img-container .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    transition: background 0.4s ease;
}

.card-hover:hover .card-img-container img {
    transform: scale(1.08);
}

.card-hover:hover .overlay {
    background: rgba(0, 0, 0, 0.6);
}


/* Footer */

footer a:hover {
    color: #e7d5b9 !important;
    text-decoration: underline;
}

/* .back-to-top {
    position: fixed;
    bottom: 75px;
    right: 20px;
    background-color: #212529;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #343a40;
} */

html,

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

main {
    flex: 1;
}


/* Sección de servicios */

.gradient-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    background-color: rgba(13, 110, 253, 0.1);
}

.service-card:hover .icon-container {
    transform: scale(1.1);
}

.service-icon {
    color: #0d6efd;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.card-footer {
    background-color: rgba(13, 110, 253, 0.05);
    border-top: none;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #0d6efd;
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

.btn-more {
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-more:hover {
    color: #0a58ca;
}