/* 13. PÁGINAS DE SERVICIO (Identidad · Comunicación · Diseño digital)
   =========================================================== */


.service-page {
    grid-column: 1 / 13;

    display: grid;
    grid-template-columns: repeat(12, 1fr);

    gap: 15px;

    margin-top: 120px;
}


/* ---------- Hero ---------- */
.service-hero {
    grid-column: 1 / 13;

    min-height: min(70vh, 620px);

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    padding: 60px 0 40px;
}


.service-hero-label {
    margin-bottom: 50px;
}


.service-hero-content {
    max-width: 1000px;
}


.service-hero-intro {
    max-width: 650px;

    margin: 50px 0 0;

    font-family: "Google Sans", sans-serif;

    font-size: 1.35rem;
    font-weight: 350;

    line-height: 1.4;
}


.service-hero-meta {
    display: flex;

    gap: 10px;

    margin-top: 70px;
}


.service-hero-meta span {
    padding: 10px 16px;

    border: 1px solid rgba(28, 28, 26, 0.25);

    border-radius: 999px;

    font-family: "Google Sans", sans-serif;

    font-size: 0.7rem;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}


.service-projects {
    grid-column: 1 / 13;

    display: grid;
    grid-template-columns: repeat(12, 1fr);

    gap: 15px;

    padding-top: 100px;
}


.service-projects .section-title {
    grid-column: 1 / 13;

    margin-top: 0;
    margin-bottom: 60px;
}


.service-projects .section-title h2 {
    margin-top: 25px;

    font-family: "Google Sans Flex", sans-serif;

    font-size: 4.5rem;
    font-weight: 650;

    line-height: 0.9;

    letter-spacing: -0.04em;
}


/* ---------- Grid proyectos ---------- */
.service-projects-grid {
    grid-column: 1 / 13;

    display: grid;

    grid-template-columns: repeat(12, 1fr);

    gap: 50px 15px;
}


/* ---------- Proyecto ---------- */
.service-project {
    grid-column: span 6;

    display: flex;
    flex-direction: column;

    color: #1C1C1A;

    text-decoration: none;

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}


/* ---------- Imagen ---------- */
.service-project-image {
    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border-radius: 30px;
}


.service-project-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}


.service-project:hover .service-project-image img {
    transform: scale(1.04);
}


/* ---------- Información ---------- */
.service-project-info {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    padding: 18px 5px 0;
}


.service-project-info h3 {
    margin: 0;

    font-family: "Google Sans Flex", sans-serif;

    font-size: 1.5rem;
    font-weight: 600;

    line-height: 1;
}


.service-project-info p {
    margin: 7px 0 0;

    font-family: "Google Sans", sans-serif;

    font-size: 0.75rem;
    font-weight: 400;

    opacity: 0.55;
}


.project-arrow {
    font-family: "Google Sans", sans-serif;

    font-size: 1.5rem;

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}


.service-project:hover .project-arrow {
    transform: translate(5px, -5px);
}


.service-process {
    grid-column: 1 / 13;

    padding-top: 180px;
}


.service-process .section-title {
    margin-top: 0;
    margin-bottom: 70px;
}


.service-process .section-title h2 {
    margin-top: 25px;

    font-family: "Google Sans Flex", sans-serif;

    font-size: 4rem;
    font-weight: 650;

    line-height: 0.9;

    letter-spacing: -0.04em;
}


/* ---------- Grid ---------- */
.service-process-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}


/* ---------- Item ---------- */
.process-item {
    min-height: 300px;

    padding: 40px;

    border-radius: 30px;

    background: #E8E8E5;
}


.process-number {
    display: block;

    margin-bottom: 80px;

    font-family: "Google Sans Flex", sans-serif;

    font-size: 3.5rem;
    font-weight: 650;

    line-height: 1;

    opacity: 0.35;
}


.process-item h3 {
    margin: 0 0 15px;

    font-family: "Google Sans Flex", sans-serif;

    font-size: 2rem;
    font-weight: 550;

    line-height: 1;
}


.process-item p {
    max-width: 380px;

    margin: 0;

    font-size: 0.95rem;

    line-height: 1.5;

    opacity: 0.7;
}


.other-services {
    grid-column: 1 / 13;

    padding-top: 180px;
}


.other-services .section-title {
    margin-top: 0;
    margin-bottom: 60px;
}


.other-services .section-title h2 {
    margin-top: 25px;

    font-family: "Google Sans Flex", sans-serif;

    font-size: 4rem;
    font-weight: 650;

    line-height: 0.9;
}


/* ---------- Grid ---------- */
.other-services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}


/* ---------- Tarjetas ---------- */
.other-service {
    min-height: 260px;

    padding: 40px;

    border-radius: 30px;

    background: #DAD7CF;

    color: #252525;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    text-decoration: none;

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}


.other-service:nth-child(2) {
    background: #E8E8E5;

    color: #252525;
}


.other-service:hover {
    transform: translateY(-6px);
}


.other-service > span {
    font-family: "Google Sans Flex", sans-serif;

    font-size: 3.5rem;
    font-weight: 650;

    line-height: 1;

    opacity: 0.4;
}


.other-service h3 {
    margin: 0;

    font-family: "Google Sans Flex", sans-serif;

    font-size: 2rem;
    font-weight: 550;

    line-height: 1;
}


.other-service p {
    margin: 15px 0 0;

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.05em;

    opacity: 0.6;
}


.service-cta {
    grid-column: 1 / 13;

    min-height: 300px;

    padding: 80px 5%;

    margin-top: 160px;
    margin-bottom: 80px;

    border-radius: 30px;

    background: #FF5C4D;

    color: #F7F6F2;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    gap: 50px;
}


.service-cta button {
    background: #F7F6F2;

    color: #252525;

    border-color: #F7F6F2;
}


.service-cta button:hover {
    background: #252525;

    color: #F7F6F2;
}


.service-cta h2 .accenth2 {
    font-size: 1em;
}


/* ---------- Responsive — Páginas de servicio ---------- */


@media (max-width: 1200px) {

.service-hero-content h1 {
        font-size: clamp(3.5rem, 7vw, 6rem);
    }


.service-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

.service-page {
        margin-top: 100px;
    }


.service-hero {
        min-height: auto;

        padding: 40px 0 60px;
    }


.service-hero-label {
        margin-bottom: 35px;
    }


.service-hero-intro {
        max-width: 100%;

        margin-top: 35px;

        font-size: 1.15rem;
    }


.service-hero-meta {
        margin-top: 45px;
    }


.service-projects {
        padding-top: 70px;
    }


.service-projects-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px 20px;
    }


.service-project {
        grid-column: span 1;
    }


.service-process {
        padding-top: 110px;
    }


.service-process-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }


.other-services {
        padding-top: 110px;
    }


.other-services-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


.service-cta {
        margin-top: 100px;

        padding: 60px 5%;
    }

}


@media (max-width: 768px) {

.service-page {
        width: 100%;
    min-width: 0;
    margin-top: 0;
    padding-top: 24px;
        overflow: hidden;
    }


.service-hero {
        min-height: auto;
    min-width: 0;
    padding: 80px 0 50px;

        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }


.service-hero-label {
        width: 100%;
    margin-bottom: 0;
    }


.service-hero-content {
        width: 100%;
    min-width: 0;
    }


.service-hero-content h1 {
    margin: 0;
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 4rem);
    overflow-wrap: anywhere;
    }


.service-hero-intro {
        max-width: 100%;
        font-size: 1.1rem;
        line-height: 1.5;
    }


.service-hero-meta {
        width: 100%;

        display: flex;
        flex-wrap: wrap;
        gap: 10px 20px;

        padding-top: 25px;
        border-top: 1px solid currentColor;
    }


.service-hero-meta span {
        font-size: 0.8rem;
    }


.section-title {
        width: 100%;
    }


.section-title h2 {
        font-size: clamp(2.6rem, 11vw, 4rem);
        line-height: 0.98;
        letter-spacing: -0.035em;
    }


.service-projects .section-title h2,
.service-process .section-title h2,
.other-services .section-title h2,
.service-cta h2 {
        font-size: 2.4rem;
        line-height: 0.98;
    }


.service-projects {
    padding: 80px 0;
    }


.service-projects .section-title {
    margin-bottom: 0;
    }


.service-projects-grid {
        display: grid;
        grid-template-columns: 1fr;
    gap: 55px;

    margin-top: 0;
    }


.service-project {
        grid-column: span 1;

        width: 100%;
    min-width: 0;
    }


.service-project-image {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    min-width: 0;

        overflow: hidden;
    }


.service-project-image img {
        width: 100%;
        height: 100%;
        display: block;

        object-fit: cover;
    }


.service-project-image video {
        display: block;
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


.service-project-info {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;

        padding-top: 18px;
    }


.service-project-info h3 {
        font-size: 1.5rem;
        margin: 0 0 5px;
    }


.service-project-info p {
        font-size: 0.8rem;
        margin: 0;
    }


.project-arrow {
        font-size: 1.4rem;
    }


.service-process {
    padding: 80px 0;
}


.service-process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;

    margin-top: 55px;
}


.process-item {
    padding: 30px;
    
    border: none;
}


.process-number {
    display: block;
    margin-bottom: 25px;
}


.process-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}


.process-item p {
    max-width: 100%;
    line-height: 1.6;
}


.other-services {
    padding: 80px 0;
}


.other-services-grid {
    display: grid;
    grid-template-columns: 1fr;

    gap: 20px;

    margin-top: 55px;
}


.other-service {
    width: 100%;
    min-height: 180px;

    box-sizing: border-box;
}


/* No modificar el fondo,
   borde, color ni diseño de las cards */
.other-service h3 {
    font-size: 1.5rem;
    line-height: 1.1;
}


.other-service p {
    font-size: 0.8rem;
}


.service-cta {
        padding: 100px 24px;

    text-align: center;
    }


.service-cta h2 {
    font-size: 2.4rem;
        line-height: 0.98;
        letter-spacing: -0.04em;

        margin: 25px 0 40px;
    }


.service-cta button {
        width: 100%;
        max-width: 100%;

        padding: 18px 25px;
    }

}


@media (min-width: 769px) and (max-width: 1024px) {

.service-page {
        margin-top: 80px;
    }


.service-hero {
        padding: 50px 0 60px;
    }


.service-hero-content h1 {
        margin: 0;
        font-size: clamp(4rem, 8vw, 6rem);
    }


.service-projects {
        padding-top: 70px;
    }


.service-projects .section-title {
        margin-bottom: 40px;
    }


.service-projects-grid {
        gap: 35px 15px;
    }


.service-project {
        min-width: 0;
    }


.service-project-image video {
        display: block;
        width: 100%;
        height: auto;

        object-fit: cover;
    }


.service-process {
        padding-top: 100px;
    }


.service-process .section-title {
        margin-bottom: 50px;
    }


.other-services {
        padding-top: 100px;
    }


.other-services .section-title {
        margin-bottom: 45px;
    }


.service-cta {
        margin-top: 80px;
        padding: 70px 5%;
    }

}


/* ===========================================================
