/* =============================================================================
   dic.css — Landing de Diseño de Imagen Corporativa
   Diseño standalone con Inter font. Basado en snippet 1661 del sitio v1.
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter" !important;
    font-size: 16px;
}

/* Reset de padding del template para esta landing */
#site-main {
    padding: 0;
}

p, a, ul, li, h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, strong, span {
    color: #000;
}

h1 {
    font-size: 48px !important;
    margin-bottom: 16px;
}

.row {
    width: 95%;
    max-width: 1320px;
    margin: auto;
}

.section__title {
    font-size: 32px !important;
    font-weight: 700;
    margin: 0 0 16px;
}

.section__kicker {
    font-size: 14px !important;
    font-weight: 700;
    margin: 0 0 8px;
}

.section__subtitle {
    font-size: 16px !important;
    font-weight: 400;
    color: #666;
}

.text-center {
    text-align: center;
}

.kkr__white, .tt__white, .txt__white {
    color: #fff;
}

/* --- Botones --- */
.btn {
    display: inline-flex;
    justify-content: center;
    padding: 20px 30px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all ease-out .3s;
    font-weight: 600;
}

.btn__dark {
    color: #fff;
    background-color: #000;
}

.btn__dark:hover {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
}

.btn__whatsapp {
    color: #fff;
    background-color: #26D366;
}

.btn__whatsapp:hover {
    color: #26D366;
    background-color: #fff;
    border: 2px solid #26D366;
}

.btn__dark-outline {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
}

.btn__dark-outline:hover {
    color: #fff;
    background-color: #000;
}

/* --- HEADER --- */
.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.09);
}

.header__nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 1320px;
    margin: auto;
    padding: 8px 0;
}

.header__logo {
    max-width: 111px !important;
    object-fit: cover;
}

.nav-bar__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.menu__item {
    list-style: none;
    position: relative;
}

.item__link {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    transition: all ease-out .3s;
}

.item__link:hover {
    font-weight: 500;
    text-decoration: underline;
}

.nav-bar__button {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 32px;
    background-color: #000;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 30px;
    transition: all ease-out .3s;
}

.nav-bar__button:hover {
    color: #000;
    background-color: transparent;
    border: 2px solid #000;
}

.nav-bar__toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 101;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #011A42;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* --- HERO --- */
#hero {
    background-image: url("https://www.zopy.mx/wp-content/uploads/2025/06/Ellipse-1.png");
    background-repeat: no-repeat;
    background-position: left center;
    margin: 0 0 136px;
}

.hero__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero__content {
    display: flex;
    flex-direction: column;
    width: 42.19%;
}

.hero__images-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
    width: 40.98%;
    mask-image: linear-gradient(0deg, transparent, #fff 15%, #000 85%, transparent);
    overflow-x: unset;
}

.hero__images-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: calc(100vh - 72px);
}

.hero__images-column:last-child {
    margin-top: -70px;
}

.hero__subtitle {
    font-size: 20px !important;
    margin-bottom: 32px;
    color: #000;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero__rating {
    color: #666;
}

.rating__stars {
    color: #FBBC04;
}

.hero-client-logo {
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px;
}

/* --- BENEFITS --- */
#benefits {
    margin: 0 0 136px;
}

.grid__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(331px, 1fr));
    gap: 16px;
    margin: 88px 0 0;
}

.benefit__card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid #dedede;
}

.card__image {
    object-fit: contain;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.card__content {
    display: flex;
    flex-direction: column;
    padding: 24px;
    height: 100%;
}

.card__title {
    font-size: 20px !important;
    font-weight: 700;
    margin: 0 0 16px;
}

.card__text {
    font-size: 15px !important;
    font-weight: 400;
    color: #666;
    margin: 0 0 24px;
}

.card__link {
    margin: auto 0 0;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: all .3s;
}

.card__link:hover {
    text-decoration: underline;
    font-weight: 700;
}

/* --- PROCESS --- */
#process {
    background-color: #EEFAFC;
    padding: 80px 0;
    margin: 0 0 136px;
}

.process__content {
    display: flex;
    gap: 32px;
    margin: 80px 0 0;
}

.process__images {
    width: 57.8%;
}

.process__steps {
    display: flex;
    flex-direction: column;
    width: 40.98%;
    align-items: flex-start;
}

.collage-image {
    object-fit: contain;
    width: 100%;
    border-radius: 10px;
    display: none;
}

.active-image {
    display: flex;
}

.step__item {
    margin: 0 0 32px;
}

.step__number {
    display: inline-flex;
    font-size: 40px;
    font-weight: 700;
}

.step__title {
    display: inline-flex;
    font-size: 20px !important;
    font-weight: 700;
}

.step__description {
    font-size: 15px;
    color: #666;
}

/* --- CONTACT --- */
#contact {
    margin: 0 0 136px;
}

.contact__row {
    background-color: #000;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}

.cta__content {
    padding: 5vw 0 5vw 5vw;
    width: 44.54%;
}

.contact__form-wrapper {
    margin: -3vw 5vw 5vw 0;
    padding: 24px;
    width: 32.57%;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.cta__text {
    margin: 0 0 24px;
}

.form__title {
    font-size: 20px !important;
    font-weight: 700;
    margin: 0 0 16px;
}

/* --- PORTFOLIO --- */
#portafolio {
    margin: 0 0 136px;
    overflow: hidden;
}

.portfolio__grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 16px;
    margin: 80px 0 0;
    padding-bottom: 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
    scroll-behavior: smooth;
}

.portfolio__grid::-webkit-scrollbar {
    display: none;
}

.portfolio__item {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 10px;
    border: 1px solid #dedede;
    padding: 8px;
    flex: 0 0 auto;
    width: 300px;
    box-sizing: border-box;
    scroll-snap-align: start;
}

.portfolio-logo {
    object-fit: contain;
    width: 100%;
    max-height: 100%;
    pointer-events: none;
    user-select: none;
}

.portfolio__grid.active-dragging {
    cursor: grabbing;
    user-select: none;
}

.portfolio-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

.portfolio-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 20px !important;
    border: none !important;
    background-color: #ccc !important;
    margin: 0 5px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    padding: 0 !important;
}

.portfolio-dot.active {
    background-color: #333 !important;
}

/* --- PLANS --- */
#plans {
    margin: 0 0 136px;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin: 64px 0 0;
}

.plan-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    border: 2px solid #DEDEDE;
    padding: 40px 32px;
    position: relative;
}

.plan-card--popular {
    border: 3px solid #E67E22;
}

.plan-name {
    font-size: 32px !important;
    font-weight: 700;
    margin: 0 0 8px;
}

.plan-ideal-for {
    font-size: 14px !important;
    margin: 0 0 8px;
    color: #000;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 8px;
}

.currency {
    font-size: 40px !important;
    font-weight: 400;
}

.amount {
    font-size: 58px !important;
    font-weight: 700;
}

.plan-note {
    font-size: 13px !important;
    color: #666;
    margin: 0 0 40px;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background-color: #E67E22;
    padding: 8px 13px 8px 16px;
    border-radius: 0 10px 0 10px;
}

.plan-features {
    margin: 24px 0 0;
}

.features-title {
    font-size: 18px !important;
    font-weight: 700;
    margin: 0 0 8px;
}

.feature-category {
    margin: 0 0 8px;
}

.feature-category-title {
    font-size: 16px !important;
    font-weight: 500;
    margin: 0 0 8px;
}

.feature-list {
    padding: 0 0 0 24px;
}

.feature-item {
    font-size: 14px !important;
    margin: 0 0 8px;
}

.feature__additional-icon {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

/* --- MOBILE STYLES --- */
@media (max-width: 767px) {
    h1 {
        font-size: 30px !important;
        margin-bottom: 32px;
        text-align: center;
    }

    .section__title {
        font-size: 25px !important;
    }

    /* HEADER */
    .header__nav-bar {
        position: relative;
        width: 100%;
    }

    .nav-bar__menu {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        padding: 6rem 0 0 1rem;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        transition: left 0.4s ease-in-out;
        z-index: 100;
    }

    .nav-bar__menu.is-active {
        display: flex;
        left: 0;
        margin: 0;
    }

    .menu__item {
        width: 100%;
        padding: 1rem 0;
        border-bottom: #ddd 1px solid;
    }

    .item__link {
        font-size: 1rem;
        padding: 0;
        width: 100%;
    }

    .menu__item--mobile-cta {
        display: flex;
        width: 100%;
        color: #000;
    }

    .nav-bar__button--mobile {
        width: auto;
        padding: 12px;
    }

    .nav-bar__toggle {
        display: block;
        background-color: transparent !important;
    }

    .nav-bar__toggle.is-active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-bar__toggle.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-bar__toggle.is-active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }

    /* HERO */
    #hero {
        background-position: top center;
        margin: 0 0 96px;
    }

    .hero__row {
        flex-direction: column;
    }

    .hero__content {
        width: auto;
        margin: 48px 0 0;
    }

    .hero__subtitle {
        text-align: center;
        font-size: 16px !important;
    }

    .hero__buttons {
        flex-direction: column;
        margin: 0 0 32px;
        gap: 12px;
    }

    .hero__rating {
        font-size: 14px !important;
        text-align: center;
    }

    .hero__images-flex {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        mask-image: linear-gradient(90deg, transparent, #fff 15%, #000 85%, transparent);
        margin: 32px 0 0;
        overflow: hidden;
    }

    .hero__images-column {
        flex-direction: row;
        height: 100%;
    }

    .hero__images-column:first-child {
        margin: 0 0 0 -40px;
    }

    .hero__images-column:last-child {
        margin: 0;
    }

    .hero-client-logo {
        max-width: 128px !important;
    }

    /* BENEFITS */
    #benefits {
        margin: 0 0 96px;
    }

    .grid__layout {
        margin: 56px 0 0;
    }

    /* PROCESS */
    #process {
        padding: 64px 0;
        margin: 0 0 96px;
    }

    .process__content {
        flex-direction: column;
        margin: 48px 0 0;
    }

    .process__images, .process__steps {
        width: auto;
    }

    .step__number {
        font-size: 32px !important;
    }

    .step__title {
        font-size: 18px !important;
    }

    /* CONTACT */
    #contact {
        margin: 0 0 96px;
    }

    .contact__row {
        flex-direction: column;
    }

    .cta__content {
        width: auto;
        padding: 0 5vw 5vw 5vw;
        order: 2;
    }

    .contact__form-wrapper {
        width: auto;
        margin: -7vw 5vw 5vw 5vw;
    }

    /* PORTFOLIO */
    #portafolio {
        margin: 0 0 96px;
    }

    .portfolio__grid {
        margin: 56px 0 0;
    }

    /* PLANS */
    #plans {
        margin: 0 0 96px;
    }

    .plan-card {
        padding: 40px 24px;
    }
}
