:root {
    --white: #ffffff;
    --black: #000000;
    --blue: #019df4;
    --blue2: #066FCB;
    --darkBlue: #0B2739;
    --green: #5bc500;
    --greenTag: #407f0f;
    --lightGray: #b5b5b6;
    --purple: #A13EA1;
    --gray: #6d6d6d;
    --textgray: #50534A;
    --bg-lightGray: #f7f7f7;
    --yellow: #fed303;
    --orange: #f28d15;
    --magenta: #E63780;
    --fucsia: #ED1D77;
    --f1: "Telefonica Regular", "adjust-sans-serif", Helvetica, Arial;
    --f2: "ico-movistar", "adjust-Georgia", Helvetica, sans-serif;
    --f3: "Telefonica light", "adjust-sans-serif", Helvetica, Arial;
    --f4: "Telefonica Bold", "adjust-sans-serif", Helvetica, Arial;
    --guthen: "Guthen-bloots";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--f1);
    outline: 0;
    text-decoration: none;
}

*:focus {
    outline: 0;
}

html {
    font-size: 16px;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    font-size: 16px;
    font-size: 1rem;
}

article,
aside,
footer,
header,
nav,
section {
    display: block;
}

figcaption,
figure,
main {
    display: block;
}

figure,
p {
    margin: 0;
}

i {
    line-height: 1;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

a {
    text-decoration: none;
    color: inherit;
    outline-width: 0;
    cursor: pointer;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
    outline-width: 0;
}

b,
strong {
    font-family: var(--f4);
}

del {
    text-decoration: line-through;
}

code {
    font-family: monospace, Helvetica, sans-serif;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

audio,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

img {
    border-style: none;
    vertical-align: bottom;
    max-width: 100%;
}

img.lazyload:not([src]) {
    visibility: hidden;
}

svg:not(:root) {
    overflow: hidden;
}

input {
    line-height: normal;
}

button,
input,
optgroup,
select,
textarea {
    font-family: var(--f1);
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button {
    line-height: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    outline-width: 0;
    border: none;
    color: inherit;
    cursor: pointer;
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transition: all 0.4s;
}

button:focus {
    outline-width: 0;
}

button:disabled {
    cursor: default;
}

optgroup {
    font-weight: bold;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
    cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

fieldset {
    margin: 0 2px;
    padding: 0.35em 0.75em 0.625em;
}

progress {
    display: inline-block;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

details,
menu {
    display: block;
}

summary {
    display: list-item;
}

canvas {
    display: inline-block;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

.max-width {
    max-width: max-content;
}

/* BODY */
.home-body {
    background: var(--bg-lightGray);
}

.h-scroll {
    overflow: hidden;
}

/* COLORS */
.color-white {
    color: var(--white) !important;
}

.color-black {
    color: var(--black) !important;
}

.color-blue {
    color: var(--blue) !important;
}

.color-darkBlue {
    color: var(--darkBlue) !important;
}

.color-gray {
    color: var(--textgray) !important;
}

.color-lightGray {
    color: var(--lightGray) !important;
}

.color-green {
    color: var(--green) !important;
}

.color-orange {
    color: var(--orange) !important;
}

.color-pink,
.color-magenta {
    color: var(--magenta) !important;
}

.color-purple {
    color: var(--purple) !important;
}

/* FONTS */
.ff-telefonica {
    font-family: var(--f1);
}

.ff-ico-mov {
    font-family: var(--f2);
}

.ff-italic {
    font-family: var(--f5);
    font-style: italic;
}

.fs-italic {
    font-style: italic;
}

/* FONT WEIGHT */
.fw-extra-light {
    font-weight: 200;
}

.fw-light {
    font-weight: 300;
}

.fw-regular {
    font-weight: 400;
}

.fw-bold {
    font-family: var(--f4);
}

/* FONT STYLE */
.fs-italic {
    font-style: italic;
}

.fs-normal {
    font-style: normal;
}

.fs-oblique {
    font-style: oblique;
}

/* BACKGROUND COLORS */
.bg-white {
    background-color: var(--white) !important;
}

.bg-blue {
    background-color: var(--blue) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}

.bg-blue2 {
    background-color: var(--blue2) !important;
}

.bg-darkBlue {
    background-color: var(--darkBlue) !important;
}

.bg-green {
    background-color: var(--green) !important;
}

.bg-yellow {
    background-color: var(--yellow) !important;
}

.bg-greenTag {
    background-color: var(--greenTag) !important;
}

.bg-fucsiaTag {
    background-color: var(--fucsia) !important;
}


.bg-pink,
.bg-magenta {
    background-color: var(--magenta) !important;
}

.bg-grayLight {
    background-color: var(--bg-lightGray) !important;
}

.bg-body-gray {
    background-color: #f5f5f5 !important;
}

.bg-gray {
    background: #86888C !important;
}

.bg-darkBlue-borderWhite {
    background-color: var(--darkBlue) !important;
    border: 1px solid var(--white) !important;
}

.bg-purple {
    background-color: var(--purple) !important;
}

/* BACKGROUND OPACITY COLORS */

.bg-pink-20,
.bg-magenta-20 {
    background-color: rgb(from var(--magenta) r g b / 0.2) !important;
}

.bg-orange-20 {
    background-color: rgb(from var(--orange) r g b / 0.2) !important;
}

.bg-purple-20 {
    background-color: rgb(from var(--purple) r g b / 0.2) !important;
}

.bg-blue-20 {
    background-color: rgb(from var(--blue) r g b / 0.2) !important;
}

.bg-green-20 {
    background-color: rgb(from var(--green) r g b / 0.2) !important;
}


/* CURSOR */
.cursor {
    cursor: pointer;
}

/* BUTTONS */
.m-button {
    width: 100%;
    max-width: 170px;
    min-width: 170px;
    height: 40px;
    color: #FFF;
    font-size: 12px;
    background: var(--blue);
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    line-height: 18px;
}

.m-button::before {
    content: '';
    width: 16px;
    height: 16px;
    display: inline-block;
    background: center/cover no-repeat;
    position: absolute;
    left: 15px;
}

@media only screen and (min-width: 1024px) {
    .m-button {
        font-size: 14px;
    }
}

/* BUTTON ICONS */
.m-button--i-phone::before {
    background-image: url(../images/icon_call.png);
}

.m-button--i-shop::before {
    background-image: url(../images/icon_shop_white.png);
}

.m-button--white.m-button--i-phone::before {
    background-image: url(../images/icon-call-lightblue.png);
}

.m-button--white.m-button--i-shop::before {
    background-image: url(../images/icon_shop-lightBlue.png);
}

.m-button--white-darkblue.m-button--i-phone::before {
    background-image: url(../images/icon_call-darkBlue.png);
}

.m-button--white-darkblue.m-button--i-shop::before {
    background-image: url(../images/icon_shop-darkBlue.png);
}

/* BUTTON SIZES */
.m-button--small {
    width: 40px;
    min-width: 40px;
    padding: 0;
}

/* BUTTON COLORS */
.m-button--darkblue {
    background: var(--darkBlue);
}

.m-button--green {
    background: var(--green);
}

.m-button--white {
    color: var(--blue);
    background: var(--white);
}

.m-button--white-darkblue {
    color: var(--darkBlue);
    background: var(--white);
}

/* BUTTON BORDER */
.m-button--border {
    border: 1px solid;
}

.border-white {
    border: 1px solid var(--white);
}

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

.border-darkBlue {
    border: 1px solid var(--darkBlue);
}

/* POSITION */
.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.p-fixed {
    position: fixed;
}

.p-static {
    position: static;
}

/* DISPLAY */
.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.d-inline-block {
    display: inline-block;
}

/* FLEX BOX */
.flex-vertical {
    flex-direction: column;
}

.flex-horizontal {
    flex-direction: row;
}

.flex-top-left {
    justify-content: flex-start;
    align-items: flex-start;
}

.flex-top-center {
    justify-content: center;
    align-items: flex-start;
}

.flex-top-right {
    justify-content: right;
    align-items: flex-start;
}

.flex-center-left {
    justify-content: left;
    align-items: center;
}

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

.flex-center-right {
    justify-content: right;
    align-items: center;
}

.flex-bottom-left {
    justify-content: left;
    align-items: flex-end;
}

.flex-bottom-center {
    justify-content: left;
    align-items: flex-end;
}

.flex-bottom-right {
    justify-content: left;
    align-items: flex-end;
}

/* TEXT */
.t-center {
    text-align: center;
}

.t-left {
    text-align: left;
}

.t-right {
    text-align: right;
}

.t-justify {
    text-align: justify;
}

.t-underline {
    text-decoration: underline;
}

/* margin */
.m-auto {
    margin: 0 auto;
}


/* falta por definir */
.i-arrow {
    content: url(../images/i-arrow.png);
}

.i-arrow-blue {
    content: url(../images/i-arrow-blue.png);
}

/* Animation */
.kindanimated[data-animate^="fade"]:not([data-animate-on-secuency]):not([data-animate-on-slider]) {
    opacity: 0;
}

/* imagen responsive */
.img-resp {
    max-width: 100%;
    height: auto;
}

@media (max-width:768px) {
    .pageid54165 .c-main-menu__icons .c-main-menu-burger {
        display: none;
    }
}

.mn-princ {
    display: none;
}

.btn-pymes {
    display: block;
}

@media (max-width:768px) {
    .mn-princ {
        display: block;
        color: #313235;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 48.6px;
        padding: 0px 15px;
        border-bottom: 1px solid #019DF4;
    }

    .btn-pymes {
        display: none;
    }
}

.mob-men-princ {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 15.6px;
}

.hot-sale .c-offer-fix-asistido {
    bottom: 120px;
}

.icn-brand-max {
    font-size: 50px;
}
.icn-brand-perplexity-pro:before{
    font-size: 85px;
    margin-top: -20px;
    margin-bottom: -22px;
}

.icn-brand-win-play:before {
    font-size: 48px;
    margin-top: -20px;
    margin-bottom: -22px;
}