.casadora .produto-direita__buy-button {
  display: flex;
  margin-top: 20px; }
  .casadora .produto-direita__buy-button--button {
    font-size: 14px;
    width: 278px;
    height: 61px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    border: 1px solid #fff;
    transition-duration: 250ms; }
    .casadora .produto-direita__buy-button--button:hover {
      border: 1px solid #3cbd94;
      color: #3cbd94; }
      .casadora .produto-direita__buy-button--button:hover svg {
        width: 22px;
        height: 18px; }
        .casadora .produto-direita__buy-button--button:hover svg path {
          fill: #3cbd94; }
    .casadora .produto-direita__buy-button--button:before {
      content: "";
      position: absolute;
      z-index: -1;
      transition-duration: 250ms;
      background-color: #3cbd94;
      top: 0;
      width: 100%;
      height: 0%;
      border-radius: 0 0 10em 10em;
      height: 100%;
      border-radius: 0; }
    .casadora .produto-direita__buy-button--button:hover {
      background-color: transparent; }
      .casadora .produto-direita__buy-button--button:hover:before {
        width: 100%;
        height: 100%;
        border-radius: 0em;
        width: 0%;
        height: 0%;
        border-radius: 0 0 10em 10em; }
    .casadora .produto-direita__buy-button--button svg {
      width: 22px;
      height: 18px;
      margin-right: 10px;
      margin-bottom: 5px; }
      .casadora .produto-direita__buy-button--button svg path {
        fill: #fff; }

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Source Sans Pro', sans-serif; }

.home {
  display: flex;
  flex-direction: column; }
  .home__logo {
    width: 300px; }
    .home__logo img {
      width: 100%; }
  .home__button-list-item {
    display: flex;
    align-items: center;
    width: fit-content;
    height: 60px;
    position: relative;
    padding: 0 30px;
    cursor: pointer;
    margin: 20px 0;
    animation: button-home-in 500ms 1000ms backwards; }
    .home__button-list-item:before {
      content: '';
      width: 60px;
      height: 60px;
      border-radius: 100%;
      background-color: #4db848;
      position: absolute;
      left: 0px;
      transition-duration: 400ms; }
    .home__button-list-item a {
      display: flex;
      width: 100%;
      height: 100%;
      align-items: center;
      z-index: 1;
      font-size: 20px;
      text-transform: uppercase;
      font-family: 'Oswald', sans-serif; }
    .home__button-list-item:hover:before {
      width: 100%;
      border-radius: 100px; }

@keyframes button-home-in {
  from {
    transform: translateX(-100%);
    opacity: 0;
    height: 0; }
  to {
    transform: translateX(0);
    opacity: 1;
    height: 60px; } }

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a {
  text-decoration: none;
  color: unset; }

button, input {
  outline: none;
  box-sizing: border-box; }

.search {
  border: 1px solid #4db848;
  display: flex;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  transition-duration: 400ms;
  overflow: hidden;
  margin-top: 20px; }
  .search:hover {
    width: 100%;
    border-radius: 10px; }
    .search:hover .search__input {
      width: 100%;
      padding-left: 10px; }
  .search__button {
    background-color: transparent;
    cursor: pointer;
    border: none; }
  .search__input {
    width: 0;
    padding: 0;
    margin: 0;
    border: none; }

.page__wrapper-serach {
  width: 300px;
  display: flex;
  align-items: center;
  flex-direction: column; }
