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


:root {
    --color--blue: #105798;
    --color--white: #ffffff;
    --color--black: #404040;
    --color--black-dark: #0c3155;
    --bg-color: #ffffff;
    --bg--coloWhite: #ffffff9d;
    --bg-coloWhite-secundary: #f9fafd;
    --bg--degradado-primary: #3a3a3a98;
    --border--color: #b1b1b14f;
    --secundary--color-dark: #105798;
    --hover--btn-color-blue: #196cbb;
    --color-red: #ff3434;
    --color-verde: #29db0a;
}


/* General */
body {
    font-family: "Figtree", sans-serif;
    margin: 0;
    background: #fff;
    color: var(--color--black);
    line-height: 1.6;
}

h1 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    color: var(--secundary--color-dark);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secundary--color-dark);
    ;
}

p,
ul,
address {
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 1rem;
}

ul {
    list-style: disc inside;
    padding-left: 1rem;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 2rem 1rem;
}

/* Navbar */
header {
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.navbar {
    max-width: 1100px;
    margin: auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.menu li a {
    text-decoration: none;
    color: var(--color--black);
    font-weight: 500;
    transition: color 0.3s;
}

.menu li a:hover {
    color: var(--secundary--color-dark)
}


/* Botón hamburguesa */
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    padding: 0 1rem 1rem;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin-bottom: 0.8rem;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: var(--color--black);
    font-weight: 500;
}

.navbar img {
    width: clamp(130px, 30vw, 200px);
    height: auto;
}


/* Footer */
footer {
    background: #f9f9f9;
    border-top: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
    color: var(--color--black);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .menu-btn {
        display: block;
        color: var(--color--black);
    }

    .mobile-menu.show {
        display: block;
    }
}

/* ///////////////////////////// */

/* From Uiverse.io by 00Kubi */
.card {
    width: 300px;
    height: 220px;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    gap: 13px;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.062);
}

#cookieSvg {
    width: 50px;
}

#cookieSvg g path {
    fill: rgb(97, 81, 81);
}

.cookieHeading {
    font-size: 1.2em;
    font-weight: 800;
    color: rgb(26, 26, 26);
}

.cookieDescription {
    text-align: center;
    font-size: 0.7em;
    font-weight: 600;
    color: rgb(99, 99, 99);
}

.cookieDescription a {
    --tw-text-opacity: 1;
    color: rgb(59 130 246);
}

.cookieDescription a:hover {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

.buttonContainer {
    display: flex;
    gap: 20px;
    flex-direction: row;
}

.acceptButton {
    width: 80px;
    height: 30px;
    background-color: #7b57ff;
    transition-duration: .2s;
    border: none;
    color: rgb(241, 241, 241);
    cursor: pointer;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px #977ef3, 0 2px 4px -1px #977ef3;
    transition: all .6s ease;
}

.declineButton {
    width: 80px;
    height: 30px;
    background-color: #dadada;
    transition-duration: .2s;
    color: rgb(46, 46, 46);
    border: none;
    cursor: not-allowed;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px #bebdbd, 0 2px 4px -1px #bebdbd;
    transition: all .6s ease;
}

.declineButton:hover {
    background-color: #ebebeb;
    box-shadow: 0 10px 15px -3px #bebdbd, 0 4px 6px -2px #bebdbd;
    transition-duration: .2s;
}

.acceptButton:hover {
    background-color: #9173ff;
    box-shadow: 0 10px 15px -3px #977ef3, 0 4px 6px -2px #977ef3;
    transition-duration: .2s;
}