* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f5ef;
    color: #101010;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.cursor-light {
    position: fixed;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 177, 0, 0.16), transparent 65%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.hero,
.page-header,
main,
footer {
    position: relative;
    z-index: 1;
}

.hero {
    min-height: 100vh;
    padding: 32px 7%;
    background:
        radial-gradient(circle at 82% 18%, rgba(245, 177, 0, 0.28), transparent 24%),
        radial-gradient(circle at 12% 78%, rgba(0, 0, 0, 0.08), transparent 20%),
        linear-gradient(135deg, #ffffff 0%, #f6f5ef 100%);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: #101010;
    color: #f5b100;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 27px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.logo h2 {
    font-size: 22px;
    letter-spacing: -0.8px;
}

.logo span {
    font-size: 14px;
    color: #666666;
}

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 700;
}

.menu a {
    color: #242424;
    transition: 0.2s;
}

.menu a:hover {
    color: #f5b100;
}

.nav-btn {
    padding: 13px 23px;
    background: #101010;
    color: white;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.2s;
}

.nav-btn:hover {
    background: #f5b100;
    color: #101010;
    transform: translateY(-2px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 62px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d99a00;
    font-weight: 900;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 13px;
}

.tag::before {
    content: "";
    width: 9px;
    height: 9px;
    background: #f5b100;
    border-radius: 50%;
}

h1 {
    font-size: clamp(46px, 6.7vw, 88px);
    line-height: 0.95;
    letter-spacing: -3.8px;
    max-width: 920px;
}

.description {
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.65;
    color: #444444;
    max-width: 750px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-light {
    padding: 16px 27px;
    border-radius: 999px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.22s;
}

.btn-primary {
    background: #f5b100;
    color: #101010;
    box-shadow: 0 16px 34px rgba(245, 177, 0, 0.32);
}

.btn-primary:hover,
.btn-whatsapp:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid #101010;
}

.btn-secondary:hover {
    background: #101010;
    color: white;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px;
    max-width: 760px;
}

.trust-row div {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 18px;
    backdrop-filter: blur(10px);
}

.trust-row strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.trust-row span {
    color: #666666;
    font-size: 14px;
    line-height: 1.4;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.dashboard-card {
    width: min(100%, 470px);
    background: #101010;
    color: white;
    border-radius: 34px;
    padding: 30px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
}

.dashboard-card::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    background: #f5b100;
    border-radius: 50%;
    top: -92px;
    right: -82px;
}

.dash-top {
    display: flex;
    gap: 8px;
    margin-bottom: 34px;
    position: relative;
    z-index: 2;
}

.dash-top span {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.3;
    border-radius: 50%;
}

.card-label {
    color: #f5b100;
    font-weight: 900;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.dashboard-card h3 {
    font-size: 34px;
    letter-spacing: -1.4px;
    line-height: 1.05;
    max-width: 340px;
    position: relative;
    z-index: 2;
}

.flow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 34px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.flow div {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 800;
}

.flow span {
    color: #f5b100;
    font-weight: 900;
}

.metric-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.metric-box div {
    background: #ffffff;
    color: #101010;
    padding: 15px;
    border-radius: 18px;
}

.metric-box small {
    display: block;
    color: #777777;
    margin-bottom: 5px;
}

.metric-box strong {
    font-size: 20px;
}

.section {
    padding: 96px 7%;
}

.section h2 {
    font-size: clamp(34px, 5vw, 62px);
    letter-spacing: -2.5px;
    line-height: 1;
    margin-bottom: 24px;
}

.section > p {
    max-width: 880px;
    font-size: 20px;
    line-height: 1.65;
    color: #444444;
}

.dark-section {
    background: #101010;
    color: white;
}

.dark-section p {
    color: #dddddd;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.card {
    background: white;
    border: 1px solid #eeeeee;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.05);
    transition: 0.22s;
}

.card:hover {
    transform: translateY(-7px);
}

.glow-card {
    position: relative;
    overflow: hidden;
}

.glow-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(245, 177, 0, 0.15);
    border-radius: 50%;
    bottom: -70px;
    right: -70px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #101010;
    color: #f5b100;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-weight: 900;
    margin-bottom: 24px;
}

.card h3 {
    font-size: 28px;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.card p {
    color: #555555;
    line-height: 1.65;
}

.instagram-section {
    background: #ffffff;
}

.split {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.split p {
    font-size: 20px;
    line-height: 1.65;
    color: #444444;
    max-width: 700px;
}

.pro-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.pro-list li {
    background: #f6f5ef;
    border: 1px solid #eeeeee;
    padding: 16px 18px;
    border-radius: 18px;
    font-weight: 800;
}

.pro-list li::before {
    content: "✓ ";
    color: #f5b100;
    font-weight: 900;
}

.phone-mockup {
    width: min(100%, 360px);
    margin: 0 auto;
    background: #101010;
    border-radius: 42px;
    padding: 18px;
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.24);
    color: white;
}

.phone-header {
    width: 94px;
    height: 7px;
    background: #333333;
    border-radius: 999px;
    margin: 0 auto 24px;
}

.profile {
    display: flex;
    gap: 14px;
    align-items: center;
}

.profile-photo {
    width: 68px;
    height: 68px;
    background: #f5b100;
    color: #101010;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 22px;
}

.profile-info h4 {
    font-size: 22px;
}

.profile-info p {
    font-size: 14px;
    color: #bbbbbb;
}

.bio-lines {
    display: grid;
    gap: 8px;
    margin: 22px 0;
}

.bio-lines span {
    height: 9px;
    background: #2b2b2b;
    border-radius: 999px;
}

.bio-lines span:nth-child(1) {
    width: 90%;
}

.bio-lines span:nth-child(2) {
    width: 74%;
}

.bio-lines span:nth-child(3) {
    width: 58%;
}

.ig-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ig-buttons button {
    border: none;
    padding: 12px;
    border-radius: 14px;
    background: #f5b100;
    color: #101010;
    font-weight: 900;
}

.stories {
    display: flex;
    gap: 12px;
    margin: 22px 0;
}

.stories div {
    width: 58px;
    height: 58px;
    border: 3px solid #f5b100;
    border-radius: 50%;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.feed-grid div {
    height: 78px;
    background: linear-gradient(135deg, #ffffff, #f5b100);
    border-radius: 12px;
}

.tech-section {
    background: #f6f5ef;
}

.tech-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.tech-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 26px;
    border: 1px solid #eeeeee;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.tech-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.tech-item p {
    color: #555555;
    line-height: 1.6;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 42px;
}

.comparison div {
    padding: 38px;
    border-radius: 30px;
}

.before {
    background: #eeeeee;
}

.after {
    background: #101010;
    color: white;
    border: 2px solid #f5b100;
}

.comparison h3 {
    font-size: 34px;
    margin-bottom: 14px;
}

.comparison p {
    color: inherit;
    opacity: 0.78;
    line-height: 1.6;
}

.contacto {
    margin: 90px 7%;
    padding: 76px;
    border-radius: 38px;
    background:
        radial-gradient(circle at bottom right, rgba(245, 177, 0, 0.32), transparent 30%),
        #101010;
    color: white;
    text-align: center;
}

.contacto h2 {
    font-size: clamp(36px, 5vw, 68px);
    letter-spacing: -2.6px;
    line-height: 1;
}

.contacto p {
    margin: 20px auto 32px;
    max-width: 720px;
    color: #dddddd;
    font-size: 20px;
    line-height: 1.65;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #f5b100;
    color: #101010;
    box-shadow: 0 16px 34px rgba(245, 177, 0, 0.25);
}

.btn-light {
    background: #ffffff;
    color: #101010;
}

footer {
    padding: 38px 7%;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    color: #555555;
    font-size: 15px;
}

footer div {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

footer a {
    font-weight: 900;
}

footer a:hover {
    color: #f5b100;
}

.page-header {
    padding: 32px 7% 100px;
    background:
        radial-gradient(circle at 82% 18%, rgba(245, 177, 0, 0.28), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #f6f5ef 100%);
}

.page-title {
    margin-top: 80px;
    max-width: 1080px;
}

.page-title h1 {
    font-size: clamp(44px, 6.8vw, 86px);
    line-height: 0.95;
    letter-spacing: -3.5px;
}

.page-title p {
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.65;
    color: #444444;
    max-width: 820px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.service-item {
    background: white;
    padding: 34px;
    border-radius: 28px;
    border: 1px solid #eeeeee;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
    transition: 0.22s;
}

.service-item:hover {
    transform: translateY(-7px);
}

.service-item span {
    color: #f5b100;
    font-weight: 900;
    font-size: 18px;
}

.service-item h3 {
    font-size: 28px;
    margin: 14px 0;
    letter-spacing: -1px;
}

.service-item p {
    color: #555555;
    line-height: 1.65;
}

.process-pro {
    background: #ffffff;
}

.timeline {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.timeline div {
    padding: 28px;
    border-left: 4px solid #f5b100;
    background: #f6f5ef;
    border-radius: 0 24px 24px 0;
}

.timeline span {
    color: #f5b100;
    font-weight: 900;
}

.timeline h3 {
    font-size: 26px;
    margin: 10px 0;
}

.timeline p {
    color: #555555;
    line-height: 1.6;
}

.paquetes {
    background: #101010;
    color: white;
}

.paquetes .card {
    background: #181818;
    color: white;
    border: 1px solid #303030;
}

.paquetes .card p {
    color: #cccccc;
}

.price-card h4 {
    color: #f5b100;
    font-size: 30px;
    margin: 22px 0;
}

.price-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.price-card li {
    color: #e8e8e8;
}

.price-card li::before {
    content: "✓ ";
    color: #f5b100;
    font-weight: 900;
}

.featured {
    border: 1px solid #f5b100 !important;
    transform: translateY(-12px);
}

.second-row {
    grid-template-columns: 1fr;
    margin-top: 24px;
}

.pro-card {
    max-width: 580px;
    margin: 0 auto;
    border: 1px solid #f5b100 !important;
    background:
        radial-gradient(circle at top right, rgba(245, 177, 0, 0.15), transparent 28%),
        #181818 !important;
}

.price-note {
    color: #cfcfcf !important;
    margin-top: 30px;
    font-size: 15px !important;
}

@media (max-width: 980px) {
    .hero-content,
    .split {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .cards,
    .service-grid,
    .tech-grid,
    .timeline {
        grid-template-columns: 1fr 1fr;
    }

    .menu {
        display: none;
    }
}

@media (max-width: 650px) {
    .hero,
    .page-header {
        padding: 24px 5% 70px;
    }

    .nav {
        margin-bottom: 54px;
    }

    .nav-btn {
        display: none;
    }

    h1,
    .page-title h1 {
        letter-spacing: -2px;
    }

    .trust-row,
    .cards,
    .service-grid,
    .tech-grid,
    .timeline,
    .comparison {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 5%;
    }

    .contacto {
        margin: 60px 5%;
        padding: 52px 24px;
    }

    .featured {
        transform: none;
    }

    footer {
        flex-direction: column;
    }
}