@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --pale-blue: hsl(225, 100%, 94%);
    --bright-blue: hsl(245, 75%, 52%);
    --very-pale-blue: hsl(225, 100%, 98%);
    --desaturated-blue: hsl(224, 23%, 55%);
    --dark-blue: hsl(223, 47%, 23%);
    --rosa-music: rgb(178, 110, 240);
    --verde-palid: rgb(117, 235, 202);
    --azul--pal: rgb(30, 31, 205);
}

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

body {
    background-image: url(./pattern-background-desktop.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--desaturated-blue);
    font-family: "Red Hat Display", sans-serif;
    font-size: 16px;
}
.cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

@media screen and (max-width: 768px) {
  .cards {
    flex-direction: column;
  }
}
/*
@media (max-width: 480px) {
  .cards {
    padding-top: 250px;
  }
}
*/
.card {
    width: 450px;
    background-color: white;
    color: var(--desaturated-blue);
    border-radius: 20px;
    overflow: hidden;
    margin: 50px auto;
}
@media screen and (max-width: 768px) {
  .card {
    width: 370px;
    margin: 5px auto;
  }
}
.title {
    color: var(--dark-blue);
    font-weight: 900;
    font-size: 32px;
}
.hero-image {
    width: 100%;
}
.container {
    padding: 30px 30px 30px 30px;
    /*border: 1px solid orange;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 18px;

}
.container > * {
    margin: 13px 0;
}
.order-description{
    line-height: 25px;
}
.plan-container {
    font-size: 16px;
    background-color: var(--very-pale-blue);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.plan-container a {
    color: var(--bright-blue);
    font-size: 13px;
}
.plan-container a:hover {
    opacity: 0.8;
    text-decoration: none;
    font-weight: 700;
}
.plan-description {
    line-height: 20px;
    margin-right: 75px;
}

.plan-container strong {
    color: var(--dark-blue)
}

button {
    width: 100%;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 12px;
    cursor: pointer;
}
.proceed-button {
    background-color: var(--bright-blue);
    padding: 1rem 0;
    color: white;
    box-shadow: 0 20px 30px -8px rgb(197 189 245);
}
.proceed-button:hover {
    opacity: 0.8;
}

.cancel-button {
    background-color: white;
    color: var(--desaturated-blue);
    margin-top: 22px;
}
.cancel-button:hover {
   color: black;
}


/*Botton desplegable*/

.dropbtn {
  background-color: var(--bright-blue);
  color: white;
  padding:  1rem 0;
  font-size: 16px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--very-pale-blue);
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  display: unset;
}



.dropdown-content a:hover {
  background-color: rgb(117, 235, 202);
  border-radius: 12px;
}

.dropdown:hover .dropdown-content {
  display: block;
  background-color: var(--bright-blue);
  border-radius: 12px;
  font-weight: 700;
}

.dropdown:hover .dropbtn {
    opacity: 0.8;
    background-color: rgb(117, 235, 202);
   

}