@charset "utf-8";

/* =================================
   01. DISTRIBUCIÓN PRINCIPAL
================================= */

.about-hero {
    padding-top: 40px;
    padding-bottom: 40px;
}

.about-layout {
    display: grid;

    grid-template-columns: repeat(12, 1fr);
    column-gap: 80px;

    align-items: start;
}


/* COLUMNA DE ILUSTRACIÓN */

.about-visual {
    grid-column: 1 / span 4;
}


/* COLUMNA DE PRESENTACIÓN */

.about-introduction {
    grid-column: 5 / span 4;
}


/* COLUMNA LATERAL */

.about-side {
    grid-column: 9 / -1;

    display: block;

    margin-top: 0;
}

.work-style {
    grid-column: auto;
}

.personal-note {
    grid-column: auto;
}

/* =================================
   02. ILUSTRACIÓN
================================= */

.about-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-handwritten-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	
	position: relative;
    z-index: 2;
}

.about-handwritten-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-handwritten-title {
    margin: 0;

    color: #9c73bd;

    font-family: "Caveat", cursive;
    font-size: 35px;
    font-weight: 400;
    line-height: 1;
}

.about-handwritten-heart {
    flex-shrink: 0;

    width: 27px;
    height: 27px;
}

.about-handwritten-underline {
    display: block;

    width: 140px;
    height: auto;

    margin-top: 4px;
}

.about-illustration {
    position: relative;
    z-index: 1;

    width: 100%;
    margin-top: -60px;
	
	transform: translateX(-20px);
}

.about-illustration-image {
    display: block;

    width: calc(100% + 50px);
    height: auto;
	position: relative;
z-index: 0;

max-width: none;
}


/* TAMAÑO INICIAL DE LOS OTROS CORAZONES */

.about-quote-heart {
    flex-shrink: 0;

    width: 30px;
    height: 30px;
}

.personal-note-heart {
    flex-shrink: 0;

    width: 22px;
    height: 22px;
}

.about-goal-heart {
    width: 30px;
    height: 30px;
}

/* =================================
   03. PRESENTACIÓN
================================= */

.about-introduction {
    align-self: start;

    padding-top: 0px;
}

.about-title {
    margin: 0 0 28px 0;

    color: #24142f;

    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(42px, 3.3vw, 64px);
    font-weight: 700;
    line-height: 1.02;
}

.about-copy {
    color: #222222;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.about-copy p {
    margin: 0 0 14px 0;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.about-copy strong {
    color: #9c73bd;
}


/* FRASE MANUSCRITA */

.about-quote-container {
    max-width: 570px;
}

.about-quote-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 40px;
}

.about-quote {
    margin: 0;
    padding: 0;

    color: #9c73bd;

    font-family: "Caveat", cursive;
    font-size: 29px;
    font-weight: 400;
    line-height: 1.15;
}

.about-quote-underline {
    display: block;

    width: 350px;
    max-width: calc(100% - 42px);
    height: auto;

    margin: 2px 0 0 42px;
}


/* BOTÓN DEL CV */

.about-cv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 40px;
    padding: 11px 24px;

    color: #76587e;
    background-color: transparent;

    border: 2px solid #9c73bd;
    border-radius: 999px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.about-cv-button:hover {
    color: #ffffff;
    background-color: #9c73bd;

    transform: translateY(-2px);
}


/* =================================
   04. CÓMO TRABAJO
================================= */

.about-side {
    padding-top: 0;
}

.work-style-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.work-style-heading h2 {
    margin: 0;

    color: #24142f;

    font-family: "Fraunces", Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
}

.work-style-underline {
    display: block;

    width: 200px;
    height: auto;

    margin-top: 5px;
}

.work-style-list {
    margin-top: 24px;
}

.work-style-item {
    display: grid;
    grid-template-columns: 65px 1fr;
    column-gap: 16px;
    align-items: center;

    padding: 18px 0;

    border-bottom: 1px solid #ddd1e3;
}

.work-style-item:first-child {
    padding-top: 0;
}

.work-style-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    background-color: #eee5f2;

    border-radius: 50%;
}

.work-style-icon img {
    display: block;

    width: 65px;
    height: 65px;

    object-fit: contain;
}

.work-style-text h3 {
    margin: 0 0 6px 0;

    color: #24142f;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.work-style-text p {
    margin: 0;

    color: #222222;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

/* =================================
   05. NOTA PERSONAL
================================= */

.personal-note {
    position: relative;

    margin-top: 28px;
    padding: 34px 28px 30px;

    background-color: #e8d8ed;

    border-radius: 3px;

    box-shadow: 0 14px 28px rgba(36, 20, 47, 0.13);

    transform: rotate(-1deg);
}

.personal-note::before {
    content: "";

    position: absolute;
    top: -11px;
    left: 50%;

    width: 78px;
    height: 22px;

    background-color: rgba(174, 119, 194, 0.65);

    box-shadow: 0 2px 4px rgba(36, 20, 47, 0.08);

    transform:
        translateX(-50%)
        rotate(3deg);
}

.personal-note-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;

    margin-bottom: 18px;
}

.personal-note-title {
    margin: 0;

    color: #9c73bd;

    font-family: "Caveat", cursive;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.05;
}

.personal-note-heart {
    margin-top: 3px;
}

.personal-note p {
    margin: 0 0 12px 0;

    color: #222222;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.personal-note p:last-child {
    margin-bottom: 0;
}

/* =================================
   06. MI PROCESO
================================= */

.creative-process {
    padding-bottom: 80px;
}

.process-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 40px;
    align-items: stretch;

    padding: 38px 36px;

    background-color: #ffffff;

    border-radius: 20px;

    box-shadow: 0 12px 30px rgba(36, 20, 47, 0.13);
}

.process-main {
    min-width: 0;

    padding-right: 36px;

    border-right: 1px solid #d8c5e1;
}


/* TÍTULO */

.process-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.process-heading h2 {
    margin: 0;

    color: #24142f;

    font-family: "Fraunces", Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
}

.process-underline {
    display: block;

    width: 170px;
    height: auto;

    margin-top: 5px;
}


/* ETAPAS */

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 28px;

    margin-top: 24px;
}

.process-item {
    position: relative;

    min-width: 0;

    text-align: center;
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 82px;
    height: 82px;

    margin: 0 auto 12px;

    background-color: #eee5f2;

    border-radius: 50%;
}

.process-icon img {
    display: block;

    width: 65px;
    height: 65px;

    object-fit: contain;
}

.process-item h3 {
    margin: 0 0 7px 0;

    color: #4d2370;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.process-item p {
    margin: 0;

    color: #222222;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}


/* FLECHAS */

.process-item:not(:last-child)::after {
    content: "→";

    position: absolute;
    top: 28px;
    right: -23px;

    color: #9c73bd;

    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}


/* =================================
   07. OBJETIVO PROFESIONAL
================================= */

.about-goal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    min-width: 0;
}

.about-goal-heart {
    display: block;
    flex-shrink: 0;

    width: 30px;
    height: 30px;

    margin-bottom: 20px;
}

.about-goal p {
    margin: 0;

    color: #24142f;

    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
}

.about-goal strong {
    color: #9c73bd;

    font-size: 1.15em;
}

/* =================================
   AJUSTE TABLET AMPLIA
================================= */

@media (min-width: 1000px) and (max-width: 1199px) {

.about-illustration {
    width: 92%;
    margin-right: auto;
}

.about-illustration-image {
    width: 100%;
    max-width: 100%;
}
	
}


/* =================================
   RESPONSIVE TABLET
================================= */

@media (max-width: 1199px) {

.about-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 70px;
}

.about-visual {
    grid-column: 1 / span 5;
}

.about-introduction {
    grid-column: 6 / -1;
}

.about-side {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;

    align-items: start;
}

.work-style {
    grid-column: 1 / span 6;
	
	width: calc(100% - 30px);
    justify-self: start;
}

.personal-note {
    grid-column: 7 / -1;

    width: 83.333%;
    justify-self: center;

    margin-top: 0;
    top: 40px;

    padding-top: 55px;
    padding-bottom: 80px;
}

.about-introduction {
        box-sizing: border-box;
        padding-left: 50px;
    }

.creative-process {
    margin-top: 25px;
}

.about-goal {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
}

.about-goal-heart {
    margin: 3px 0 0;
}

.about-goal p {
    grid-column: 2;
}

.process-card {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 30px;
}

.process-main {
    padding-right: 0;
    padding-bottom: 30px;

    border-right: 0;
    border-bottom: 1px solid #d8c5e1;
}

.process-list {
    column-gap: 32px;
}



}



/* =================================
   TABLET COMPACTA
================================= */

@media (max-width: 899px) {

.process-list {
    column-gap: 20px;
}

.about-goal {
    padding: 0;
}
	
.about-visual {
    grid-column: 1 / span 5;
}

.about-introduction {
    grid-column: 7 / -1;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-title {
    order: 1;
}

.about-copy {
    order: 2;
}

.about-cv-button {
    order: 3;

    margin-top: 24px;
    margin-left: 0;
}

.about-quote-container {
    order: 4;

    width: calc(200% + 24px);
    max-width: none;

    margin-left: calc(-100% - 24px);

  margin-top: clamp(
    90px,
    calc(55vw - 295px),
    160px
);
	
	transform: translateX(-30px);
}

.about-quote-row {
    position: relative;

    width: 83.333%;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-quote-row .about-quote-heart {
    position: absolute;
    left: -24px;
    top: 2px;
}

.about-quote {
    flex: 1;
    text-align: center;
}

.about-quote-underline {
    width: 70%;
    max-width: none;

    margin: 4px auto 0;
}

.personal-note {
    grid-column: 7 / -1;

    width: 83.333%;
    justify-self: center;
}


	
}


/* =================================
   RESPONSIVE MÓVIL
================================= */

@media (max-width: 699px) {

.about-layout {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.about-visual,
.about-introduction,
.about-side {
    width: 100%;
}

.about-introduction {
    width: 100%;
    padding-left: 0;
}

.about-quote-container {
    width: 100%;
    max-width: none;

    margin-left: 0;
    margin-top: 60px;
	
	transform: none;
}

.about-quote-row {
    width: 83.333%;
    max-width: 520px;

    margin-left: auto;
    margin-right: auto;
}

.about-side {
    display: flex;
    flex-direction: column;
    gap: 40px;

    margin-top: 20px;
}

.work-style {
    width: 100%;
}

.personal-note {
    width: 90%;
    box-sizing: border-box;

    align-self: center;

    margin-top: 0px;
    margin-bottom: 40px;

    padding-top: 44px;
    padding-bottom: 80px;

    justify-self: auto;
}
	
.process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 36px;
}

.process-item:nth-child(2)::after {
    display: none;
}

.about-illustration {
    width: 95%;

    margin-left: auto;
    margin-right: auto;
    margin-top: -100px;

    transform: none;
}

.about-illustration-image {
    width: 100%;
    max-width: 100%;
}

}




