@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #FFF8F0;
  background-color: #63c58a;
  background: linear-gradient(217deg, #63c58a, #3b7a47, #d0e9d1);
  background-size: 300% 300%;
  background-repeat: no-repeat;
  animation: background 12s ease-in-out infinite;
}
@keyframes background {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.content {
  width: calc(100vw - 50px);
  height: calc(100vh - 50px);
  margin-top: 25px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #FFF8E1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  border: 10px solid #f0e1be;
  border-radius: 20px;
  outline: 5px solid #f0e1be;
  outline-offset: -20px;
  background-image: url(../img/fundo.png);
}
.content .container {
  width: 700px;
  min-height: 250px;
  height: 250px;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-image: url(../img/back_container.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 20px;
  transition: background-color 0.8s ease-in-out;
}
.content .container .back {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.9;
  z-index: 3;
}
.content .container .ball2 {
  position: absolute;
  top: -45px;
  left: -25px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  z-index: 3;
  transition: all 0.8s ease-in-out;
  opacity: 0.6;
}
.content .container .ball {
  position: absolute;
  bottom: -50px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  z-index: 3;
  transition: all 0.8s ease-in-out;
  opacity: 0.4;
}
.content .container .cont-img,
.content .container .cont-info {
  height: 150px;
  z-index: 3;
}
.content .container .cont-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  border: none;
  border-radius: 15px;
  transition: background-color 0.8s ease-in-out;
}
.content .container .cont-img .img_container {
  width: 70%;
}
.content .container .cont-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.content .container .cont-info .buttons {
  display: flex;
  gap: 10px;
}
.content .container .cont-info .buttons .but {
  width: 35px;
  height: 35px;
  background-color: #FFF8E1;
  color: #505050;
  font-weight: bolder;
  border: none;
  border-radius: 5px;
  transition: all 0.2s ease-in;
}
.content .container .cont-info .buttons .but:hover {
  scale: 1.2;
}
.content .container .cont-info h1 {
  width: 293px;
  text-align: right;
}
.content .types {
  width: 700px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 40px;
}
.content .card_type {
  width: 120px;
  background-color: #FFF8E1;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content .card_type .card_img_div {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #63c58a;
  margin: 0 auto 1.25rem auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #FFF8E1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.content .card_type .card_img_div .card_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.content .card_type p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #505050;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.content .card_type:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(59, 122, 71, 0.25);
}
.content .card_type:hover .card_img {
  transform: scale(1.1);
}
.content .card_type:hover p {
  color: #3b7a47;
}
.content .mini-container {
  width: 700px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 50px;
}
.content .mini-container div[class^=mini] {
  width: 340px;
  height: 130px;
  background-color: #ddc299;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.content .mini-container div[class^=mini] .back2 {
  opacity: 0.9;
  z-index: 3;
  transition: all 0.8s ease-in-out;
}
.content .mini-container div[class^=mini] .ball3,
.content .mini-container div[class^=mini] .ball4 {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  z-index: 3;
  transition: all 0.8s ease-in-out;
}
.content .mini-container .mini_1 {
  background-image: url(../img/back_mini.png);
}
.content .mini-container .mini_1 .back2 {
  width: 100%;
  height: 100%;
  background-color: #add8e6;
  z-index: 3;
}
.content .mini-container .mini_1 .ball3 {
  bottom: 150px;
  right: 60px;
  z-index: 3;
  background-color: #759fad;
}
.content .mini-container .mini_1:hover {
  border-radius: 20px;
}
.content .mini-container .mini_1:hover .back2 {
  opacity: 0;
}
.content .mini-container .mini_1:hover .ball3 {
  opacity: 0;
}
.content .mini-container .mini_2 {
  background-image: url(../img/back_mini2.png);
}
.content .mini-container .mini_2 .back2 {
  width: 100%;
  height: 100%;
  background-color: #bc8f8f;
  z-index: 3;
}
.content .mini-container .mini_2 .ball4 {
  bottom: 230px;
  right: -160px;
  background-color: #946e6e;
  z-index: 3;
}
.content .mini-container .mini_2:hover {
  border-radius: 20px;
}
.content .mini-container .mini_2:hover .back2 {
  opacity: 0;
}
.content .mini-container .mini_2:hover .ball4 {
  opacity: 0;
}
.content .foods {
  width: 700px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.content .foods .card_food {
  width: 170px;
  margin-top: 10px;
  background-color: #ddc299;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.5s ease;
}
.content .foods .card_food:hover {
  scale: 1.05;
}
.content .foods .card_food .type {
  width: 60px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #a07d49;
  border-radius: 5px;
  overflow: hidden;
}
.content .foods .card_food .type img {
  width: 50%;
  aspect-ratio: 1/1;
}
.content .foods .card_food .img {
  width: 100%;
  height: 100px;
  background-color: #a07d49;
  border-radius: 5px;
  overflow: hidden;
}
.content .foods .card_food .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.content .foods .card_food .name {
  height: 40px;
  border-radius: 3px;
  margin: 0;
  display: flex;
  color: #FFF8F0;
  background-color: #a07d49;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
}
.content .foods .card_food .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  padding-top: 5px;
}
.content .foods .card_food .row .recipe {
  flex-grow: 1;
  height: 40px;
  background-color: #a07d49;
  color: #FFF8F0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 10px;
  transition: all 0.05s ease-in-out;
}
.content .foods .card_food .row .recipe:hover {
  scale: 1.05;
}
.content .foods .card_food .row .note {
  width: 40px;
  height: 40px;
  background-color: #a07d49;
  border-radius: 5px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF8F0;
  font-size: 14px;
  font-weight: 700;
}
@keyframes rotate {
  from {
    opacity: 0;
    width: 0;
    height: 0;
  }
  to {
    opacity: 1;
  }
}
.content .infos {
  width: 700px;
  height: 500px;
  display: flex;
  gap: 20px;
  background-color: #f0e1be;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: rotate 1s ease-out forwards;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}
.content .infos .column1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content .infos .column1 .img {
  background-color: #a07d49;
  background-image: url(../img/coxinha.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF8F0;
  font-weight: bold;
}
.content .infos .column1 .ingredients h3 {
  margin-bottom: 10px;
  color: #505050;
}
.content .infos .column1 .ingredients ul {
  list-style: none;
  padding-left: 0;
  width: 310px;
}
.content .infos .column1 .ingredients ul li {
  height: 15px;
  color: #505050;
  display: list-item;
  position: relative;
  margin-bottom: 5px;
  border-radius: 3px;
}
.content .infos .column2 {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content .infos .column2 .inf {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.content .infos .column2 .inf > div {
  display: flex;
  flex-direction: column;
  background-color: #a07d49;
  color: #FFF8F0;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  flex: 1;
  max-width: 120px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .infos .column2 .recipe h3 {
  margin-bottom: 10px;
  color: #505050;
}
.content .infos .column2 .recipe p {
  color: #505050;
  margin-bottom: 5px;
  border-radius: 3px;
  width: 100%;
}
.content .infos .column2 .recipe p:nth-child(3) {
  width: 95%;
}
.content .infos .column2 .recipe p:nth-child(4) {
  width: 80%;
}
.content .infos .column2 .recipe p:nth-child(5) {
  width: 100%;
}
.content .infos .column2 .recipe p:nth-child(6) {
  width: 70%;
}
.content .infos .column2 .recipe p:nth-child(7) {
  width: 100%;
}
.content .infos .column2 .recipe p:nth-child(8) {
  width: 90%;
}
.content .infos .column2 .recipe p:nth-child(9) {
  width: 60%;
}
.content .infos .column2 .buttons {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
.content .infos .column2 .buttons button {
  padding: 15px;
  background-color: #ddc299;
  color: #FFF8F0;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.content .infos .column2 .buttons button:nth-child(1) {
  width: 60%;
}
.content .infos .column2 .buttons button:nth-child(2) {
  width: 35%;
}
.content .infos .column2 .buttons button:hover {
  background-color: #a07d49;
  scale: 1.05;
}
@media (max-width: 830px) {
  .content .content {
    width: calc(100% - 20px) !important;
    height: calc(100% - 20px) !important;
    margin-top: 10px !important;
    padding: 0px !important;
  }
  .content .container {
    width: 90%;
    flex-direction: column;
  }
  .content .container .cont-img {
    margin-top: 5px;
  }
  .content .container .cont-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .content .container .cont-info h1 {
    text-align: center;
  }
  .content .container .cont-info .nome-alimento {
    display: none;
  }
  .content .types {
    width: 90%;
    justify-content: space-around;
  }
  .content .types .card_type {
    width: 90px;
    padding: 5px;
    font-size: 8px;
  }
  .content .types .card_type p {
    font-size: 0.7rem;
  }
  .content .types .card_type .card_img_div {
    width: 50px;
    height: 50px;
  }
  .content .mini-container {
    width: 90%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .content .mini-container div[class^=mini] {
    width: 100%;
  }
  .content .mini-container .mini_2 .ball4 {
    right: -68%;
  }
  .content .mini-container .mini_1 .ball3 {
    right: -68%;
  }
  .content .foods {
    width: 90%;
    justify-content: space-evenly;
  }
  .content .foods .card_food {
    width: 140px;
  }
  .content .foods .card_food .name {
    font-size: 12px;
    height: 30px;
  }
  .content .foods .card_food .row .note {
    font-size: 12px;
    height: 30px;
  }
  .content .foods .card_food .row .recipe {
    font-size: 12px;
    height: 30px;
  }
  .content .infos {
    width: 90%;
  }
}
.content footer {
  width: 700px;
  background-color: #a07d49;
  color: #FFF8F0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  padding: 2rem 1rem;
  gap: 2rem;
  border: none;
  border-radius: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.content footer h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.content footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.content footer ul li {
  margin: 0.4rem 0;
  cursor: pointer;
}
.content footer ul li:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.content footer ul li a {
  color: #FFF8F0;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.content footer ul li a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.content footer .footer-section {
  flex: 1 1 200px;
}
.content footer .footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 2.5px solid rgba(255, 248, 240, 0.546);
  padding-top: 1rem;
  font-size: 0.9rem;
}
.content footer .footer-bottom h3 {
  cursor: pointer;
}
@media (max-width: 770px) {
  .content .infos {
    flex-direction: column;
    text-align: center;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  .content .infos .column1 {
    align-items: center;
  }
  .content .infos .column1 .img {
    max-width: 350px;
    min-width: 290px;
  }
  .content .infos .column1 .ingredients {
    width: 100%;
  }
  .content .infos .column1 .ingredients ul {
    width: 100%;
  }
  .content footer {
    width: 90%;
    flex-wrap: wrap;
  }
  .content footer .footer-bottom {
    border-top: 2.5px solid rgba(255, 248, 240, 0.546);
    border-left: none;
  }
  .content footer .footer-section {
    flex: 1 1;
  }
}

@media (max-width: 830px) {
  .content {
    width: calc(100% - 20px) !important;
    height: calc(100vh - 20px) !important;
    margin-top: 10px !important;
    padding: 0px !important;
  }
}/*# sourceMappingURL=style.css.map */
