@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap');

body {
  font-family: 'Montserrat';
  margin: 0;
}

#fondovideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}
  
.contenido{position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height:70%;
}

.w3-tiny{font-size:10px!important}.w3-small{font-size:12px!important}.w3-medium{font-size:15px!important}.w3-large{font-size:18px!important}
.w3-xlarge{font-size:24px!important}.w3-xxlarge{font-size:36px!important}.w3-xxxlarge{font-size:48px!important}.w3-jumbo{font-size:72px!important}
.w3-center{text-align:center;color:#fff;}
.fondoborde span{background-color:black;border-radius:30px;padding-left:20px;padding-right:20px;}
  
.mail  {
  position:fixed;
  width:50px;
  height:50px;
  bottom:24px;
  left:24px;
  background-color:#000;
  color:#fff;
  border-radius:10px;
  text-align:center;
  font-size:32px;
  z-index:100;
}

.whatsapp {
  position:fixed;
  width:50px;
  height:50px;
  bottom:24px;
  right:24px;
  background-color:#25d366;
  color:#FFF;
  border-radius:10px;
  text-align:center;
  font-size:34px;
  z-index:100;
}
.whatsapp-icon {
  margin-top:8px;
}

.mail-icon {
  margin-top:8px;
}

/*modal*/

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.btn {
  font-family: 'Montserrat';
  padding: 12px 24px;
  background-color: #0c60bb;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  background-color: #074b93;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: #f5f5f5;
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content h2 {
  margin-top: 0;
  text-align: center;
}

input, textarea {
  font-family: 'Montserrat';
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-actions {
  display: flex;
  justify-content: space-between;
}

.close-btn {
  background-color: #d35b54;
}

.close-btn:hover {
  background-color: #7A3734;
}

#cartel {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4caf50;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 9999;
}
#cartel.visible {
  display: block;
  opacity: 1;
}