/*-----------------------------------------------------------------------------------
    Project: Zerofeex
    Autor: VP
-------------------------------------------------------------------------------------
    01. Family font principal
    02. Colors ID
    03. General
    04. Buttons
    05. Header
    06. Inicio
    07. Footer
-------------------------------------------------------------------------------------*/

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

html {
    scroll-behavior: auto !important;
}

body {
    font-family: "Helvetica";
    color: var(--zf-blue-high);
}

a {
    text-decoration: none;
}

section {
    overflow: hidden;
}

.material-symbols-rounded {
    display: block;
}

/* * * 01. Font Family * * * * * * * * * * * * * */
@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/HelveticaNeueLight.otf') format('opentype');
}

@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/HelveticaNeueRoman.otf') format('opentype');
}

@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/HelveticaNeueMedium.otf') format('opentype');
}

@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/HelveticaNeueBold.otf') format('opentype');
}

@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/HelveticaNeueBlack.otf') format('opentype');
}



/* * Italic * */
@font-face {
    font-family: 'Helvetica';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/HelveticaNeueLightItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Helvetica';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/HelveticaNeueItalic.ttf') format('opentype');
}

@font-face {
    font-family: 'Helvetica';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/HelveticaNeueMediumItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Helvetica';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/HelveticaNeueBoldItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Helvetica';
    font-style: italic;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/HelveticaNeueBlackItalic.otf') format('opentype');
}

/* * * 02. Colors ID * * * * * * * * * * * * * * * * * * */

:root {
    --zf-black: #0B1014;
    --zf-blue-high: #0A1A2F;
    --zf-blue: #003380;
    --zf-aqua: #00E1D5;
    --zf-blue-low: #0073BD;

    --df-gray-low: #C5C5C6;
    --df-black: #222222;
    --df-white: #ffffff;

    /* Tipografía fluida */
    --fs-h1: clamp(32px, 5vw, 72px);
    --fs-h2: clamp(26px, 4vw, 56px);
    --fs-h3: clamp(22px, 3.2vw, 40px);
    --fs-h4: clamp(18px, 2.5vw, 28px);
    --fs-p: clamp(14px, 2vw, 16px);
    --fs-small: clamp(12px, 1.5vw, 14px);

    --border: 50px;
}

/* * * 03. General * * * * * * * * * * * * * * * */
p {
    font-size: var(--fs-p);
}

.ht-100 {
    height: 100%;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.ce_tag_gral {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ce-gray-blue);
    border: 1px solid rgb(38 62 74 / 20%);
    border-radius: var(--border);
    padding: 9px 18px 9px 16px;
    margin-bottom: 16px;
}

.center-df .ce_title_df {
    text-align: center;
    width: 75%;
    margin: 0 auto;
}

.center-df .ce_title_df .ce_tag_gral {
    margin: 0 auto;
    margin-bottom: 16px;
}

.icon-fill {
    font-variation-settings: 'FILL'1;
}

.padd-100 {
    padding: clamp(50px, 7vw, 100px) 0;
}

.padd-80 {
    padding: clamp(40px, 6.5vw, 80px) 0;
}

.padd-60 {
    padding: clamp(30px, 5vw, 60px) 0;
}

.center-df .df_subtitle {
    margin: 0 auto;
    align-items: center;
    text-align: center;
}

.df_subtitle h1 {
    color: var(--ft-navy-blue);
    font-weight: 600;
    font-size: clamp(25px, 3vw, 40px);
}

.df_subtitle p {
    color: rgb(10 26 47 / 60%);
    font-weight: 300;
}

.center_auto {
    margin: 0 auto;
    text-align: center;
}

.zf_btn_link {
    display: inline-flex;
    gap: 6px;
    width: fit-content;
    font-size: clamp(12px, 1.5vw, 14px);
    padding: clamp(12px, 1.5vw, 14px) clamp(20px, 1.8vw, 22px);
    background: var(--zf-blue-high);
    border-radius: 100px;
    font-weight: 400;
    color: var(--df-white);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(.23, 1, .32, 1);
    align-items: center;
}

.zf_btn_link.black {
    background: var(--zf-blue-high);
    border: 1px solid var(--zf-blue-high);
}

.zf_btn_link.black:hover {
    background: transparent;
    color: var(--zf-blue-high);
}

.zf_btn_link.black-outline {
    background: transparent;
    color: var(--zf-black);
    border: 1px solid var(--zf-black);
}

.zf_btn_link.black-outline:hover {
    background: var(--zf-blue-high);
    color: var(--df-white);
}

.zf_btn_link.aqua {
    background: var(--zf-aqua);
    border: 1px solid var(--zf-aqua);
}

.zf_btn_link.aqua:hover {
    background: transparent;
    color: var(--zf-aqua);
}

.zf_btn_link.aqua-black {
    background: var(--zf-aqua);
    border: 1px solid var(--zf-aqua);
    color: var(--zf-blue-high);
}

.zf_btn_link.aqua-black:hover {
    border: 1px solid var(--zf-blue-high);
    background: transparent;
}

.zf-calculator .cont-grid .zf_btn_link {
    width: 100%;
    justify-content: center;
}

.zf_btn_link.blue {
    background: var(--zf-blue);
    border: 1px solid var(--zf-blue);
}

.zf_btn_link.blue:hover {
    background: transparent;
    color: var(--zf-blue);
}

.zf_btn_link.white-outline {
    background: transparent;
    color: var(--df-white);
    border: 1px solid var(--df-white);
}

.zf_btn_link.white-outline:hover {
    background: var(--df-white);
    color: var(--zf-blue-high);
}

.zf_btn_link.white {
    color: var(--zf-blue-high);
    background: var(--df-white);
    border: 1px solid var(--df-white);
}

.zf_btn_link.white:hover {
    background: transparent;
    color: var(--df-white);
}

.zf_btn_link span {
    font-size: 20px;
}

.zf-tag-wrap {
    background: var(--zf-aqua);
    padding: 8px 20px;
    border-radius: 50px 50px 50px 0px;
    font-size: clamp(10px, 1vw, 14px);
    color: rgb(10 26 47 / 90%);
    font-weight: 400;
    width: fit-content;
    margin: 0 auto;
}

.zf-services-icon {
    width: 70px;
    height: auto;
}

.c-title {
    color: var(--zf-blue);
}

.c-title span {
    color: var(--zf-aqua);
}


.zf-card-clave .services-card-content-wrap .services-list-wrap {
    padding: 0;
}

.zf-title-h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 600;
    line-height: 130%;
}

.with-ic {
    width: 60px;
}

.title-dropdown {
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    color: var(--zf-blue-high);
    white-space: normal;
}

.footer-copyright-wrap .footer-copyright-text,
.footer-copyright-wrap .footer-social {
    margin-bottom: 0;
    color: rgb(10 26 47 / 50%);
    font-size: 16px;
}

.footer-copyright-wrap .footer-social a {
    color: rgb(10 26 47 / 50%);
}

.zf-header {
    position: sticky;
    top: 0;
    background: var(--df-white);
    z-index: 999;
    width: 100%;
}

.service-plan-button-wrap.zf-btn {
    flex-direction: column;
    gap: 10px;
}

.service-plan-button-wrap.zf-btn .zf_btn_link {
    width: 100%;
    justify-content: center;
}

.card-macos {
    background: var(--zf-black);
}

.plan-text {
    color: var(--zf-blue);
}

.subtitle-card-text {
    font-size: 16px;
}

/* .zf-card-descarga .price-plan-collection-item:nth-child(2) .subtitle-card-text {
    color: var(--df-white);
} */

/* .zf-card-descarga .price-plan-collection-item:nth-child(2) .service-plan-heading-wrap {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
} */


.zf-banner-init {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 100px);
}


.zf-banner-init .zf-img {
    margin: 0px 22px;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
}


.zf-text-bn {
    position: absolute;
    bottom: 0;
    color: var(--df-black);
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.zf-banner-init .zf-img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f2f2f2;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
}

.zf-text-bn .zf-text-banner {
    margin: 0 auto;
    width: 100%;
}

.zf-text-bn .zf-text-banner h1 {
    font-size: clamp(32px, 5.5vw, 76px);
    font-weight: 700;
    line-height: 1.2;
}

.zf-text-bn .zf-text-banner p {
    line-height: 1.5;
    width: 75%;
    margin: 0 auto;
    opacity: 0.8;
}

.zf-text-bn .zf-text-banner h1 span {
    font-size: clamp(32px, 7.5vw, 90px);
    font-style: italic;
    font-weight: 400;
}

.zf-flex-btn {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.italic {
    font-style: italic;
}

.c-blue {
    color: var(--zf-blue);
}


.zf-tag-card {
    font-size: 14px;
    background: rgb(10 26 47 / 6%);
    color: var(--zf-blue-high);
    padding: 9px 14px 6px 14px;
    border-radius: 50px;
    width: fit-content;
    line-height: normal;
    display: block;
    margin: 0 auto;
}

.zr-union {
    display: flex;
    gap: 6px;
    flex-direction: column;
}

.zf-calculator .cont-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 0.5fr 1fr;
    grid-template-rows: 0.6fr 1fr auto;
}

.zf-calculator .cont-grid .zf-item-calculator {
    background: rgb(0 51 128 / 0%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgb(0 51 128 / 10%);
}

.zf-calculator .cont-grid .zf-item-calculator.inputs {
    padding: clamp(25px, 4vw, 50px);
    display: flex;
    flex-direction: column;
    gap: 70px;
    justify-content: space-between;
}

.zf-calculator .cont-grid .zf-item-calculator .zf-inputs h5 {
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 18px;
}

.zf-cuantity .zf-icon {
    width: 34px;
    height: 34px;
    background: var(--zf-blue);
    border-radius: 50px;
    color: var(--df-white);
    display: grid;
    place-content: center;
    flex-shrink: 0;
}

.zf-cuantity .zf-icon span {
    font-size: 20px;
}

.zf-cuantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zf-calculator .cont-grid .zf-item-calculator input,
.zf-calculator .cont-grid .zf-item-calculator select {
    padding: 14px 10px;
    border-radius: 50px;
    border: none;
    background-color: rgb(10 26 47 / 10%);
    text-align: center;
    color: var(--zf-blue-high);
    width: 100%;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    min-height: 46px;
}

.zf-calculator .cont-grid .zf-item-calculator .form-group {
    width: 100%;
}

.zf-calculator input[type=number]::-webkit-inner-spin-button,
.zf-calculator input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.zf-calculator input[type=number] {
    -moz-appearance: textfield;
}

.zf-calculator .cont-grid .zf-item-calculator input:focus-visible {
    outline: none;
}

.zf-calculator .cont-grid .zf-item-calculator:nth-child(1) {
    grid-row: span 2;
}

.zf-calculator .cont-grid .zf-item-calculator.title {
    padding: clamp(20px, 3vw, 40px);
    padding-top: 35px;
}

.zf-calculator .cont-grid .zf-item-calculator.title h4 {
    font-size: clamp(28px, 3vw, 40px);
    color: var(--zf-blue);
    line-height: normal;
    margin-top: 12px;
}

.zf-calculator .cont-grid .zf-item-calculator.title p {
    line-height: 20px;
}

.zf-calculator .cont-grid .zf-item-calculator.title h4 span {
    color: var(--zf-aqua);
}

.zf-calculator .cont-grid .zf-item-calculator.title .zf-tag-wrap {
    margin: unset;
}

.zf-calculator .cont-grid .zf-item-calculator.datos {
    padding: clamp(25px, 4vw, 50px);
    padding-bottom: 35px;
    background: transparent;
    color: var(--df-white);
    text-align: center;
    display: flex;
    flex-direction: column;
    color: var(--zf-blue);
    gap: 65px;
    position: relative;
    overflow: hidden;
}

.zf-calculator .cont-grid .zf-item-calculator.datos {
    grid-row: span 2;
}

.zf-calculator .cont-grid .zf-item-calculator.datos img {
    position: absolute;
    right: -27px;
    bottom: -14px;
    width: 240px;
    opacity: 0.1;
    pointer-events: none;
}

.zf-calculator .cont-grid .zf-item-calculator.datos h1 {
    margin: 0;
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 500;
    line-height: normal;
}

.zf-calculator .cont-grid .zf-item-calculator.datos .zf-grid-date {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: center;
}


.zf-grid-date .zf-item-date span {
    font-size: 18px;
    font-weight: 300;
}

.zf-grid-date .zf-item-date h2 {
    font-weight: 500;
}


.zf-calculator .cont-grid .zf-item-calculator.datos>span {
    font-size: 14px;
    text-decoration: underline;
}

.zf-italic {
    color: var(--zf-aqua);
    font-style: italic;
    font-weight: 400;
}

.zf-brand-ft img {
    width: 200px;
}

.hero-text-cover-wrap .zf-tag-wrap {
    margin: unset;
}

.m-auto {
    margin: 0 auto;
}

.zf-terminos {
    color: var(--zf-blue-low);
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
}

.zf-faqs .services-section-title-wrap {
    align-items: start;
}

.zf-slide {
    position: relative;
    height: calc(100vh - 100px);
    padding: 0;
}

.zf-slide .zf-img {
    margin: 0px 22px;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    position: absolute;
    width: calc(100% - 44px);
}

.zf-slide .zf-place {
    height: 100%;
    display: grid;
    place-content: center;
}

.zf-slide .zf-img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f2f2f2;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
}

/* Base: animate.css usa animation-delay */
.--delay {
    animation-delay: var(--animate-delay, 0s);
}

/* Delays */
.animate__delay-0-2s {
    --animate-delay: 0.2s;
}

.animate__delay-0-3s {
    --animate-delay: 0.3s;
}

.animate__delay-0-4s {
    --animate-delay: 0.4s;
}

.animate__delay-0-5s {
    --animate-delay: 0.5s;
}

.animate__delay-0-6s {
    --animate-delay: 0.6s;
}

.animate__delay-0-7s {
    --animate-delay: 0.7s;
}

.animate__delay-0-8s {
    --animate-delay: 0.8s;
}

.animate__delay-0-9s {
    --animate-delay: 0.9s;
}

.animate__delay-1s {
    --animate-delay: 1s;
}

.animate__delay-1-1s {
    --animate-delay: 1.1s;
}

.animate__delay-1-2s {
    --animate-delay: 1.2s;
}

.animate__delay-1-3s {
    --animate-delay: 1.3s;
}

.animate__delay-1-4s {
    --animate-delay: 1.4s;
}

.animate__delay-1-5s {
    --animate-delay: 1.5s;
}

.animate__delay-1-6s {
    --animate-delay: 1.6s;
}

.animate__delay-1-7s {
    --animate-delay: 1.7s;
}

.animate__delay-1-8s {
    --animate-delay: 1.8s;
}

.animate__delay-1-9s {
    --animate-delay: 1.9s;
}


.zf-title-bullets {
    font-size: clamp(22px, 3.5vw, 46px);
    text-align: center;
}

.zf-grid-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    width: 100%;
}

.zf-grid-bullets .zf-item-bullets .zf-icon {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: rgb(0 115 189 / 10%);
    display: grid;
    place-content: center;
    color: var(--zf-blue-low);
}

.zf-grid-bullets .zf-item-bullets {
    background: rgb(0 51 128 / 1%);
    padding: 20px 30px;
    border-radius: 12px;
    /* box-shadow: 0 0px 4px #f4f4f4; */
}

.zf-bullet .services-layout {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
}

.zf-bullet {
    padding-bottom: 20px;
}

.zf-grid-bullets .zf-item-bullets p {
    color: rgb(10 26 47 / 50%);
    line-height: 20px;
}

.zf-grid-bullets .zf-item-bullets h4 {
    line-height: normal;
    color: rgb(10 26 47 / 85%);
    margin: 14px 0;
}

.zf-grid-doc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.zf-grid-doc .zf-item-doc {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #F5EFFA;
}

.zf-grid-doc .zf-item-doc .img-df {
    height: clamp(200px, 24vw, 330px);
}

.zf-grid-doc .zf-item-doc .text-df {
    padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 30px);
}

.mb-0 {
    margin-bottom: 0;
}

.zf-grid-doc .zf-item-doc h3 {
    font-size: clamp(22px, 2vw, 26px);
    margin-top: 0;
    color: var(--zf-blue);
}

.zf-grid-doc .zf-item-doc p {
    line-height: 24px;
    opacity: 0.8;
}

.zf-grid-doc .zf-item-doc .zf-flex-btn {
    justify-content: start;
    margin: 20px 0;
}

.zf-grid-doc .zf-item-doc .text-df>span {
    color: rgb(11 16 20 / 40%);
    font-size: 12px;
    font-weight: 500;
}

.zf-grid-doc .zf-item-doc .zf-flex-btn .zf_btn_link {
    justify-content: center;
    width: 100%;
}

.zf-documentation .service-plan-content-wrap-two {
    grid-template-columns: 1fr 1fr;
}

.zf-video-doc {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}


.zf-documentation .service-plan-content-wrap-two .feature-items p {
    line-height: 24px;
}

.zf-documentation .service-plan-content-wrap-two .service-card-info-wrap-two h3 {
    color: rgb(10 26 47 / 90%) !important;
    margin-bottom: 10px;
}

.zf-documentation .service-plan-two {
    border: 1px solid rgb(10 26 47 / 20%);
}

.zf-img-doc {
    border-radius: 14px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.zf-img-doc .doc-mask,
.cont-video .doc-mask {
    position: absolute;
    right: 0;
    bottom: 0;
    background: rgb(255 255 255 / 10%);
    padding: 8px 25px;
    backdrop-filter: blur(20px);
    color: var(--df-white);
    border-top-left-radius: 30px;
    max-width: 50%;
    pointer-events: none;
}

.zf-img-doc .doc-mask p,
.cont-video .doc-mask p {
    font-size: 12px;
    margin-bottom: 3px
}

.zf-img-doc .doc-mask h5,
.cont-video .doc-mask h5 {
    margin: 5px 0 2px;
}

.zf-documentation .service-plan-content-wrap-two .feature-items a {
    color: var(--zf-blue-low);
    font-weight: 500;
}

.zf-faqs .dropdown-toggle::after {
    content: none;
}

.zf-documentation .c-title {
    text-align: center;
}

.zf-warning {
    border-radius: 50px;
    background: rgb(255 0 0 / 10%);
    padding: 5px 10px;
    color: red;
    font-size: 14px;
}
.cont-video {
    position: relative;
    overflow: hidden;
    background: var(--zf-blue-high);
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.zf-width {
    width: 100%;
    justify-content: center;
}

.zf-payment .zf-cont-form {
    gap: 25px 0;
}

.zf-total {
    font-weight: 400;
}

.zf-title-payment {
    color: var(--zf-blue);
    font-weight: 500;

}
