/* GENERAL */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Jost", sans-serif;
    color: #05380b;
    background-color: #F2CCCB;
    padding-top: 70px;
}

/* NAVBAR */
.menu-principal {
    background-color: #F2CCCB;
    box-shadow: 0 4px 10px rgb(82, 82, 82);
    padding: 0;
}

.logo-nav {
    width: 55px;
}

.nav-link {
    color: black;
    font-size: 15px;
    padding: 18px 24px !important;
}

.nav-link.active,
.nav-link:hover {
    color: #e71f46 !important;
}

.nav-link.active {
    font-size: 20px;
}

.redes-nav .nav-link {
    color: #e71f46;
    font-weight: bold;
    font-size: 20px;

}

.redes-nav .nav-link,
.redes-footer a {
    display: inline-block;
    position: relative;
    z-index: 10000;
    cursor: pointer;
}


/* WEN */
.wen-inicio {
    height: 650px;
    background-color: white;
    display: flex;
    align-items: center;
    padding: 80px 0 0;
    overflow: hidden;
}

.contenido-wen {
    padding-bottom: 70px;
}

.logo-principal {
    width: 420px;
    max-width: 100%;
    margin-bottom: 25px;
}

.contenido-wen p {
    color: black;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* DECORACIONES */
.decoracion {
    opacity: .18;
    width: 100%;
    max-width: 210px;
}

.decoracion-gato {
    transform: translateY(15px);
}

.decoracion-toronja {
    max-width: 230px;
    transform: translateY(20px);
}

/* ABOUT */
.about-wendy {
    position: relative;
    background-color: #efc6c6;
    padding: 90px 0;
    overflow: hidden;
}

.about-wendy .container {
    position: relative;
    z-index: 2;
}

/* FOTO */
.foto-wendy {
    width: 100%;
    max-width: 400px;
    height: 535px;
    object-fit: cover;
}

/* TEXTO */
.texto-about h2 {
    font-family: "Caveat Brush", cursive;
    color: #123d16;
    font-size: 56px;
    margin-bottom: 35px;
}

.texto-about p {
    color: #123d16;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.texto-about strong {
    font-weight: bold;
}

/* BOTONES */
.botones-about {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.btn-about {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 5px 8px black;
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-about:hover {
    transform: scale(1.08);
    color: white;
    box-shadow: 0 8px 12px rgba(0, 0, 0, .28);
}

.btn-verde {
    background: linear-gradient(135deg, #05380b, #109e25);
}

.btn-vino {
    background: linear-gradient(135deg, #e71f46, #8c6a70);
}

/* FLOR DECORATIVA */
.decoracion-flor {
    position: absolute;
    right: 90px;
    bottom: -143px;
    width: 250px;
    opacity: 0.22;
    z-index: 1;
    pointer-events: none;
}

/* EXPERIENCIA */
.experiencia {
    position: relative;
    background-color: #ffffff;
    padding: 75px 0 100px;
    overflow: hidden;
}

.experiencia .container {
    position: relative;
    z-index: 2;
}

/* TÍTULO */
.experiencia h2 {
    font-family: "Caveat Brush", cursive;
    color: #e71f46;
    font-size: 64px;
    text-align: center;
    margin-bottom: 60px;
}

/* FILA DE EXPERIENCIAS */
.experiencia-row {
    row-gap: 45px;
    margin-bottom: 90px;
}

/* TARJETAS DE EXPERIENCIA */
.experiencia-card {
    text-align: center;
    min-height: 300px;
}

.experiencia-card h3 {
    color: #05380b;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 12px;
}

.experiencia-card h3 span {
    color: #e71f46;
    font-size: 15px;
}

.experiencia-card p {
    color: #05380b;
    font-size: 14px;
    line-height: 1.35;
    min-height: 42px;
    margin-bottom: 22px;
}

.experiencia-card img {
    width: 125px;
    max-width: 100%;
    filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.22));
    transition: transform .35s ease, filter .35s ease;
}

.experiencia-card:hover img {
    transform: translateY(-10px) scale(1.06);
    filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.28));
}

/* FILA DE APPS */
.apps-experiencia-row {
    row-gap: 35px;
}

/* APPS */
.app-exp {
    text-align: center;
}

.app-exp img {
    width: 115px;
    max-width: 100%;
    margin-bottom: 18px;
    filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.14));
    transition: transform .3s ease, filter .3s ease;
}

.app-exp h4 {
    color: #05380b;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.15;
    margin-bottom: 0;
}

.app-exp:hover img {
    transform: translateY(-10px) scale(1.08);
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.22));
}

/* FLOR DECORATIVA */
.flor-experiencia {
    position: absolute;
    left: -90px;
    bottom: -140px;
    width: 320px;
    opacity: .14;
    pointer-events: none;
    z-index: 1;
}

/* ANIMACIÓN SIMPLE */
.animar-exp,
.animar-app {
    opacity: 0;
    transform: translateY(35px);
    animation: aparecerSuave .8s ease forwards;
}

/* EXPERIENCIAS APARECEN UNA POR UNA */
.experiencia-row .col-xl-2:nth-child(1) .animar-exp {
    animation-delay: .1s;
}

.experiencia-row .col-xl-2:nth-child(2) .animar-exp {
    animation-delay: .25s;
}

.experiencia-row .col-xl-2:nth-child(3) .animar-exp {
    animation-delay: .4s;
}

.experiencia-row .col-xl-2:nth-child(4) .animar-exp {
    animation-delay: .55s;
}

.experiencia-row .col-xl-2:nth-child(5) .animar-exp {
    animation-delay: .7s;
}

/* APPS APARECEN SEMIRÁPIDO UNA A UNA */
.apps-experiencia-row .col-xl-1:nth-child(1) .animar-app {
    animation-delay: .9s;
}

.apps-experiencia-row .col-xl-1:nth-child(2) .animar-app {
    animation-delay: 1s;
}

.apps-experiencia-row .col-xl-1:nth-child(3) .animar-app {
    animation-delay: 1.1s;
}

.apps-experiencia-row .col-xl-1:nth-child(4) .animar-app {
    animation-delay: 1.2s;
}

.apps-experiencia-row .col-xl-1:nth-child(5) .animar-app {
    animation-delay: 1.3s;
}

.apps-experiencia-row .col-xl-1:nth-child(6) .animar-app {
    animation-delay: 1.4s;
}

.apps-experiencia-row .col-xl-1:nth-child(7) .animar-app {
    animation-delay: 1.5s;
}

.apps-experiencia-row .col-xl-1:nth-child(8) .animar-app {
    animation-delay: 1.6s;
}

.apps-experiencia-row .col-xl-1:nth-child(9) .animar-app {
    animation-delay: 1.7s;
}

.apps-experiencia-row .col-xl-1:nth-child(10) .animar-app {
    animation-delay: 1.8s;
}

@keyframes aparecerSuave {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HABILIDADES */
.habilidades {
    position: relative;
    background-color: #F2CCCB;
    padding: 80px 0 110px;
    overflow: hidden;
}

.habilidades h2 {
    font-family: "Caveat Brush", cursive;
    color: #05380b;
    font-size: 64px;
    margin-bottom: 95px;
}

.habilidades-row {
    row-gap: 50px;
}

/* ITEM */
.habilidad-item {
    text-align: center;
    position: relative;
}

/* TÍTULO DE CADA HABILIDAD */
.habilidad-item h3 {
    color: #e71f46;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.15;
    margin-bottom: 25px;
    min-height: 56px;
}

/* CÍRCULOS */
.habilidad-item img {
    width: 130px;
    max-width: 100%;
    transition: transform .35s ease, filter .35s ease;
}

/* ANIMACIÓN */
.habilidad-item:hover img {
    transform: translateY(-15px) scale(1.08);
    filter: drop-shadow(0 12px 10px rgba(0, 0, 0, .25));
}

/* GATO DECORATIVO */
.gato-habilidades {
    position: absolute;
    right: 95px;
    bottom: 0px;
    width: 260px;
    opacity: .16;
    z-index: 1;
    pointer-events: none;
}

.habilidades .container {
    position: relative;
    z-index: 2;
}

/* CONTACT HERO */
.contact-hero {
    background-color: #F2CCCB;
    padding: 150px 20px 160px;
}

.contact-hero h2 {
    color: #1d7a23;
    font-size: 58px;
    font-weight: bold;
    margin-bottom: 25px;
}

.contact-hero p {
    color: #760020;
    font-size: 58px;
    line-height: 1.45;
    font-weight: bold;
    margin-bottom: 0;
}


/* CONTACTO */
.contacto {
    background-color: #ffffff;
    padding: 90px 0 110px;
}

.contacto-info p {
    color: #05380b;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.correo-contacto {
    display: inline-block;
    color: #e71f46;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    margin: 5px 0 35px;
}

.correo-contacto:hover {
    color: #760020;
}

.texto-secundario {
    font-size: 16px !important;
}


/* FORMULARIO */
.formulario-contacto {
    max-width: 560px;
    margin: 0 auto;
}

.formulario-contacto h3 {
    color: #e71f46;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 45px;
}

.formulario-contacto label {
    display: block;
    color: #05380b;
    font-size: 24px;
    margin-bottom: 45px;
}

.formulario-contacto input,
.formulario-contacto textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #e71f46;
    outline: none;
    background-color: transparent;
    color: #05380b;
    font-size: 18px;
    padding: 8px 0;
    margin-bottom: 55px;
}

.formulario-contacto input:focus,
.formulario-contacto textarea:focus {
    border-bottom-color: #760020;
}

.formulario-contacto textarea {
    height: 95px;
    resize: none;
}

.formulario-contacto button {
    border: none;
    background: linear-gradient(135deg, #760020, #e71f46);
    color: white;
    font-size: 26px;
    font-weight: bold;
    padding: 10px 55px;
    border-radius: 35px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .28);
    transition: transform .3s ease, box-shadow .3s ease;
}

.formulario-contacto button:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, .32);
}

/* WORK PAGE */
.work-page {
    background-color: #ffffff;
    padding: 90px 0 110px;
}

.work-page h1 {
    font-family: "Caveat Brush", cursive;
    color: #760020;
    font-size: 64px;
    margin-bottom: 15px;
}

.work-subtitle {
    color: #05380b;
    font-size: 20px;
    line-height: 1.4;
    max-width: 820px;
    margin: 0 auto 95px;
}

.work-gallery {
    align-items: stretch;
}

/* CARD */
.work-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    height: 540px;
    cursor: pointer;
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CAPA ROSA SUAVE */
.work-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(118, 0, 32, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .35s ease;
}

/* TEXTO OCULTO AL INICIO */
.work-text {
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .35s ease, transform .35s ease;
}

.work-text h2 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 5px;
}

.work-text p {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}

/* HOVER */
.work-card:hover .work-overlay {
    background-color: rgba(118, 0, 32, 0.60);
}

.work-card:hover .work-text {
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER */
.footer-principal {
    background-color: #F2CCCB;
    padding: 55px 0;
}

.footer-principal h2 {
    font-family: "Caveat Brush", cursive;
    color: #05380b;
    font-size: 48px;
    margin-bottom: 0;
}

.logo-footer {
    width: 80px;
    display: block;
    margin: 0 auto;
}

.footer-principal p {
    color: black;
    font-size: 20px;
    margin-bottom: 8px;
}

.redes-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}

.redes-footer a {
    color: #e71f46;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {

    .nav-link {
        padding: 14px 18px !important;
    }

    .redes-nav {
        flex-direction: row;
        justify-content: center;
    }

    .wen-inicio {
        min-height: 580px;
    }

    .logo-principal {
        width: 340px;
    }

    .contenido-wen p {
        font-size: 18px;
    }

    .texto-about h2 {
        font-size: 44px;
    }

    .texto-about p {
        font-size: 18px;
    }

    .foto-wendy {
        height: 440px;
    }

    .decoracion-flor {
        right: -40px;
        bottom: -120px;
        width: 280px;
    }

    .habilidades h2 {
        font-size: 54px;
        margin-bottom: 80px;
    }

    .habilidad-item h3 {
        font-size: 20px;
    }

    .habilidad-item img {
        width: 115px;
    }

    .contact-hero {
        padding: 120px 20px 130px;
    }

    .contact-hero h2 {
        font-size: 48px;
    }

    .contact-hero p {
        font-size: 46px;
    }

    .contacto-info p {
        font-size: 18px;
    }

    .correo-contacto {
        font-size: 22px;
    }

    .formulario-contacto label {
        font-size: 21px;
    }

    .experiencia {
        padding: 65px 0 90px;
    }

    .experiencia h2 {
        font-size: 54px;
        margin-bottom: 50px;
    }

    .experiencia-card {
        min-height: auto;
        margin-bottom: 25px;
    }

    .experiencia-card h3 {
        font-size: 19px;
    }

    .experiencia-card img {
        width: 120px;
    }

    .app-exp img {
        width: 100px;
    }

    .app-exp h4 {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {

    .wen-inicio {
        height: auto;
        min-height: auto;
        padding: 70px 20px;
    }

    .contenido-wen {
        padding-bottom: 0;
    }

    .logo-principal {
        width: 280px;
    }

    .contenido-wen p {
        font-size: 16px;
    }

    .about-wendy {
        padding: 70px 20px;
        text-align: center;
    }

    .foto-wendy {
        max-width: 280px;
        height: 380px;
        margin-bottom: 40px;
    }

    .texto-about h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .texto-about p {
        font-size: 16px;
    }

    .botones-about {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn-about {
        width: 220px;
        text-align: center;
    }

    .decoracion-flor {
        right: -95px;
        bottom: -120px;
        width: 260px;
        opacity: 0.16;
    }

    .habilidades {
        padding: 60px 20px 80px;
    }

    .habilidades h2 {
        font-size: 44px;
        margin-bottom: 50px;
    }

    .habilidades-row {
        row-gap: 45px;
    }

    .habilidad-item h3 {
        font-size: 20px;
        min-height: auto;
        margin-bottom: 18px;
    }

    .habilidad-item img {
        width: 120px;
    }

    .gato-habilidades {
        right: -75px;
        bottom: -30px;
        width: 230px;
        opacity: .12;
    }

    .contact-hero {
        padding: 90px 20px 100px;
    }

    .contact-hero h2 {
        font-size: 42px;
    }

    .contact-hero p {
        font-size: 34px;
        line-height: 1.35;
    }

    .contacto {
        padding: 70px 20px 90px;
    }

    .contacto-info {
        margin-bottom: 60px;
    }

    .contacto-info p {
        font-size: 17px;
    }

    .correo-contacto {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .formulario-contacto {
        max-width: 100%;
    }

    .formulario-contacto h3 {
        font-size: 22px;
        margin-bottom: 35px;
    }

    .formulario-contacto label {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .formulario-contacto input,
    .formulario-contacto textarea {
        margin-bottom: 45px;
    }

    .formulario-contacto button {
        font-size: 22px;
        padding: 10px 45px;
    }

    .experiencia {
        padding: 60px 20px 85px;
    }

    .experiencia h2 {
        font-size: 44px;
        margin-bottom: 45px;
    }

    .experiencia-row {
        margin-bottom: 60px;
    }

    .experiencia-card {
        max-width: 350px;
        margin: 0 auto 45px;
    }

    .experiencia-card h3 {
        font-size: 22px;
    }

    .experiencia-card p {
        font-size: 16px;
        min-height: auto;
    }

    .experiencia-card img {
        width: 145px;
    }

    .apps-experiencia-row {
        row-gap: 42px;
    }

    .app-exp img {
        width: 110px;
    }

    .app-exp h4 {
        font-size: 17px;
    }

    .flor-experiencia {
        width: 270px;
        left: -120px;
        bottom: -90px;
        opacity: .12;
    }
}

@media (max-width: 991.98px) {

    .work-page {
        padding: 80px 0 90px;
    }

    .work-page h1 {
        font-size: 52px;
    }

    .work-subtitle {
        font-size: 18px;
        margin-bottom: 70px;
    }

    .work-card {
        height: 430px;
    }

    .work-text h2 {
        font-size: 28px;
    }

    .work-text p {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {

    .work-page {
        padding: 65px 20px 80px;
    }

    .work-page h1 {
        font-size: 42px;
        line-height: 1.1;
    }

    .work-subtitle {
        font-size: 16px;
        margin-bottom: 45px;
    }

    .work-card {
        height: 380px;
        max-width: 420px;
        margin: 0 auto;
    }

    /* En celular no hay hover real, entonces el texto aparece siempre */
    .work-text {
        opacity: 1;
        transform: translateY(0);
    }

    .work-overlay {
        background-color: rgba(118, 0, 32, 0.42);
    }

    .work-text h2 {
        font-size: 26px;
    }

    .work-text p {
        font-size: 22px;
    }

    .footer-principal {
        text-align: center;
    }

    .footer-principal .row {
        text-align: center;
    }

    .footer-principal .text-md-start,
    .footer-principal .text-md-end {
        text-align: center !important;
    }

    .redes-footer {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 22px;
        margin-top: 10px;
    }

    .redes-footer a {
        margin: 0;
    }
}