@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ------------------------- NAV ------------------------- */

nav {
  background-color: #1cd1b0;
  color: black;
  padding: 10px;
  font-size: 15px;
  border: solid 1px black;
}

/* ------------------------- HEADER ------------------------- */

header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
  background: #00669f;
}

.store-logo {
  width: 90px;
  height: auto;
  display: block;
}

h1 {
  background: transparent;
  padding: 15px;
  margin: 0;
  font-size: 35px;
  color: white;
  font-style: Roboto;
}

/* ------------------------- NAV BAR ------------------------- */

.nav-bar {
  background: #001d2d;
  border: none;
  padding: 0;
}

.nav-bar a {
  color: white;
  text-decoration: none;
}

.nav-list {
  background: transparent;
  color: #ffffff;
  list-style: none;
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin: 0;
  padding: 8px 24px;
}

.nav-home {
  margin-right: auto;
}

/* ------------------------- CARD SECTION ------------------------- */

section {
  margin-block: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.card-section {
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 80px;
  margin-right: 80px;
  font-size: 15px;
  align-items: stretch;
}

.card-section article {
  width: 300px;
  border-radius: 12px;
  background: #f3f3f3;
  display: flex;
  flex-direction: column;
}

/* ------------------------- CARD MEDIA ------------------------- */

.card-media {
  position: relative;
  height: 180px;
}

.bg-batman,
.bg-harley,
.bg-wonder,
.bg-superman {
  display: block;
  width: 100%;
  height: 180px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.heart-icon {
  position: absolute;
  top: 15px;
  left: 21px;
}

.icon-batman,
.icon-harley,
.icon-wonder,
.icon-superman {
  position: absolute;
  border-radius: 50%;
  width: 120px;
  top: 128px;
  left: 88px;
}

/* ------------------------- CARD BODY ------------------------- */

.card-body {
  text-align: center;
  padding: 18px;
  padding-top: 78px;
  background: #f3f3f3;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h2 {
  margin: 0 0 12px;
  font-size: 23px;
}

.card-body p {
  text-align: left;
  margin: 0 0 18px;
}

.card-body a {
  display: block;
  padding: 12px 0;
  background: #00669f;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin-top: auto;
  width: 45%;
  text-align: center;
  align-self: center;
}

.btn-more:hover {
  background-color: #000;
  color: white;
}

/* ------------------------- FOOTER ------------------------- */

footer {
  background-color: #00669f;
  font-size: 16px;
  color: white;
  padding: 10px;
  text-align: center;
}

/* ------------------------- FLOATING BUTTON ------------------------- */

.floating-btn {
  position: fixed;
  right: 20px;
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  z-index: 999;
}

.floating-btn:hover {
  background-color: #000;
  color: white;
}

/* ------------------------- RESPONSIVE ------------------------- */

@media (max-width: 800px) {
  .card-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

/* ============================================================= */
/*                FORM PAGE (FORMULARIO) STYLES                 */
/* ============================================================= */

.form-container h2,
.form-container h3 {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0;
}

.form-container h2 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 6px;
}

.form-container h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 18px;
  opacity: 0.95;
}

.form-container,
.form-container * {
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

.form-container {
  text-align: center;
  background: #00669f;
  color: #fff;
  max-width: 960px;
  margin: 32px auto;
  padding: 24px 28px;
  border-radius: 32px;
}

.hero-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-style: Inter;
}

/* ------------------------- LEFT / RIGHT COLUMNS ------------------------- */

.left-data,
.left-fields {
  width: 48%;
  min-width: 280px;
}

.right-data,
.right-fields {
  width: 48%;
  min-width: 280px;
}

/* ------------------------- INPUTS ------------------------- */

.name-input {
  border: 1px;
  border-radius: 15.34px;
  height: 35px;
  margin-bottom: 30px;
  padding-left: 13px;
  width: 30vw;
}

.date-input {
  border: 1px;
  border-radius: 15.34px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  height: 35px;
  margin-bottom: 30px;
  margin-top: 6px;
  padding: 0 13px;
  width: 30vw;
}

.species-select,
.file-input {
  margin-bottom: 20px;
}

.desc-field textarea {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  padding: 12px;
  color: #000;
  background: #fff;
  margin-top: 10px;
}

.left-fields,
.right-fields {
  display: flex;
  flex-direction: column;
}

.left-fields input,
.right-fields select,
.right-fields input[type="file"] {
  width: 100%;
  height: 38px;
  border-radius: 14px;
  border: 1px solid transparent;
  padding: 0 12px;
  color: #000;
  background: #fff;
}

.right-fields input[type="file"] {
  background: transparent;
  border: 0;
  padding: 0;
  width: auto;
  display: inline-block;
  color: #fff;
}

.right-fields label input {
  margin-right: 8px;
}

.right-fields label label {
  margin-top: 6px;
}

hr {
  color: #000;
  margin-top: 20px;
  margin-bottom: 20px;
}

label {
  margin-top: 10px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* ------------------------- BUTTON ------------------------- */

.main-btn {
  display: block;
  margin: 20px auto 0;
  background: #1cd1b0;
  color: #000;
  border: 0;
  border-radius: 23px;
  font-size: 32px;
  font-weight: 700;
  height: 72px;
  padding: 0 18px;
  min-width: 260px;
  cursor: pointer;
}

.main-btn:hover {
  background: #001d2d;
  color: #fff;
}

/* ------------------------- RESPONSIVE FORM ------------------------- */

@media (max-width: 900px) {
  .left-data,
  .right-data {
    width: 100%;
  }
}
