@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  overflow-y: hidden;
  letter-spacing: -0.5px;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 100vh;
}

/* Estilos para pantallas pequeñas */
@media (max-width: 767px) {
  .main-container {
    padding: 20px;
  }
}

.container {
  position: absolute;
  min-height: 50vh;
  max-width: 50vh;
  width: calc(100vw);
  max-width: calc(100vw);
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to bottom, #64d6fc, #05b9f5);
  background-repeat: no-repeat;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.card {
  z-index: 1;
  box-shadow: 14px 17px 40px 4px rgba(0, 0, 0, 0.08);
  word-wrap: break-word;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-clip: border-box;
  background-color: #ffffff;
  width: max-content;
  height: max-content;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  margin-top: 20vh;
  margin-bottom: auto;
  padding: 50px;
  padding-top: 50px;
}

@media (max-width: 767px) {
  .card {
    margin-top: 5vh;
    padding: 20px;
    padding-top: 30px;
  }
}


.heading {
  box-shadow: #0C0C0C;
  margin-left: 4px;
  color: #0C0C0C;
  font-size: 36px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .heading {
    font-size: 24px;
  }
}

.text {
  font-weight: 400;
  color: #A9AEC0;
  margin-bottom: 15px;
  margin-top: 0px;
}

.buttons {
  width: 150px;
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .buttons {
    margin-top: 10px;
  }
}

.button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.call-button {
  display: inline-block;
}

.hangup-button {
  display: none;
}

.options {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.timer {
  margin-top: 10px;
}

.openMic-button {
  display: inline-block;
}

.muteMic-button {
  display: none;
}

.dial {
  margin-top: 10px;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.dial-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:12px;
}

.dial-button {
  font: inherit;
  background-color: #f0f0f0;
  border: 0;
  color: #242424;
  border-radius: 0.5em;
  font-size: 1.35rem;
  padding: 0.35em 0.8em;
  font-weight: 600;
  text-shadow: 0 0.0625em 0 #fff;
  box-shadow: inset 0 0.0625em 0 0 #f4f4f4, 0 0.0625em 0 0 #efefef,
    0 0.125em 0 0 #ececec, 0 0.25em 0 0 #e0e0e0, 0 0.3125em 0 0 #dedede,
    0 0.375em 0 0 #dcdcdc, 0 0.425em 0 0 #cacaca, 0 0.425em 0.5em 0 #cecece;
  transition: 0.15s ease;
  cursor: pointer;
}
.dial-button:active {
  translate: 0 0.225em;
  box-shadow: inset 0 0.03em 0 0 #f4f4f4, 0 0.03em 0 0 #efefef,
    0 0.0625em 0 0 #ececec, 0 0.125em 0 0 #e0e0e0, 0 0.125em 0 0 #dedede,
    0 0.2em 0 0 #dcdcdc, 0 0.225em 0 0 #cacaca, 0 0.225em 0.375em 0 #cecece;
}
