@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Source Sans Pro", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    cursor: default;
}

header {
    width: 100%;
    background-color: transparent;
    position: fixed;
    z-index: 4;
    transition: 0.2s ease;
    height: 99px;
}

header.scrolled {
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.25rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
}

.iframe-header {
    display: flex;
    justify-content: center;
}

.header-container nav {
    display: flex;
    gap: 2.5rem;
}

.header-container nav a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.2s ease;
}

.mobile-toggle {
    display: none;
}

.scrolled .header-container nav a {
    color: #003087;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.35rem;
}

.logo svg path {
    fill: #fff;
    transition: 0.2s ease;
}

.scrolled .logo svg path {
    fill: #003087;
}

.logo-subtitle {
    color: #6cc24a;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-top: -0.3rem;
    letter-spacing: 0.05em;
    padding-bottom: 0.25rem;
}

.options {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.options div,
.options .header-cta {
    margin-left: auto;
}

.language-changer,
.mobile-language-changer {
    display: flex;
    gap: 1.25rem;
}

.header-cta {
    color: #003087;
    padding: 0.5rem 2.5rem;
    border-radius: 1.5rem;
    background-color: #fff;
    text-decoration: none;
    text-align: center;
    transition: 0.2s ease;
}

.scrolled .header-cta {
    color: #fff;
    background-color: #003087;
}

.book-info {
    width: 100vw;
    padding-top: 100px;
    margin-bottom: 5rem;
    position: relative;
    background-color: #153087;
}

.book-info::after {
    content: "";
    display: block;
    background: url(https://image.go.hipra.com/lib/fe2c117373640478731274/m/1/bg-vector.png);
    background-size: 100%;
    height: 260px;
    bottom: -80px;
    background-position: bottom center;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.info-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;

    background-color: #153087;
}

.content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1280px;
    margin: 0 auto;
}

.iframe-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-height: 760px;
}

.column {
    height: 80vh;
    max-height: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}

.column h1 {
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.column p {
    font-size: 1.25rem;
    line-height: 1.375;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.column .cta {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #153087;
    padding: 0.5rem 2.5rem;
    border-radius: 1.5rem;
    background-color: #fff;
    text-decoration: none;
    display: inline-block;
}

.column p span {
    font-weight: 700;
}

.column:has(img) {
    justify-content: center;
}

.column img {
    max-width: 100%;
}

.column.typ {
    text-align: center;
    flex-direction: column;
    justify-content: center;
}

.book-section {
    padding-bottom: 5rem;
    padding-top: 4rem;
    text-align: center;
}

.book-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.book-container h2 {
    font-weight: 600;
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.book-container p {
    font-style: italic;
    margin-bottom: 2.5rem;
}

.flip-book {
    max-width: 900px !important;

    margin: 0 auto !important;

    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.page img {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
}

.page .page-content {
    padding: 4rem 3rem;
    overflow: hidden;
    background-color: #fff;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.page .page-content.big {
    display: flex;
    align-items: center;
}

.page .page-content.big h2 {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
}

.page-content h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    opacity: 0.8;
    font-weight: 600;
    text-align: left;
}

.page-content ol {
    text-align: left;
    opacity: 0.8;
}

.page-content li {
    margin-bottom: 5px;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.form-section {
    background-color: #f2f4f9;
    padding: 5rem 0;
}

.form-container {
    max-width: 1000px;
    padding: 0 1.25rem;
    margin: 0 auto;
}

.form-wrp {
    max-width: 700px;
    margin: 0 auto;
    padding: 2.25rem;
    background-color: #153087;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-wrp-email {
    display: none;
}

.form-wrp h2 {
    color: #fff;
    text-align: center;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.form-wrp .already-registered {
    text-align: center;
    opacity: 0.95;
    margin: 1.25rem auto;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    background-color: #fff;
    color: rgba(0, 48, 135, 1);
    width: fit-content;
    padding: 5px 20px 7px;
    border-radius: 30px;
    line-height: 1;
}

.form-wrp .already-registered:hover {
    opacity: 1;
}

.form-input {
    position: relative;
}

.form-input input {
    font-size: 1.25rem;
    background-color: transparent;
    outline: none;
    border: none;
    color: #fff;
    border-bottom: 1px solid #fff;
    width: 100%;
    padding: 1.25rem 0 0.5rem;
    margin-bottom: 0.75rem;
}

.form-input input::placeholder {
    color: #fff;
    opacity: 0.7;
}

.form-input label {
    position: absolute;
    font-size: 1.25rem;
    color: #fff;
    left: 0;
    top: 15px;
    opacity: 0.7;
    pointer-events: none;
    transition: all 0.4s ease;
}

.form-input input:focus + label {
    font-size: 0.8rem;
    top: -0px;
}

.form-input input:not(:placeholder-shown) + label {
    font-size: 0.8rem;
    top: -0px;
}

.form-input select:has(option) + label {
    font-size: 0.8rem;
    top: -0px;
}

.form-input-empresa {
    display: none;
}

.form-input select {
    font-size: 1.25rem;
    background-color: transparent;
    outline: none;
    border: none;
    color: #fff;
    border-bottom: 1px solid #fff;
    width: 100%;
    padding: 1.25rem 0 0.5rem;
    margin-bottom: 0.75rem;
}

select option {
    display: none;
}

.select-dropdown {
    list-style-type: none;
    background-color: #fff;
    background-clip: padding-box;
    padding: 0.5rem 0;
    padding-top: 0;
    margin-top: -15px;
    display: none;
    overflow-y: scroll;
}

.select-dropdown-block {
    display: block;
}

.select-dropdown-country {
    height: 15rem;
    overflow-y: scroll;
}

.select-dropdown-country input {
    padding: 6px;
    background-color: #fff;
    color: rgba(0, 48, 135, 1);
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 0;
    border-bottom: 6px solid rgba(0, 48, 135, 1);
}

.select-dropdown-country input::placeholder {
    color: #a1a0aa;
}

.select-option {
    transition: 0.3s ease-in-out;
    cursor: pointer;
    padding: 6px;
    background-color: #fff;
    color: rgba(0, 48, 135, 1);
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.select-option:hover {
    background-color: rgba(0, 48, 135, 1);
    color: #fff;
}

.checkbox-input {
    margin: 0.75rem 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.checkbox-input:first-of-type {
    margin-top: 1rem;
}

.checkbox-input .error-msg {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.checkbox-input input {
    position: absolute;
    left: 0;
    opacity: 0.01;
}

.checkbox-input label {
    padding-left: 2.3em;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #fff;
    cursor: pointer;
}

.checkbox-input label:before {
    content: "";
    position: absolute;
    left: 1.5px;
    top: 5px;
    width: 1.2em;
    height: 1.2em;
    border: 1px solid #aaa;
    background: #fff;
    border-radius: 0.2em;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.1),
        0 0 0 rgba(255, 255, 255, 0.2);
    transition: all 0.275s;
}

.checkbox-input label:after {
    content: "✕";
    position: absolute;
    top: 14px;
    left: 4px;
    font-size: 1.375em;
    line-height: 0;
    transition: all 0.2s;
}

.checkbox-input [type="checkbox"]:checked + label:after {
    color: rgba(0, 48, 135, 1);
}

.checkbox-input [type="checkbox"]:focus + label:before {
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.1),
        0 0 0 6px rgba(255, 255, 255, 0.2);
}

.submit-btn {
    border: 1px solid #fff;
    font-size: 1.5rem;
    line-height: 2rem;
    outline: none;
    color: rgba(0, 48, 135, 1);
    background-color: #fff;
    text-transform: uppercase;
    padding: 0.75rem 2.5rem;
    border-radius: 3rem;
    width: 100%;
    cursor: pointer;
    margin: 1.5rem 0;
}

.data {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #fff;
}

.error-msg {
    background-color: #f37c7b;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    width: fit-content;
    color: #fff;
    font-size: 1rem;
    line-height: 1.25rem;
    margin-bottom: 1.5rem;
    display: none;
}

.opiniones-section {
    padding: 4rem 0;
}
.opiniones-section h2 {
    text-align: center;
    font-weight: 600;
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 2.5rem;
    color: #000;
}

.opiniones-container {
    max-width: 1280px;
    padding: 0 1.25rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.opinion-col {
    padding: 0 2.5rem;
    margin-bottom: 0 auto 2.5rem;
    text-align: center;
}

.opinion-col img {
    max-width: 200px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}

.opinion {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 1.25rem;
}

.person {
    text-transform: uppercase;
}

footer {
    padding: 1.5rem 0;
}

.footer-container {
    max-width: 1280px;
    padding: 0 1.25rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.footer-container a {
    color: #000;
}

.mobile-menu {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    background-color: rgba(0, 48, 135, 0.8);
    top: -200%;
    transition: top 0.4s ease;
}

.mobile-menu-open {
    top: 60px;
    transition: top 0.4s ease;
}

.mobile-menu nav {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu nav a {
    padding: 1.25rem 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25rem;
}

.mobile-menu nav a:last-of-type {
    border-bottom: none;
}

.books {
width: 100%;}

@media (max-width: 1536px) {
    .header-container nav {
        gap: 1.5rem;
    }
}

@media (max-width: 1500px) {

.content {

    max-width: 1000px;

}
.iframe-content {
margin-top: -5rem;}


}


@media (max-width: 1024px) {
    .header-container nav > a {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu-trigger {
        display: flex;
        flex-direction: column;
        width: 70px;
        cursor: pointer;
        transform: scale(0.5);
        transform-origin: left;
    }

    .mobile-menu-trigger input[type="checkbox"] {
        display: none;
    }

    .mobile-menu-trigger span {
        background: #fff;
        border-radius: 10px;
        height: 7px;
        margin: 7px 0;
        transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }

    .scrolled .mobile-menu-trigger span {
        background-color: #003087;
    }

    .mobile-menu-trigger span:nth-of-type(1) {
        width: 50%;
    }

    .mobile-menu-trigger input[type="checkbox"]:checked ~ span:nth-of-type(1) {
        transform-origin: bottom;
        transform: rotatez(45deg) translate(8px, 0px);
    }

    .mobile-menu-trigger span:nth-of-type(2) {
        width: 100%;
    }

    .mobile-menu-trigger input[type="checkbox"]:checked ~ span:nth-of-type(2) {
        transform-origin: top;
        transform: rotatez(-45deg);
    }

    .mobile-menu-trigger span:nth-of-type(3) {
        width: 75%;
    }

    .mobile-menu-trigger input[type="checkbox"]:checked ~ span:nth-of-type(3) {
        transform-origin: bottom;
        width: 50%;
        transform: translate(30px, -11px) rotatez(45deg);
    }

    .language-changer {
        display: none;
    }

    .language-changer.typ {
        display: flex;
    }

    .container {
        max-width: 1024px;
    }

    .column h1 {
        font-size: 2.25rem;
        line-height: 1.25;
    }
}

@media (max-width: 768px) {
    header {
        height: 85px;
    }
    .logo svg {
        width: 150px;
        height: 46px;
    }
    .header-cta {
        padding: 0.25rem 1.25rem;
    }

    .book-info {
        padding-top: 150px;
    }
    .content {
        display: flex;
        flex-direction: column-reverse;
        gap: 1.25rem;
    }

    .column {
        height: auto;
        text-align: center;
    }

    .submit-btn {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .opiniones-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        scrollbar-width: none;
    }
    .opiniones-container::-webkit-scrollbar {
        display: none;
    }

    .opinion-col {
        flex: 0 0 100%;
        scroll-snap-align: center;
        padding: 0 1rem;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .slider-dots button {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        border: none;
        background: #ccc;
        cursor: pointer;
    }

    .slider-dots button.active {
        background: #003087;
    }
}

@media (max-width: 640px) {
    header {
        height: 75px;
    }
    .header-container {
        display: flex;
        justify-content: space-between;
    }
    .logo svg {
        width: 100px;
        height: 31px;
    }

    .header-cta {
        font-size: 0.85rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
        line-height: 1rem;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-cta {
        font-size: 0.75rem;
    }
}
