/* GLOBAL */
body {
  font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  background: url('images/logof.png') center/cover no-repeat;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* FEATURES */
.feature-container {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
}

.feature {
  display: block;
  color: white;
  text-decoration: none;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
  background: rgba(255,255,255,0.05);
}

.feature i {
  font-size: 30px;
  margin-bottom: 10px;
}

.feature:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

.feature h5 {
  font-weight: 700;
}

/* SECCIONES */
.section {
  padding: 80px 0;
}

.section.dark {
  background: #111;
  color: white;
}

.contact-page {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;

    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);

    justify-content: center;
    align-items: center;
}

.contact-container {
    width: 100%;
    max-width: 700px;

    background: rgba(255,255,255,0.08);

    padding: 40px;
    border-radius: 15px;

    color: white;
}

.contact-container h2 {
    margin-bottom: 30px;
    text-align: center;
}

.contact-container .form-control {
    padding: 12px;
}

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;

    bottom: 25px;
    right: 25px;

    background: #25D366;
    color: white;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 36px;

    text-decoration: none;

    z-index: 9999;

    box-shadow: 0 4px 15px rgba(0,0,0,.3);

    transition: 0.3s;
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.1);
    background: #20ba5a;
}
