/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

/* Google Icons */
.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 40
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*border: 1px dashed red;*/
}

/* || Variables */
:root {

    /* Colores */
    --accent: #BD191E;
    --accent-80: rgb(189, 25, 30, 0.8);
    --accent-10: rgb(189, 25, 30, 0.1);
    --accent-5: rgb(189, 25, 30, 0.5);
    
    --black: #111111;

    --white: #eeeeee;
    --white-80: rgb(238, 238, 238, 0.8);
    --white-50: rgb(238, 238, 238, 0.5);
    --white-10: rgb(238, 238, 238, 0.1);
    --white-2: rgb(214, 222, 255, 0.025);

    --whatsapp-color: #40C351;

    /* Font Family */
    --primary-font: "Source Serif 4", serif;
    --secundary-font: "Figtree", sans-serif;
    
    /* Font Size */
    --title-size: 2.6rem;
    --subtitle-size: 1.5rem;
    --logo-size: 1.1rem;
    --button-size: 1rem;
    --paragraph-size: 1rem;
    --link-size: 0.875rem;
    
    /* Font Weight */
    --light-weight: 300;
    --regular-weight: 400;
    --semibold-weight: 600;

    /* Shadow */
    --main-shadow: 0px 16px 48px -16px var(--white-2);
    --hover-shadow: 0px 16px 48px 0px var(--white-10);

    /* Border */
    --primary-border: 0px solid var();
    
    /* Border Radius */
	--big-radius: 9999px;
	--medium-radius: 16px;
	--small-radius: 8px;

    /* Transition */ 
    --fast: 200ms;
    --slow: 500ms;
}

/* || General Styles */
body {
    cursor: default;
    font-family: var(--secundary-font);
    font-weight: var(--primary-weight);
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnN2Z2pzPSJodHRwOi8vc3ZnanMuZGV2L3N2Z2pzIiB2aWV3Qm94PSIwIDAgNzAwIDcwMCIgd2lkdGg9IjcwMCIgaGVpZ2h0PSI3MDAiPjxkZWZzPjxmaWx0ZXIgaWQ9Im5ubm9pc2UtZmlsdGVyIiB4PSItMjAlIiB5PSItMjAlIiB3aWR0aD0iMTQwJSIgaGVpZ2h0PSIxNDAlIiBmaWx0ZXJVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHByaW1pdGl2ZVVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzPSJsaW5lYXJSR0IiPgoJPGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuMTAyIiBudW1PY3RhdmVzPSI0IiBzZWVkPSIxNSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgeD0iMCUiIHk9IjAlIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiByZXN1bHQ9InR1cmJ1bGVuY2UiPjwvZmVUdXJidWxlbmNlPgoJPGZlU3BlY3VsYXJMaWdodGluZyBzdXJmYWNlU2NhbGU9IjE1IiBzcGVjdWxhckNvbnN0YW50PSIwLjc1IiBzcGVjdWxhckV4cG9uZW50PSIyMCIgbGlnaHRpbmctY29sb3I9IiM2NjY2NjYiIHg9IjAlIiB5PSIwJSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgaW49InR1cmJ1bGVuY2UiIHJlc3VsdD0ic3BlY3VsYXJMaWdodGluZyI+CiAgICAJCTxmZURpc3RhbnRMaWdodCBhemltdXRoPSIzIiBlbGV2YXRpb249IjEwMCI+PC9mZURpc3RhbnRMaWdodD4KICAJPC9mZVNwZWN1bGFyTGlnaHRpbmc+CiAgCjwvZmlsdGVyPjwvZGVmcz48cmVjdCB3aWR0aD0iNzAwIiBoZWlnaHQ9IjcwMCIgZmlsbD0iIzExMTExMSI+PC9yZWN0PjxyZWN0IHdpZHRoPSI3MDAiIGhlaWdodD0iNzAwIiBmaWxsPSIjNjY2NjY2IiBmaWx0ZXI9InVybCgjbm5ub2lzZS1maWx0ZXIpIj48L3JlY3Q+PC9zdmc+");
    background-size: contain;
    background-repeat: repeat;
    background-position: center center;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 0px;
}

h1 {font-size: 60px; color: var(--white);}
h2 {font-size: 48px; color: var(--white);}
h3 {font-size: 40px; color: var(--white);}
h4 {font-size: 32px; color: var(--white);}
h5 {font-size: 28px; color: var(--white);}
h6 {font-size: 20px; color: var(--white);}

li {list-style: none;}

a {text-decoration: none; color: inherit;}

button {
    background: none;
    border: none;
    padding: none;
    margin: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    background-color: var(--accent);
    color: var(--white);
    border: 2px solid transparent;
    padding: 16px 32px;
    font-family: var(--secundary-font);
    font-weight: var(--primary-weight);
    font-size: var(--button-size);
    border-radius: var(--small-radius);
    box-shadow: var(--main-shadow);
    transition: var(--fast);
    display: inline-block;
}

.btn:hover {
    background-color: var(--white);
    color: var(--black);
    text-shadow: 0px 0px 16px var(--white-10);
    box-shadow: var(--hover-shadow);
}

.title {
    font-family: var(--secundary-font);
    font-weight: var(--regular-weight);
    font-size: var(--title-size);
    font-style: italic;
    color: var(--white);
}

.subtitle {
    font-family: var(--primary-font);
    font-style: italic;
    font-weight: var(--semibold-weight);
    font-size: var(--subtitle-size);
    color: var(--white);
    text-transform: capitalize;
}

.text {
    font-family: var(--secundary-font);
    font-weight: var(--regular-weight);
    font-size: var(--paragraph-size);
    color: var(--white-80);
}

.text__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 460px;
    text-align: center;
}

.text__center .text {
    margin-top: 4px;
}

/* || Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 10;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(80px);
    margin: 16px;
    padding: 16px;
    width: 100%;
    border-radius: var(--small-radius);
    background-color: var(--black-80);    
}

.header .logo {
    font-size: var(--logo-size);
    font-family: var(--primary-font);
    font-style: var(--semibold-weight);
    font-style: italic;
    color: var(--white);
    text-wrap: nowrap;
}

.header .header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 8px 24px;
    border-radius: var(--small-radius);
    border: 2px solid var(--white-10);
}

.header .header__nav li a {
    font-size: var(--link-size);
    font-weight: var(--light-weight);
    color: var(--white-50);
    transition: var(--fast);
    text-wrap: nowrap;
    display: flex;
    align-items: center;
}

.header .header__nav li a:hover {
    color: var(--white);
    text-shadow: 0px 0px 32px var(--white);
}

.header .header__btn {
    background-color: transparent;
    font-size: var(--link-size);
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 24px;
}

.header .header__btn:hover {
    background-color: var(--white);
    color: var(--black);
}

.header .header__btn_toggle {
    display: none;
    cursor: pointer;
    color: var(--white);
}

.header .header__btn_toggle .menu_icon {
    display: none;
}

.header .header__btn_toggle .close_icon {
    display: none;
}

.header .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--black);
    width: 100%;
    height: 100dvh;
    border: 2px solid var(--white-10);
    border-radius: var(--small-radius);
    transform: translateX(9999px);
    transition: var(--fast);
    z-index: 10;
}

.header .menu .header__nav_menu {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.header .menu .header__nav_menu li a {
    color: var(--white);
    font-size: clamp(1.8rem, 7vw, 3rem);
    font-family: var(--primary-font);
    transition: var(--fast);
}

.header .menu .header__nav_menu li a:hover {
    color: var(--accent);
}

/* || WhatsApp Button */
.btn__whatsapp {
    position: fixed;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    background-color: var(--whatsapp-color);
    padding: 8px;
    border: var(--main-border);
    border-radius: 50%;
    width: 60px;
    transition: var(--fast);
    box-shadow: var(--main-shadow);
    z-index: 5;
}
.btn__whatsapp img {
    max-width: 100%;
    transition: var(--fast);
}
.btn__whatsapp:hover {
    filter: brightness(80%);
}
.btn__whatsapp:hover img {
    scale: 0.9;
}

/* || Hero */
.hero {
    padding-top: 180px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero .hero__trust {
    background-color: var(--white-2);
    font-size: var(--link-size);
    font-style: italic;
    color: var(--white-80);
    padding: 6px 20px;
    border-radius: var(--small-radius);
    border: 2px solid var(--white-10);
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--slow);
}

.hero .hero__trust:hover {
    background-color: var(--accent-10);
    text-shadow: 0px 0px 32px var(--white);
}

.hero .hero__trust .hero__trust_header {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--white);
}

.hero .hero__trust .hero__trust_header .stars {
    display: flex;
    color: var(--accent);
}

.hero .title {
    line-height: 1.1;
    margin-top: 24px;
    z-index: 2;
}

.hero .title span {
    font-family: var(--primary-font);
    font-weight: var(--semibold-weight);
}

.hero .text {
    color: var(--white-80);
    max-width: 560px;
    margin-top: 8px;
    z-index: 2;
    position: relative;
}

.hero .text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(
        var(--accent),
        var(--accent-10)
    );
    width: 500px;
    height: 500px;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.hero .hero__btn {
    margin-top: 32px;
    border: 2px solid var(--white-5);
    box-shadow: var(--hero-shadow);
    z-index: 2;
}

.hero .hero__btn:hover {
    transform: translateY(-2px);
    background-color: var(--accent);
    color: var(--white);
    filter: brightness(116%);
    text-shadow: 0px 0px 32px var(--white-80);
    box-shadow: 0px 8px 32px var(--white-10);
}

.hero .hero__video {
    margin-top: 48px;
    border: 2px solid var(--white-10);
    border-radius: var(--small-radius);
    max-width: 800px;
    width: 100%;   
    position: relative;
    z-index: 2;
}

/* || Resultados */
.resultados {
    padding: 100px 0;
}

.resultados .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resultados .card__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.resultados .card__container .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white-2);
    border: 2px solid var(--white-10);
    border-radius: var(--small-radius);
    padding: 16px 24px;
    max-width: 340px;
    transition: var(--fast);
    backdrop-filter: blur(1px);
}

.resultados .card__container .card:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.resultados .card__container .card video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--white-2);
    border: 2px solid var(--white-10);
    border-radius: var(--small-radius);
}

.resultados .card__container .card .text {
    margin-top: 16px;
    text-align: center;
    color: var(--white);
}

.resultados .card__container .card .client {
    color: var(--white-80);
    margin-top: 16px;
    font-size: var(--link-size);
}

.resultados .btn {
    margin-top: 48px;
}

/* || Método */
.metodo {
    padding: 100px 0;
}

.metodo .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metodo .card__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 32px;
    width: 100%;
    gap: 32px;
    position: relative;
}

.metodo .card__container::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: var(--white-10);
    width: 2px;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.metodo .card__container .card_row {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0 40px;
}

.metodo .card__container .card_row:nth-child(2) {
    align-items: flex-end;
}
.metodo .card__container .card_row:nth-child(4) {
    align-items: flex-end;
}

.metodo .card__container .card {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: var(--white-2);
    border: 2px solid var(--white-10);
    border-radius: var(--small-radius);
    padding: 24px;
    gap: 16px;
    max-width: 700px;
    backdrop-filter: blur(100px);
    transition: var(--fast);
}

.metodo .card__container .card:hover {
    transform: translateX(4px);
    background-color: var(--accent-10);
    box-shadow: var(--main-shadow);
}

.metodo .card__container .card .card_profile img {
    background-color: var(--accent-10);
    border: 2px solid var(--white-10);
    border-radius: var(--big-radius);
    width: 60px;
    padding: 8px;
    display: flex;
    align-items: center;
}

.metodo .card__container .card .card_text h6 {
    font-size: var(--link-size);
    font-family: var(--secundary-font);
    font-weight: var(--regular-weight);
    font-style: italic;
    text-transform: uppercase;
    text-shadow: 0px 0px 32px var(--black);
    color: var(--accent);
}

.metodo .card__container .card .card_text h1 {
    font-size: var(--subtitle-size);
    font-family: var(--primary-font);
    font-weight: var(--semibold-weight);
    font-style: italic;
    margin-top: 4px;
}

.metodo .card__container .card .card_text .resumen {
    color: var(--white);
    font-size: var(--paragraph-size);
    font-family: var(--secundary-font);
    font-weight: var(--regular-weight);
    margin-top: 16px;
}

.metodo .card__container .card .card_text .detalles {
    color: var(--white-80);
    font-size: var(--link-size);
    font-family: var(--secundary-font);
    font-weight: var(--regular-weight);
    margin-top: 8px;
}

.metodo .btn {
    margin-top: 48px;
}

/* || Sobre mí */
.sobre {
    padding: 100px 0;
}

.sobre .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.sobre .text__center {
    text-align: left;
}

.sobre .sobre__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 8px;
}

.sobre .sobre__content .sobre__content_text {
    display: flex;
    align-items: center;
}

.sobre .sobre__content .sobre__content_text p {
    font-size: var(--paragraph-size);
    color: var(--white-80);
}

.sobre .sobre__content .sobre__content_img {
    display: flex;
    max-width: 100%;
    width: 500px;
    min-height: 300px;
    border-radius: var(--medium-radius);
}

.sobre .btn {
    margin: 48px auto 0 auto;
}

/* || Preguntas */
.preguntas {
    padding: 100px 0;
}

.preguntas .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dropdown {
    background-color: var(--white-2);
    backdrop-filter: blur(1px);
    border: 2px solid var(--white-10);
    border-radius: var(--small-radius);
    width: 100%;
    padding: 16px;
    margin-top: 16px;
}

.h-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.h-dropdown svg {
    color: var(--white);
    transition: var(--fast);
}

.dropdown-link:hover {
    text-decoration: underline;
}

.dropdown__list:has(:checked) {
    --rows: 1fr;
}

.dropdown__list:has(:checked) .h-dropdown svg {
    rotate: 180deg;
}

.dropdown__link {
    display: flex;
    align-items: center;
    gap: .6em;
    color: var(--white);
    text-decoration: none;
    position: relative;
}

.dropdown__link h5 {
    color: var(--white);
    font-size: 1.3rem;
    font-family: var(--primary-font);
    font-weight: var(--regular-weight);
    font-style: italic;
}

.dropdown__check {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
}

.dropdown__content {
    display: grid;
    grid-template-rows: var(--rows, 0fr);
    transition: .3s grid-template-rows;
}

.dropdown__sub {
    overflow: hidden;
}

.dropdown__anchor {
    margin-top: 16px;
    color: var(--white-80);
    font-family: var(--secundary-font);
    font-size: var(--paragraph-size);
    font-weight: var(--regular-weight);
    display: inline-block;
    text-decoration: none;
    width: 100%;
}

.text__center.faqs-bottom {
    margin-top: 150px;
}

.text__center.faqs-bottom .btn {
    margin-top: 32px;
}

.link-faq {
    text-decoration: underline;
}
.link-faq:hover {
    text-decoration: none;
}

.preguntas .text__center.down {
    margin-top: 32px;
}

.preguntas .text__center.down .subtitle {
    font-size: 1.4rem;
}

.preguntas .text__center.down .text {
    margin-top: 8px;
}

.preguntas .text__center.down .btn {
    margin-top: 24px;
}

/* || Footer */
.footer {
    padding: 60px 0;
}

.footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer .footer__content {
    background-color: var(--white-2);
    border: 2px solid var(--white-10);
    border-radius: var(--medium-radius);
    width: 100%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(1px);
}

.footer .footer__content .logo {
    color: var(--white-80);
    font-family: var(--primary-font);
    font-size: var(--logo-size);
    font-weight: var(--primary-weight);
    font-style: italic;
}

.footer .footer__content .title {
    line-height: 1.1;
    margin-top: 32px;
}

.footer .footer__content .title span {
    font-family: var(--primary-font);
    font-weight: var(--semibold-weight);
}

.footer .footer__content .text {
    color: var(--white-80);
    margin-top: 24px;
    max-width: 400px;
    position: relative;
}

.footer .footer__content .text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        var(--accent),
        var(--accent-10)
    );
    width: 300px;
    height: 300px;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.footer .footer__content .btn {
    border: 2px solid var(--white);
    background-color: transparent;
    margin-top: 32px;
}

.footer .footer__content .btn:hover {
    background-color: var(--white);
    color: var(--black);
}

.footer .footer__content .notice {
    font-family: var(--secundary-font);
    font-weight: var(--primary-weight);
    font-size: var(--link-size);
    color: var(--white-80);
    margin-top: 8px;
    max-width: 300px;
}

.footer .footer__copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 16px;
    margin-top: 8px;
    color: var(--white-50);
    font-family: var(--secundary-font);
    font-weight: var(--primary-weight);
    font-size: var(--link-size);
}

.footer .footer__copy a {
    text-decoration: underline;
    transition: var(--fast);
}

.footer .footer__copy a:hover {
    text-decoration: none;
    color: var(--white);
}

.footer .footer__copy .footer__copy_pages {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* || Media Screen */
@media screen and (max-width: 1000px) {
    .sobre .sobre__content {
        grid-template-columns: 1fr;
    }

    .footer .footer__copy {
        justify-content: center;
        text-align: center;
    }
} 

@media screen and (max-width: 800px) {
    :root {
        /* Font Size */
        --title-size: 2.2rem;
        --subtitle-size: 1.3rem;
        --logo-size: 1.2rem;
        --button-size: .95rem;
        --paragraph-size: .9rem;
        --link-size: 0.875rem;
    }

    .header .header__nav {
        display: none;
    }

    .header .header__btn {
        display: none;
    }

    .header .header__btn_toggle {
        display: flex;
        position: relative;
        z-index: 50;
    }

    .header .header__btn_toggle .menu_icon {
        display: flex;
    }

    .header .header__btn_toggle.active .close_icon {
        display: flex;
    } 

    .header .header__btn_toggle.active .menu_icon {
        display: none;
    } 

    .header .menu.active {
        transform: translateY(0px);
    }

    .hero .hero__trust {
        font-size: .8rem;
    }

    .hero .text {
        max-width: 400px;
    }

    .sobre .sobre__content .sobre__content_img {
        width: 100%;
    }

    .dropdown__link h5 {
        font-size: 1.1rem;
    }

    .preguntas .text__center.down .subtitle {
        font-size: 1.2rem;
    }

    .footer .footer__content .text {
        max-width: 300px;
    }

    .footer .footer__content .notice {
        font-size: .8rem;
    }
}

@media screen and (max-width: 600px) {
    :root {
        /* Font Size */
        --title-size: 2rem;
        --subtitle-size: 1.1rem;
        --logo-size: 1.2rem;
        --button-size: .9rem;
        --paragraph-size: .8rem;
        --link-size: 0.7rem;
    }

    .text__center {
        max-width: 380px;
    }

    .hero .hero__trust {
        font-size: .7rem;
    }

    .hero .title br {
        display: none;
    }

    .hero .text {
        max-width: 400px;
    }

    .hero .text::before {
        width: 200px;
        height: 200px;
        opacity: 1;
    }

    .metodo .card__container .card {
        flex-direction: column;
        align-items: center;
    }

    .metodo .card__container .card .card_text {
        text-align: center;
        max-width: 260px;
    }

    .metodo .card__container .card .card_text .resumen {
        margin-top: 8px;
    }

    .dropdown__link h5 {
        font-size: 1rem;
    }

    .h-dropdown {
        gap: 0;
    }

    .h-dropdown svg {
        min-width: 40px;
    }

    .preguntas .text__center.down .subtitle {
        font-size: 1rem;
    }

    .footer .footer__content .text {
        max-width: 260px;
    }

    .footer .footer__content .notice {
        font-size: .7rem;
        max-width: 260px;
    }
}

@media screen and (max-width: 480px) {
    :root {
        /* Font Size */
        --title-size: 1.6rem;
        --subtitle-size: 1rem;
        --logo-size: 1.1rem;
        --button-size: .75rem;
        --paragraph-size: .7rem;
        --link-size: 0.6rem;
    }

    .btn {
        padding: 12px 28px;
    }

    .text__center {
        max-width: 300px;
    }

    .hero .hero__trust {
        font-size: .6rem;
    }

    .hero .title br {
        display: none;
    }

    .hero .text {
        max-width: 300px;
    }

    .metodo .card__container .card .card_text {
        text-align: center;
    }

    .metodo .card__container .card .card_profile img {
        width: 45px;
        padding: 4px;
    }

    .dropdown__link h5 {
        font-size: .8rem;
    }

    .preguntas .text__center.down .subtitle {
        font-size: .9rem;
    }

    .footer .footer__content .title {
        max-width: 200px;
    }

    .footer .footer__content .text {
        max-width: 220px;
    }

    .footer .footer__content .text::before {
        width: 200px;
        height: 200px;
        opacity: 1;
    }

    .footer .footer__content .notice {
        font-size: .6rem;
        max-width: 200px;
    }
}

