
/* ====== ESTILOS GENERALES ====== */
* {
  font-family: 'Open Sans', sans-serif;
}

body {
  background-color: #ffffff;
  color: #000000;
}

/* ====== COLORES DE TEXTO EN CONTENEDOR ====== */
.container .text-dark,
.container .text-warning,
.container .text-secondary {
  color: #000000 !important;
}

/* ====== NAVBAR ====== */
.navbar {
  background-color: #000 !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-brand img {
  height: 130px;
  width: auto;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #ffffff !important;
}

/* ====== SECCIÓN HERO ====== */


.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 150px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
}

/* ====== SECCIÓN NOSOTROS ====== */
#nosotros {
  background-color: #ffffff;
  color: #000000;
  padding: 80px 20px;
  margin-top: -110px;
}

#nosotros h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#nosotros p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000000;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

/* ====== BOTÓN CTA ====== */
#nosotros .btn-cta,
.btn-cta {
  background-color: #e0b973;
  color: #000;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

#nosotros .btn-cta:hover,
.btn-cta:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.05);
}

/* ====== SECCIÓN SERVICIOS ====== */
.servicios .card {
  background-color: #111;
  border: none;
  transition: transform 0.3s;
}

.servicios .card:hover {
  transform: translateY(-5px);
}

/* ====== GALERÍA ====== */
.galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.galeria img:hover {
  transform: scale(1.05);
}

/* ====== SECCIÓN DISEÑAMOS ====== */
#disenamos {
  background-color: #ffffff;
  color: #fff;
  padding: 60px 0;
  margin-top: -100px;
}

#disenamos h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* ====== TARJETAS DE SERVICIO ====== */
.service-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card .overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  color: #fff;
  transition: background 0.4s ease;
}

.service-card:hover .overlay {
  background: rgba(0, 0, 0, 0.55);
}

.service-card .overlay i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #e0b973;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.service-card .overlay h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.service-card .overlay p {
  font-size: 1rem;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.service-card:hover .overlay p {
  max-height: 150px;
  opacity: 1;
}

.service-card.active .overlay p {
  max-height: 2000px;
  opacity: 1;
  overflow: visible;
}

.service-card.active:hover .overlay p {
  max-height: 2000px;
}

/* ====== FOOTER ====== */
footer {
  background-color: #000;
  padding: 30px 0;
  text-align: center;
}

footer a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s;
}

footer a:hover {
  color: #ffffff;
}

/* ====== ICONOS FLOTANTES ====== */
.social-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.social-float a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-float a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* ====== ICONOS DE REDES ====== */
.social-float .whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe57);
}

.social-float .instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .social-float {
    bottom: 20px;
    right: 15px;
    gap: 12px;
  }

  .social-float a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

.footer .row {
  align-items: center;
}

.footer h5 {
  color: #c6a972;
  margin-bottom: 1rem;
}

.footer p, 
.footer ul li {
  font-size: 16px;
  color: #fff;
}

.footer .social-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer .social-icons a:hover {
  color: #c6a972;
}

.footer-bottom {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}








