﻿/* EVOWEB LANDING PAGE - Complete Styles */

/* Sofia Pro Font Faces */
@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/SofiaProUltraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/SofiaProLight.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/SofiaProRegular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/SofiaProMedium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/SofiaProSemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/SofiaProBold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/SofiaProBold.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #F2B709;
    --color-white: #FFFFFF;
    --color-gray: #F0F0F0;
    --color-dark: #25292C;
    --color-dark-text: #3c3c3b;
    --color-dark-secondary: #2e2e2e;
    --color-overlay: rgba(0, 0, 0, 0.65);
    --font-family: "Sofia Pro", "Outfit", sans-serif;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 0 30px 30px 30px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    background: var(--color-white);
    color: var(--color-dark);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.loading { overflow: hidden; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

/* LOADER */
.loader {
    position: fixed; inset: 0;
    background: var(--color-dark);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.loader__logo img { height: 50px; width: auto; margin-bottom: 2rem; }
.loader__bar {
    width: 200px; height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px; overflow: hidden;
}
.loader__bar::after {
    content: ""; display: block;
    width: 40%; height: 100%;
    background: var(--color-primary);
    animation: loaderProgress 1.5s ease-in-out infinite;
}
@keyframes loaderProgress {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(150%); }
    100% { transform: translateX(400%); }
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    overflow: hidden;
}
.hero__bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero__bg-img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
    position: absolute; inset: 0;
    background: var(--color-overlay);
}
.hero__logo-container {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    padding: 0 60px;
    display: flex;
    justify-content: flex-start;
    z-index: 10;
}
.hero__logo { display: inline-flex; }
.hero__logo-img { height: 42px; width: auto; }
.hero__container {
    position: relative; z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 96px 48px 48px;
    height: 100%;
    gap: 40px;
}
.hero__content {
    max-width: 55%;
    flex-shrink: 0;
}
.hero__accent {
    width: 76px;
    height: 64px;
    position: absolute;
    left: 0;
    top: 20px;
    overflow: hidden;
    margin: 0;
    transform: scale(var(--accent-scale, 1));
    transform-origin: left center;
    --accent-scale: clamp(0.6, 0.8 + 0.2vw, 1.2);
}
.hero__accent::before {
    content: "";
    position: absolute;
    left: -4.33px;
    top: -12.5px;
    width: 73.66px;
    height: 117.583px;
    background: linear-gradient(var(--color-primary), var(--color-primary)) center / 10px 130px no-repeat;
    transform: rotate(30deg);
    transform-origin: center;
}
.hero__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    padding-left: 76px;
    min-height: 64px;
}
.hero__title { display: flex; flex-direction: column; }
.hero__title-line {
    font-size: clamp(2.2rem, 5vw, 5.5rem);
    line-height: 1.05;
    color: var(--color-white);
}
.hero__title-line--regular { font-weight: 400; }
.hero__title-line--black { font-weight: 900; }
.hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.85rem);
    font-weight: 400;
    line-height: 1.48;
    max-width: 640px;
    color: var(--color-white);
}
.hero__buttons { display: flex; gap: 27px; margin-top: 0; flex-wrap: wrap; }
.hero__buttons .btn {
    opacity: 1;
    visibility: visible;
}
.hero__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 550px;
    padding: 20px 0;
    flex-shrink: 1;
}
.feature-item {
    display: flex;
    align-items: center;
    padding-right: 15px;
}
.feature-item__icon {
    width: 66px; height: 66px;
    background: var(--color-gray);
    border: 1.5px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    padding: 14px;
    flex-shrink: 0;
    margin-right: -15px;
    z-index: 2;
    transition: all var(--transition-base);
}
.feature-item__icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-item__icon--full { padding: 0; background: none; border: none; }
.feature-item__icon--full img { border-radius: 50%; object-fit: cover; }
.feature-item__text {
    flex: 1;
    background: var(--color-gray);
    padding: 20px 20px 20px 34px;
    border-radius: 19px;
    z-index: 1;
}
.feature-item__text p {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.4;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    padding: 14px 32px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 0 46px 46px 46px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 1.5px solid transparent;
    min-width: 252px;
    height: 54px;
}
.btn--primary {
    background: var(--color-primary);
    color: var(--color-dark-text);
    border-color: var(--color-primary);
}
.btn--primary:hover {
    background: #e5a908;
    box-shadow: 0 10px 30px rgba(242,183,9,0.3);
}
.btn--white {
    background: var(--color-white);
    color: var(--color-dark-text);
}
.btn--white:hover {
    background: #f3f3f3;
    box-shadow: 0 10px 30px rgba(37,41,44,0.14);
}
.btn--outline {
    background: var(--color-white);
    color: var(--color-dark-text);
    border-color: var(--color-primary);
}
.btn--outline:hover {
    background: #f8f8f8;
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(37,41,44,0.14);
}
.btn--small {
    padding: 12px 30px;
    font-size: 1rem;
    min-width: auto;
}
.magnetic-btn { position: relative; }

/* SECTIONS */
.section { padding: 96px 0; }
.section--white { background: var(--color-white); }
.section--dark { background: var(--color-dark); }
.section__header {
    display: flex;
    align-items: center;
    gap: 0.2em;
    margin-bottom: 40px;
}
.section__header--light .section__title { color: var(--color-white); }
.section__accent {
    width: 76px;
    height: 64px;
    background: url('../img/accent-bar.svg') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}
.section__title {
    font-size: clamp(1.6rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-dark-secondary);
    line-height: 1.2;
}

/* PROBLEMA */
.problema__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.problema__image {
    aspect-ratio: 570 / 632;
    max-height: 632px;
}
.problema__image img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.problema__intro {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--color-dark);
}
.problema__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.problema__item {
    display: flex;
    align-items: center;
    padding-right: 12px;
}
.problema__icon {
    width: 48px;
    height: 47px;
    background: var(--color-gray);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    flex-shrink: 0;
    margin-right: -12px;
    z-index: 2;
}
.problema__icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.problema__text {
    flex: 1;
    background: var(--color-gray);
    padding: 20px 20px 20px 30px;
    border-radius: 15px;
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--color-dark);
}
.problema__solution {
    font-size: 1.3rem;
    font-weight: 300;
    margin-top: 28px;
    line-height: 1.4;
    color: var(--color-dark);
}
.problema__solution strong { font-weight: 600; }

/* SOLUCION */
.solucion {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}
.solucion::before {
    content: "";
    position: absolute;
    left: 0;
    top: -680px;
    width: 1480px;
    height: 1480px;
    background: url("https://www.figma.com/api/mcp/asset/aefb1418-8a96-428b-8965-7ac2fb966f05") no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}
.solucion .container {
    position: relative;
    z-index: 1;
}
.solucion .section__header {
    padding-left: 12px;
    margin-bottom: 40px;
}
.solucion .section__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2e2e2e;
}
.solucion__box {
    background: var(--color-primary);
    padding: 44px 45px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.solucion__box::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    width: 670px;
    height: 670px;
    transform: translateY(-50%) rotate(180deg) scaleY(-1);
    background: url("https://www.figma.com/api/mcp/asset/abd97661-780c-42ed-ac5d-8beae72076b2") no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}
.solucion__text {
    position: relative;
    z-index: 1;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 15px;
}
.solucion__highlight {
    position: relative;
    z-index: 1;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
}

/* INCLUYE */
.incluye {
    background: var(--color-white);
}

.incluye__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.incluye .section__header {
    padding-left: 12px;
}

.incluye__list {
    display: flex;
    flex-direction: column;
    gap: 21px;
    width: 100%;
    max-width: 570px;
}

.incluye__item {
    display: flex;
    align-items: center;
    padding-right: 12px;
}

.incluye__icon {
    width: 48px;
    height: 47px;
    flex-shrink: 0;
    margin-right: -12px;
    z-index: 2;
}

.incluye__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.incluye__text {
    flex: 1;
    background: var(--color-gray);
    padding: 20px 20px 20px 30px;
    border-radius: 15px;
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--color-dark);
}

.incluye__image img {
    border-radius: 12px;
    width: 100%;
    max-width: 570px;
    aspect-ratio: 570 / 632;
    object-fit: cover;
}

/* PROCESO */
.proceso .section__header {
    padding-left: 12px;
}
.proceso__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}
.proceso__step {
    flex: 1;
    background: var(--color-primary);
    padding: 28px 32px 28px 58px;
    border-radius: var(--border-radius);
    position: relative;
    height: 195px;
}
.proceso__content {
    min-height: 138px;
}
.proceso__number {
    position: absolute;
    left: -33px; top: 90px;
    transform: translateY(-50%);
    width: 66px; height: 66px;
    background: var(--color-primary);
    border: 4px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-white);
}
.proceso__step-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 7px;
    line-height: 1.2;
}
.proceso__step-text {
    font-size: 1.1rem;
    color: var(--color-white);
    line-height: 1.5;
}
.proceso__arrow {
    width: 37.988px;
    height: 0;
    display: flex;
    align-items: center; justify-content: center;
    flex-shrink: 0;
    transform: rotate(1.196deg);
    color: var(--color-primary);
    overflow: visible;
}
.proceso__arrow svg {
    width: 43px;
    height: 30px;
    display: block;
}

/* PRECIO */
.precio {
    padding-top: 68px;
    padding-bottom: 68px;
}
.precio .section__header {
    padding-left: 12px;
    margin-bottom: 44px;
}
.precio__box {
    background: linear-gradient(180deg, #25292C 0%, #48494A 100%);
    padding: 56px 45px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.precio__amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.precio__number {
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -8px;
    line-height: 0.622;
}
.precio__plus {
    font-size: 5.5rem;
    font-weight: 500;
    color: var(--color-white);
    line-height: 0.622;
}
.precio__tax {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: -3px;
    line-height: 0.622;
}
.precio__info p {
    font-size: 1.35rem;
    color: var(--color-white);
    line-height: 1.5;
}
.precio__buttons {
    display: flex;
    flex-direction: column;
    gap: 19px;
}
.precio__buttons .btn {
    min-width: 268.61px;
    width: 268.61px;
    height: 55.996px;
    padding: 0 24px;
    font-size: 1.333rem;
    border-radius: 0 39.997px 39.997px 39.997px;
    line-height: 1.5;
}

/* PARA QUIEN */
.paraquien__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.paraquien__image {
    width: 100%;
    max-width: 570px;
}
.paraquien__image img {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 570 / 576;
    object-fit: cover;
}
.paraquien__intro {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 21px;
    color: var(--color-dark);
}
.paraquien__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.paraquien__item { display: flex; align-items: center; }
.paraquien__icon {
    width: 48px; height: 47px;
    flex-shrink: 0;
    margin-right: -12px;
    z-index: 2;
}
.paraquien__icon img { width: 100%; height: 100%; object-fit: contain; }
.paraquien__text {
    flex: 1;
    background: var(--color-gray);
    padding: 20px 20px 20px 30px;
    border-radius: 15px;
    font-size: 1.125rem;
    color: var(--color-dark);
}

/* FAQS */
.faqs .section__header {
    padding-left: 12px;
}
.faqs__list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.faq__item { width: 100%; }
.faq__item--extra { display: none; }
.faqs__list.faqs__list--expanded .faq__item--extra {
    display: block;
    animation: faqItemReveal 0.45s ease both;
}
.faq__question {
    width: 100%;
    background: var(--color-gray);
    min-height: 86px;
    padding: 20px 37px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-dark-secondary);
    cursor: pointer;
    border: none;
    text-align: left;
    transition: all var(--transition-base);
}
.faq__question:hover { background: #e5e5e5; }
.faq__slash {
    color: var(--color-primary);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 28px;
    line-height: 33.6px;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 2px;
    margin-right: 0;
}
.faq__text {
    max-width: 486.206px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 28.8px;
    color: #2e2e2e;
    align-self: flex-start;
}
.faq__arrow {
    margin-left: auto;
    color: var(--color-primary);
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    padding-right: 8px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}
.faq__item.active .faq__question {
    background: #e5e5e5;
}
.faq__item.active .faq__arrow {
    transform: rotate(90deg);
}
.faq__answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 37px;
    transition: max-height 0.55s ease, opacity 0.45s ease, padding 0.55s ease;
}
.faq__item.active .faq__answer {
    max-height: 700px;
    opacity: 1;
    padding: 20px 37px 26px 60px;
}
.faq__answer p,
.faq__answer li {
    font-size: 1.063rem;
    line-height: 1.55;
    color: var(--color-dark);
}
.faq__answer p + p {
    margin-top: 8px;
}
.faq__answer ul {
    margin: 12px 0 12px 20px;
}
.faq__answer ol {
    margin: 12px 0 12px 20px;
}
.faq__answer li + li {
    margin-top: 6px;
}
.faqs__cta { text-align: center; margin-top: 48px; }
.faqs__cta .btn {
    min-width: 320px;
    width: 320px;
    height: 56px;
    padding: 0 24px;
    border-radius: 0 39.997px 39.997px 39.997px;
    font-size: 1.333rem;
    line-height: 1.5;
}

@keyframes faqItemReveal {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA FINAL */
.cta-final__box {
    background: var(--color-primary);
    padding: 44px 45px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
}
.cta-final__box::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    width: 670px;
    height: 670px;
    transform: translateY(-50%) rotate(180deg) scaleY(-1);
    background: url("https://www.figma.com/api/mcp/asset/69df9cf0-3c71-4b2e-a5d2-141ae69cd94f") no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}
.cta-final__title {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark-secondary);
    line-height: 1.8;
}
.cta-final__text {
    position: relative;
    z-index: 1;
    font-size: 1.7rem;
    line-height: 1.2;
    color: var(--color-dark);
}
.cta-final__buttons {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 27px;
}
.cta-final__buttons .btn {
    min-width: 320px;
    width: 320px;
    height: 56px;
    padding: 0 24px;
    border-width: 1.333px;
    border-color: var(--color-primary);
    border-radius: 0 39.997px 39.997px 39.997px;
    font-size: 1.333rem;
    line-height: 1.5;
}

/* TEAM WORDS */
.team-words {
    background: var(--color-dark-text);
    padding: 64px;
}
.team-words__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
}
.team-words__word {
    font-size: 2.8rem;
    line-height: 1.2;
}
.team-words__word--solid { font-weight: 700; color: var(--color-primary); }
.team-words__word--outline-white {
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-white);
    text-stroke: 1px var(--color-white);
}
.team-words__word--yellow { font-weight: 300; color: var(--color-primary); }
.team-words__word--white { font-weight: 700; color: var(--color-white); }
.team-words__word--outline-yellow {
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-primary);
    text-stroke: 1px var(--color-primary);
}

/* BANNER */
.banner {
    background: url('https://www.figma.com/api/mcp/asset/608743dc-de7e-4f9d-9d2e-c8fda3627f9b') center/cover;
    padding: 80px 32px;
    text-align: center;
    position: relative;
}
.banner__overlay {
    position: absolute; inset: 0;
    background: rgba(242,183,9,0.65);
}
.banner__text {
    position: relative;
    z-index: 2;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--color-white);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.2;
}
.banner__text strong { font-weight: 700; }

/* FOOTER */
.footer {
    background: var(--color-dark-text);
    padding: 56px 0;
}
.footer__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-bottom: 0;
}
.footer__logo {
    width: 230px;
    height: 72px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 24px;
}
.footer__logo img { height: 37.53px; width: 230px; object-fit: contain; }
.footer__nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0 20px;
    align-items: center;
}
.footer__nav a {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
    white-space: nowrap;
    transition: color var(--transition-fast);
}
.footer__nav a:hover { color: var(--color-primary); }
.footer__social {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 30px 0 16px;
}
.footer__social-link {
    width: 38px; height: 38px;
    display: flex;
    align-items: center; justify-content: center;
    transition: transform var(--transition-base);
}
.footer__social-link img { width: 100%; height: 100%; object-fit: contain; }
.footer__social-link:hover { transform: scale(1.1) translateY(-3px); }
.footer__info {
    text-align: center;
    padding: 0;
}
.footer__info p {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 0;
}
.footer__info a {
    color: var(--color-white);
    transition: color var(--transition-fast);
}
.footer__info a:hover { color: var(--color-primary); }
.footer .btn--small {
    min-width: 201.47px;
    width: 201.47px;
    height: 42px;
    padding: 0 18px;
    border-radius: 0 30px 30px 30px;
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
}

/* ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.fade-in-up.animated { opacity: 1; transform: translateY(0); }

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.slide-in-right.animated { opacity: 1; transform: translateX(0); }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .section__accent {
        width: 68px;
        height: 58px;
    }
    .hero { height: auto; min-height: 100vh; }
    .hero__container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 80px 36px 36px;
        height: auto;
        min-height: 100vh;
    }
    .hero__content { max-width: 100%; }
    .hero__accent {
        width: 66px;
        height: 56px;
        transform: none;
        margin-right: 2px;
    }
    .hero__accent::before {
        background-size: 8px 112px;
    }
    .hero__features { max-width: 100%; width: 100%; padding: 24px 0 0; }
    .hero__logo-container { top: 30px; }
    .btn { min-width: 220px; height: 50px; font-size: 1.15rem; }
    .problema__grid,
    .incluye__grid,
    .paraquien__grid { grid-template-columns: 1fr; gap: 40px; }
    .problema__image { max-height: 450px; }
    .problema__intro { font-size: 1.5rem; margin-bottom: 24px; }
    .problema__list { gap: 16px; }
    .problema__solution { font-size: 1.1rem; margin-top: 24px; }
    .solucion::before {
        top: -720px;
        left: -200px;
        width: 1300px;
        height: 1300px;
    }
    .solucion .section__header { padding-left: 0; margin-bottom: 36px; }
    .solucion .section__title { font-size: 2rem; line-height: 1.35; }
    .solucion__box::before { width: 700px; height: 700px; left: -100px; }
    .incluye .section__header { padding-left: 0; }
    .incluye__list,
    .incluye__image img { max-width: 100%; }
    .proceso .section__header { padding-left: 0; }
    .proceso__step { padding: 24px 24px 24px 50px; height: auto; min-height: 112px; }
    .proceso__number { width: 56px; height: 56px; left: -28px; top: 56px; font-size: 1.75rem; }
    .proceso__step-title { font-size: 1.2rem; }
    .proceso__step-text { font-size: 1rem; line-height: 1.35; }
    .proceso__steps { flex-direction: column; gap: 30px; }
    .proceso__arrow { transform: rotate(91.196deg); }
    .precio .section__header { padding-left: 0; }
    .precio { padding-top: 60px; padding-bottom: 60px; }
    .precio__box { flex-direction: column; text-align: center; }
    .precio__buttons { flex-direction: row; }
    .precio__buttons .btn { width: auto; min-width: 240px; }
    .faqs .section__header { padding-left: 0; }
}

@media (max-width: 768px) {
    .section__accent {
        width: 64px;
        height: 54px;
    }
    .section { padding: 60px 0; }
    .section + .section:not(.precio):not(.paraquien) { padding-top: 0; }
    .section.paraquien { padding-top: 60px; }
    .section__header { margin-bottom: 28px; }
    .hero__container { padding: 68px 22px 26px; }
    .hero__logo-container { top: 20px; }
    .hero__logo-img { height: 32px; }
    .hero__title-line { font-size: 3rem; }
    .hero__subtitle { font-size: 1.1rem; max-width: 100%; }
    .hero__text {
        gap: 18px;
        padding-left: 58px;
        min-height: 48px;
    }
    .hero__buttons { flex-direction: column; gap: 14px; width: 100%; }
    .hero__accent {
        width: 54px;
        height: 44px;
        position: absolute;
        left: 0;
        top: 2px;
        transform: none;
        margin-right: 0;
        margin: 0;
    }
    .hero__accent::before {
        left: -3px;
        top: -9px;
        width: 52px;
        height: 84px;
        background-size: 7px 96px;
    }
    .btn { width: 100%; min-width: unset; height: auto; padding: 14px 22px; font-size: 1.05rem; border-radius: 0 30px 30px 30px; }
    .section__title { font-size: 1.5rem; }
    .problema__intro { font-size: 1.25rem; margin-bottom: 20px; }
    .problema__list { gap: 14px; }
    .problema__icon { width: 40px; height: 40px; padding: 10px; margin-right: -10px; }
    .problema__icon img { width: 14px; height: 14px; }
    .problema__text { padding: 16px 16px 16px 24px; font-size: 1rem; border-radius: 12px; }
    .problema__solution { font-size: 1.1rem; margin-top: 20px; }
    .problema__image { max-height: 380px; }
    .solucion::before {
        top: -640px;
        left: -260px;
        width: 1100px;
        height: 1100px;
    }
    .solucion .section__title { font-size: 1.5rem; line-height: 1.4; }
    .solucion__box { padding: 30px 18px; border-radius: 0 20px 20px 20px; }
    .solucion__box::before { width: 520px; height: 520px; left: -160px; }
    .incluye__grid { gap: 36px; }
    .incluye__list { gap: 14px; }
    .incluye__icon { width: 40px; height: 40px; margin-right: -10px; }
    .incluye__text { padding: 16px 16px 16px 24px; font-size: 1rem; border-radius: 12px; }
    .proceso__step { width: 100%; max-width: 620px; padding: 25px 24px 25px 54px; height: auto; min-height: auto; }
    .proceso__number { width: 58px; height: 58px; left: -29px; top: 50%; font-size: 1.9rem; }
    .proceso__step-title { font-size: 1.25rem; line-height: 1.25; margin-bottom: 6px; }
    .proceso__step-text { font-size: 1rem; line-height: 1.35; }
    .proceso__arrow { width: 30px; }
    .proceso__arrow svg { width: 34px; height: 24px; }
    .precio__box { padding: 34px 18px; gap: 24px; }
    .precio__amount { flex-wrap: wrap; justify-content: center; gap: 6px; }
    .solucion__text,
    .solucion__highlight,
    .paraquien__intro { font-size: 1.3rem; }
    .precio__number { font-size: 3.5rem; letter-spacing: -4px; }
    .precio__plus { font-size: 3.5rem; }
    .precio__tax { font-size: 1.3rem; letter-spacing: -1px; }
    .precio__buttons { flex-direction: column; }
    .faq__question { min-height: 72px; padding: 16px 20px; font-size: 1.15rem; }
    .faq__slash { font-size: 1.4rem; }
    .faq__text { font-size: 1.25rem; }
    .faq__arrow { font-size: 1.35rem; }
    .faq__answer { padding: 0 20px; }
    .faq__item.active .faq__answer { padding: 16px 20px 20px 36px; }
    .faq__answer p,
    .faq__answer li { font-size: 1rem; line-height: 1.45; }
    .faqs__cta .btn { width: 100%; min-width: unset; height: auto; padding: 16px 24px; border-radius: 0 30px 30px 30px; font-size: 1.1rem; }
    .cta-final__title { font-size: 1.7rem; }
    .cta-final__text { font-size: 1.1rem; }
    .cta-final__buttons { flex-direction: column; }
    .cta-final__buttons .btn { width: 100%; min-width: unset; height: 55.996px; padding: 0 24px; }
    .team-words { padding: 34px 20px; }
    .team-words__word { font-size: 1.75rem; }
    .feature-item__icon { width: 48px; height: 48px; padding: 10px; margin-right: -10px; }
    .feature-item__icon--full { width: 48px; height: 48px; padding: 0; }
    .feature-item__text { padding: 16px 16px 16px 26px; border-radius: 14px; }
    .feature-item__text p { font-size: 1rem; }
    .hero__features { gap: 14px; }
    .footer { padding: 44px 0; }
    .footer__main { gap: 24px; }
    .footer__logo { width: auto; height: auto; padding-top: 0; }
    .footer__nav { flex-wrap: wrap; gap: 6px 16px; }
    .footer .btn--small { width: auto; min-width: 180px; height: auto; padding: 10px 16px; font-size: 15px; margin-top: 0; }
    .footer__social { padding: 24px 0 12px; }
    .footer__info p { font-size: 14px; }
}

@media (max-width: 480px) {
    .section__accent {
        width: 56px;
        height: 48px;
    }
    .hero__container { padding: 60px 14px 18px; }
    .hero__logo-container { top: 20px; }
    .hero__text {
        gap: 14px;
        padding-left: 52px;
        min-height: 44px;
    }
    .hero__accent {
        width: 48px;
        height: 40px;
        position: absolute;
        left: 0;
        top: 2px;
        transform: none;
        margin: 0;
    }
    .hero__accent::before {
        left: -2.5px;
        top: -7px;
        width: 46px;
        height: 74px;
        background-size: 6px 86px;
    }
    .hero__title-line { font-size: 2.5rem; }
    .hero__subtitle { font-size: 1rem; }
    .btn { padding: 12px 18px; font-size: 0.95rem; }
    .section__header { flex-direction: row; align-items: center; padding-left: 0; }
    .section__title { font-size: 1.35rem; }
    .problema__grid { gap: 32px; }
    .problema__intro { font-size: 1.2rem; margin-bottom: 16px; }
    .problema__list { gap: 12px; }
    .problema__icon { width: 36px; height: 36px; padding: 8px; margin-right: -8px; }
    .problema__icon img { width: 12px; height: 12px; }
    .problema__text { padding: 14px 14px 14px 20px; font-size: 0.95rem; border-radius: 10px; }
    .problema__solution { font-size: 1rem; margin-top: 16px; }
    .problema__image { max-height: 320px; }
    .solucion .section__accent {
        transform: none;
        margin-bottom: 0;
    }
    .solucion .section__title { font-size: 1.35rem; line-height: 1.35; }
    .solucion__box { padding: 30px 16px; }
    .solucion__box::before { width: 440px; height: 440px; left: -185px; }
    .solucion__text,
    .solucion__highlight { font-size: 1.15rem; }
    .incluye .section__accent {
        transform: none;
        margin-bottom: 0;
    }
    .incluye__item { padding-right: 8px; }
    .incluye__icon { width: 36px; height: 36px; margin-right: -8px; }
    .incluye__text { padding: 14px 14px 14px 20px; font-size: 0.95rem; border-radius: 10px; }
    .proceso .section__accent {
        transform: none;
        margin-bottom: 0;
    }
    .proceso__steps { gap: 22px; }
    .proceso__step { padding: 20px 16px 20px 44px; height: auto; border-radius: 0 20px 20px 20px; }
    .proceso__number { width: 48px; height: 48px; left: -24px; font-size: 1.5rem; border-width: 3px; }
    .proceso__step-title { font-size: 1.15rem; }
    .proceso__step-text { font-size: 0.95rem; }
    .proceso__arrow { width: 24px; }
    .proceso__arrow svg { width: 28px; height: 20px; }
    .precio .section__accent {
        transform: none;
        margin-bottom: 0;
    }
    .precio__box { padding: 28px 16px; }
    .precio__info p { font-size: 1.2rem; line-height: 1.4; }
    .feature-item__icon { width: 44px; height: 44px; padding: 9px; margin-right: -9px; }
    .feature-item__icon--full { width: 44px; height: 44px; padding: 0; }
    .feature-item__text { padding: 14px 14px 14px 22px; border-radius: 12px; }
    .feature-item__text p { font-size: 0.9rem; }
    .hero__features { gap: 12px; }
    .footer__main { gap: 22px; }
}

@media (min-width: 1400px) {
    .container { padding: 0; }
}
