@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

:root {
  /* Colors
  ___________________*/
  --color-primary: #26a0d5;
  --color-primary-light: #0083b3  ;
  --color-white: #fff;
  --color-title: #115798;
  --color-text: #adb1b4;
  --bg-gradient: linear-gradient(180deg, #ffffff 0%, #d6f7ff 100%);
  /* Typography
  ___________________*/
  --font-family-primary: "Poppins", sans-serif;
  --font-family-secondary: "Rubik", sans-serif;
  --font-family-third:'Pacifico', cursive;
  /* font sizes */
  --fs-xs: 1.2rem;
  --fs-sm: 1.4rem;
  --fs-md: 1.6rem;
  --fs-lg: 1.8rem;
  --fs-xl: 2rem;
  --fs-xxl: clamp(2.4rem, 5vw, 2.8rem); 
  --fs-biggest: clamp(3.2rem, 5vw, 6rem);
  /* font weight */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* z-index
  ___________________*/
  --zindex-fixed: 1000;
  --zindex-menu: 1010;

  /* Width & Height 
  ------------------*/
  --width-container: 100rem;
  --height-header: 10rem;

  /* Transition and box shadow*/
  --transition: 0.4s ease-in-out;
  --shadow-primary: 0px 10px 30px 5px rgba(0, 0, 0, 0.05);
  --shadow-header: 0px 2px 5px rgba(0, 0, 0, 0.05);

  /* Border Radius */
  --border-radius-sm: 1rem;
  --border-radius-lg: 2rem;

  /* box-shadow */
  --shadow-primary: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

}

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




.content_anuncio{
    display: flex;
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(../img/MedellínAlExtremo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.buggy{
    position: absolute;
    width: 50%;
    height: auto;
    bottom: -40%;
    left: -17%;
    animation: animate 3s infinite ease-in-out;
}

.rafting{
    position: absolute;
    width: 50%;
    height: auto;
    right: -12%;
    top: -18%;
    transform: rotate(5deg);
    animation: animate 3s infinite ease-in-out;
}

@keyframes animate{
    0%
    {
        transform: translateY(10px);
    }
    50%
    {
        transform: translateY(-10px);
    }
    100%
    {
        transform: translateY(10px);
    }
}

.content_title{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    top: 25%;
    position: relative;
    position: absolute;
    z-index: 3;
}

.content_title img{
    width: 100%;
    height: auto;
}


.title__anuncio1{
    transform: rotate(-4.9deg);
    margin-top: -37px;
    font-size: 2.5rem;
    color: var(--color-white);
    font-weight: normal;
    font-family: var(--font-family-primary);
}

.sub--anuncio{
    display: flex;
    /* position: absolute; */
    flex-direction: column;
    gap: 7px;
}

.sub--anuncio span {
    color: var(--color-white);
    font-family: var(--font-family-primary);
}

.content--info{
    font-family: var(--font-family-primary);
    color: var(--color-white);
    width: 70%;
    background:#11598e;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    -webkit-border-radius: 0px 30px 0px 30px;
    -moz-border-radius: 0px 30px 0px 30px;
    border-radius: 0px 30px 0px 30px;
}

.content--sub--anuncio{
    display: flex;
    position: absolute;
    width: 100%;
    height: auto;
    flex-direction: row;
    gap: 30px; 
    right: -75%;
    bottom: 20%;
}

.content--precio{
    display: flex;
    position: absolute;
    flex-direction: column;
    top: 64%;
    left: 41%;
    bottom: 0;
    gap: 30px;
    align-items: center;
}

.content--precio img{
    width: 180px;
    height: 110px;
}

.btn-reserva{
    display: flex;
    width: 200px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: #ff9d00;
    color: var(--color-white);
    font-family: var(--font-family-primary);
    text-decoration: none;
    font-weight: var(--fw-bold);
    border-radius: 5px;
    box-shadow: var(--shadow-primary);
    font-size: 13px;
    animation: btn-animate 2s infinite;
    margin-top: 30px;
}

@keyframes btn-animate{
    0%
    {
        transform: scale(1.2);
    }
    50%
    {
        transform: scale(1.5);
    }
    100%
    {
        transform: scale(1.2);
    }
}

.logo-blanco{
    width: 130px;
    height: 70px;
    display: flex;
    margin-top: 30px;
    margin-left: 60px;
}

@media screen and (max-width: 420px) {
    .logo-blanco{
        width: 70px;
        height: 40px;
        margin-left: 25px;
        margin-top: 20px;
    }

    .content--precio{
        left: 25%;
    }
    

    .rafting{
        top: -75px;
        right: -120px;
        width: 410px;
        height: 35%;
        transform: rotate(-5deg);
    }

    .buggy{
       top: 56%; 
       left: -120px;
       width: 450px;
    }

    .content_title img{
        width: 100%;
        height: 130px;
        margin-top: -55px;
        transform: rotate(-3deg);
        margin-bottom: -10px;
    }

    .title__anuncio1{
        font-size: 13px;
        margin-top:0.5px;
        transform: rotate(-10deg);
        margin-left: 25px;
    }

    .content-button img{
        width: 100px;
        height: 70px;
    }

    .content-button{
        margin-top: -105%;
    }

    .btn-reserva{
        width: 120px;
        height: 35px;
        font-size: 9px;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .content--sub--anuncio{
        gap: 3px; 
        right: 0%;
        left: 60px;
        bottom: 17%;
    }

    .content--info{
        font-size: 16px;
    }

    .content--sub--anuncio{
        font-size: 13px;
    }
}