/*==================================================
GENERAL
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:
    radial-gradient(circle at top left,#eaf5ff 0%,transparent 30%),
    radial-gradient(circle at bottom right,#edf8ff 0%,transparent 35%),
    #f8fbfd;

    color:#1c2938;

    overflow-x:hidden;

}

/*==================================================
TOP BAR
==================================================*/

.top-bar{

    background:#123E70;

    color:white;

    font-size:.82rem;

    font-weight:500;

    text-align:center;

    padding:10px 0;

    letter-spacing:1px;

}

/*==================================================
HEADER
==================================================*/

.main-header{

    padding:18px 0;

    position:sticky;

    top:0;

    z-index:999;

}

.header-content{

    background:rgba(255,255,255,.78);

    backdrop-filter:blur(16px);

    border-radius:20px;

    padding:16px 30px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    box-shadow:

        0 20px 45px rgba(18,62,112,.08);

    border:1px solid rgba(255,255,255,.8);

    position:relative;

    overflow:hidden;

}

/* pincelada */

.header-content::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    left:-80px;

    top:-130px;

    background:

    radial-gradient(circle,
    rgba(18,62,112,.12),
    transparent 70%);

    filter:blur(30px);

}

/* línea artística */

.header-content::after{

    content:"";

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    height:3px;

    background:

    linear-gradient(90deg,

    transparent,

    #123E70,

    #4aa5ff,

    transparent);

    opacity:.4;

}

/*==================================================
LOGO
==================================================*/

.logo-wrapper{

    position:relative;

    z-index:2;

}

.logo{

    height:60px;

    transition:.45s;

}

.logo:hover{

    transform:scale(1.05) rotate(-2deg);

}

/*==================================================
MENU
==================================================*/

nav{

    z-index:2;

}

nav ul{

    display:flex;

    list-style:none;

    gap:40px;

    margin:0;

}

nav a{

    text-decoration:none;

    color:#24364d;

    font-weight:500;

    position:relative;

    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    width:0;

    height:4px;

    background:#123E70;

    border-radius:50px;

    transition:.35s;

    transform:translateX(-50%);

}

nav a:hover{

    color:#123E70;

}

nav a:hover::after{

    width:100%;

}

/*==================================================
BOTON
==================================================*/

.btn-contact{

    display:flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    padding:14px 28px;

    border-radius:50px;

    background:

    linear-gradient(135deg,

    #123E70,

    #2A6FB6);

    color:white;

    font-weight:600;

    transition:.35s;

    box-shadow:

    0 12px 30px rgba(18,62,112,.25);

    z-index:2;

}

.btn-contact:hover{

    transform:translateY(-4px);

    color:white;

    box-shadow:

    0 18px 40px rgba(18,62,112,.35);

}

.btn-contact i{

    transition:.3s;

}

.btn-contact:hover i{

    transform:translateX(4px);

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.header-content{

    flex-direction:column;

    gap:25px;

}

nav ul{

    gap:25px;

    flex-wrap:wrap;

    justify-content:center;

}

.logo{

    height:55px;

}

}

@media(max-width:576px){

nav ul{

    gap:18px;

}

.btn-contact{

    width:100%;

    justify-content:center;

}

}

/*======================================================
=                  HOME HERO ARTÍSTICO
======================================================*/

.home-hero {
    position: relative;

    min-height: calc(100vh - 80px);
    padding: 110px 0 95px;

    display: flex;
    align-items: center;

    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(201, 162, 77, .16),
            transparent 24%
        ),
        radial-gradient(
            circle at 90% 82%,
            rgba(15, 31, 82, .10),
            transparent 29%
        ),
        #fffdf8;
}

/* Textura del papel */

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    z-index: -4;

    opacity: .34;
    pointer-events: none;

    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 33px,
            rgba(15, 31, 82, .025) 34px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 33px,
            rgba(15, 31, 82, .018) 34px
        );
}

/* Mancha inferior */

.home-hero::after {
    content: "";
    position: absolute;

    width: 620px;
    height: 220px;

    left: -130px;
    bottom: -110px;

    z-index: -3;

    background: rgba(201, 162, 77, .13);

    transform: rotate(6deg);

    clip-path: polygon(
        0 40%,
        9% 17%,
        22% 34%,
        37% 9%,
        52% 30%,
        68% 12%,
        83% 37%,
        100% 18%,
        95% 74%,
        78% 61%,
        62% 85%,
        44% 67%,
        26% 91%,
        8% 70%
    );
}

.home-hero .container {
    position: relative;
    z-index: 3;
}

/*======================================================
=                    DISTRIBUCIÓN
======================================================*/

.home-hero-wrapper {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(430px, .92fr);

    gap: clamp(55px, 7vw, 115px);
    align-items: center;
}

/*======================================================
=                     CONTENIDO
======================================================*/

.home-hero-content {
    position: relative;
    z-index: 4;

    max-width: 760px;
}

.home-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 30px;

    color: #956d1c;

    font-size: .76rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.home-hero-tag::before {
    content: "";

    width: 46px;
    height: 4px;

    flex-shrink: 0;

    background: #c9a24d;
    border-radius: 999px;

    transform: rotate(-6deg);
}

.home-hero-content h1 {
    max-width: 760px;
    margin: 0 0 30px;

    color: #0f1f52;

    font-size: clamp(4rem, 7vw, 7rem);
    line-height: .88;
    font-weight: 900;
    letter-spacing: -5px;
}

.home-hero-content h1 span {
    position: relative;
    display: inline-block;

    color: #c9a24d;

    transform: rotate(-1deg);
}

.home-hero-content h1 span::before {
    content: "";
    position: absolute;

    left: -2%;
    right: -2%;
    bottom: 1px;

    height: 25px;

    z-index: -1;

    background: rgba(227, 193, 109, .28);

    transform: rotate(-2deg);

    clip-path: polygon(
        0 40%,
        8% 18%,
        19% 38%,
        33% 10%,
        47% 34%,
        62% 13%,
        78% 39%,
        100% 18%,
        96% 75%,
        80% 59%,
        65% 84%,
        48% 63%,
        30% 82%,
        11% 62%
    );
}

.home-hero-content > p {
    max-width: 670px;
    margin: 0;

    color: #5c6372;

    font-size: 1.08rem;
    line-height: 1.9;
}

/*======================================================
=                      BOTONES
======================================================*/

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 42px;
}

.home-hero-btn {
    min-height: 60px;
    padding: 0 31px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    text-decoration: none;

    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .7px;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background-color .35s ease,
        color .35s ease;
}

.home-hero-btn i {
    font-size: 1rem;

    transition: transform .35s ease;
}

.home-hero-btn-primary {
    color: #fff;
    background: #0f1f52;

    clip-path: polygon(
        3% 5%,
        98% 0,
        100% 86%,
        91% 100%,
        0 95%
    );

    box-shadow:
        10px 11px 0 rgba(201, 162, 77, .30);
}

.home-hero-btn-primary:hover {
    color: #fff;

    transform: translateY(-6px) rotate(-1deg);

    box-shadow:
        15px 16px 0 rgba(201, 162, 77, .35);
}

.home-hero-btn-primary:hover i {
    transform: translate(3px, -3px);
}

.home-hero-btn-secondary {
    position: relative;

    color: #0f1f52;

    border: 1px solid rgba(15, 31, 82, .20);
    background: rgba(255, 255, 255, .55);

    backdrop-filter: blur(8px);

    transform: rotate(1deg);
}

.home-hero-btn-secondary::after {
    content: "";
    position: absolute;

    left: 10%;
    right: 10%;
    bottom: 10px;

    height: 2px;

    background: #c9a24d;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .35s ease;
}

.home-hero-btn-secondary:hover {
    color: #0f1f52;
    background: #fff;

    transform: translateY(-6px) rotate(0deg);
}

.home-hero-btn-secondary:hover::after {
    transform: scaleX(1);
}

.home-hero-btn-secondary:hover i {
    transform: translateY(4px);
}

/* Nota inferior */

.home-hero-note {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 43px;

    color: rgba(15, 31, 82, .60);

    font-family: cursive;
    font-size: .98rem;

    transform: rotate(-2deg);
}

.home-hero-note-line {
    width: 75px;
    height: 22px;

    border-top: 3px solid rgba(201, 162, 77, .55);
    border-radius: 50%;

    transform: rotate(6deg);
}

/*======================================================
=                   COMPOSICIÓN VISUAL
======================================================*/

.home-hero-visual {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tarjeta principal */

.home-hero-visual-card {
    position: relative;

    width: min(100%, 500px);
    min-height: 500px;

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

    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(255, 255, 255, .13),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #0f1f52,
            #244b9a
        );

    clip-path: polygon(
        5% 2%,
        96% 0,
        100% 88%,
        91% 100%,
        1% 95%,
        0 12%
    );

    transform: rotate(3deg);

    box-shadow:
        26px 28px 0 rgba(201, 162, 77, .24),
        0 35px 70px rgba(15, 31, 82, .24);

    transition:
        transform .5s cubic-bezier(.2, .8, .2, 1),
        box-shadow .5s ease;
}

.home-hero-visual-card::before {
    content: "";
    position: absolute;

    width: 390px;
    height: 390px;

    right: -140px;
    bottom: -145px;

    z-index: -1;

    border: 4px solid rgba(255, 255, 255, .08);

    border-radius:
        41% 59% 64% 36% /
        44% 38% 62% 56%;

    transform: rotate(12deg);
}

.home-hero-visual-card::after {
    content: "";
    position: absolute;

    width: 280px;
    height: 110px;

    left: -50px;
    top: 55px;

    z-index: -1;

    background: rgba(227, 193, 109, .18);

    transform: rotate(-13deg);

    clip-path: polygon(
        0 36%,
        12% 13%,
        29% 28%,
        43% 6%,
        62% 25%,
        80% 9%,
        100% 34%,
        94% 73%,
        76% 61%,
        54% 84%,
        31% 65%,
        7% 82%
    );
}

.home-hero-visual:hover .home-hero-visual-card {
    transform: rotate(0deg) translateY(-8px);

    box-shadow:
        32px 34px 0 rgba(201, 162, 77, .28),
        0 45px 85px rgba(15, 31, 82, .29);
}

/* Cinta */

.home-hero-tape {
    position: absolute;

    width: 155px;
    height: 42px;

    top: 13px;
    left: 50%;

    z-index: 8;

    background: rgba(255, 255, 255, .76);

    transform: translateX(-50%) rotate(-6deg);

    box-shadow:
        0 5px 15px rgba(15, 31, 82, .12);
}

/* Logo */

.home-hero-logo-wrapper {
    position: relative;
    z-index: 3;

    width: 300px;
    height: 300px;

    display: grid;
    place-items: center;
}

.home-hero-logo-shape {
    position: absolute;
    inset: 0;

    background: #e3c16d;

    border-radius:
        44% 56% 63% 37% /
        39% 48% 52% 61%;

    transform: rotate(-8deg);

    box-shadow:
        20px 22px 0 rgba(255, 255, 255, .10);

    animation: home-hero-shape 7s ease-in-out infinite;
}

.home-hero-logo {
    position: relative;
    z-index: 2;

    width: 78%;
    max-height: 220px;

    object-fit: contain;

    filter:
        drop-shadow(0 15px 18px rgba(15, 31, 82, .18));

    transform: rotate(-3deg);
}

.home-hero-card-word {
    position: absolute;

    left: -25px;
    bottom: 60px;

    color: rgba(255, 255, 255, .07);

    font-size: clamp(7rem, 12vw, 10rem);
    line-height: .8;
    font-weight: 900;

    transform: rotate(-11deg);
}

.home-hero-card-label {
    position: absolute;

    right: 25px;
    bottom: 27px;

    max-width: 190px;

    color: rgba(255, 255, 255, .70);

    font-family: cursive;
    font-size: .96rem;
    line-height: 1.4;
    text-align: right;

    transform: rotate(-7deg);
}

/* Estrellas */

.home-hero-star {
    position: absolute;

    color: #e3c16d;

    line-height: 1;

    animation: home-hero-star 4s ease-in-out infinite;
}

.home-hero-star-one {
    top: 100px;
    right: 43px;

    font-size: 2.2rem;
}

.home-hero-star-two {
    left: 42px;
    bottom: 145px;

    font-size: 1.25rem;

    animation-delay: 1.2s;
}

/* Línea dibujada */

.home-hero-line-doodle {
    position: absolute;

    width: 135px;
    height: 65px;

    right: 32px;
    top: 160px;

    border-top: 4px solid rgba(255, 255, 255, .22);
    border-radius: 50%;

    transform: rotate(-18deg);
}

/* Tarjeta pequeña superpuesta */

.home-hero-small-card {
    position: absolute;

    left: -32px;
    bottom: 24px;

    z-index: 7;

    width: 205px;
    min-height: 118px;
    padding: 23px;

    display: flex;
    align-items: center;
    gap: 15px;

    color: #0f1f52;
    background: #f4dfa0;

    clip-path: polygon(
        4% 2%,
        97% 0,
        100% 88%,
        90% 100%,
        0 94%
    );

    transform: rotate(-5deg);

    box-shadow:
        12px 14px 0 rgba(15, 31, 82, .10),
        0 20px 40px rgba(15, 31, 82, .13);

    transition: transform .35s ease;
}

.home-hero-small-card i {
    flex-shrink: 0;

    font-size: 2rem;
}

.home-hero-small-card span {
    font-size: .85rem;
    line-height: 1.4;
    font-weight: 800;
}

.home-hero-visual:hover .home-hero-small-card {
    transform: rotate(-2deg) translateY(-6px);
}

/* Flecha dibujada */

.home-hero-arrow-doodle {
    position: absolute;

    width: 82px;
    height: 70px;

    right: -23px;
    bottom: 48px;

    border-top: 4px solid rgba(15, 31, 82, .32);
    border-radius: 50%;

    transform: rotate(32deg);
}

.home-hero-arrow-doodle::before,
.home-hero-arrow-doodle::after {
    content: "";
    position: absolute;

    width: 17px;
    height: 4px;

    right: -2px;

    background: rgba(15, 31, 82, .32);
    border-radius: 999px;
}

.home-hero-arrow-doodle::before {
    top: 4px;

    transform: rotate(-35deg);
}

.home-hero-arrow-doodle::after {
    top: 17px;

    transform: rotate(35deg);
}

/*======================================================
=                ELEMENTOS DE FONDO
======================================================*/

.home-hero-background {
    position: absolute;
    inset: 0;

    z-index: -2;
    pointer-events: none;
}

.home-hero-paper {
    position: absolute;

    background: rgba(255, 255, 255, .74);

    box-shadow:
        0 15px 40px rgba(15, 31, 82, .05);
}

.home-hero-paper-one {
    width: 290px;
    height: 170px;

    top: 80px;
    left: -85px;

    transform: rotate(-14deg);

    clip-path: polygon(
        4% 5%,
        95% 0,
        100% 91%,
        88% 100%,
        0 94%
    );
}

.home-hero-paper-two {
    width: 260px;
    height: 150px;

    right: -80px;
    bottom: 65px;

    transform: rotate(13deg);

    clip-path: polygon(
        3% 0,
        98% 5%,
        93% 100%,
        0 93%
    );
}

.home-hero-stroke {
    position: absolute;

    background: rgba(201, 162, 77, .24);
}

.home-hero-stroke-one {
    width: 260px;
    height: 80px;

    top: 120px;
    left: 29%;

    transform: rotate(-8deg);

    clip-path: polygon(
        0 39%,
        12% 15%,
        29% 31%,
        44% 9%,
        61% 27%,
        79% 12%,
        100% 40%,
        94% 75%,
        72% 61%,
        51% 84%,
        28% 63%,
        7% 80%
    );
}

.home-hero-stroke-two {
    width: 220px;
    height: 70px;

    right: 5%;
    top: 70px;

    background: rgba(15, 31, 82, .08);

    transform: rotate(15deg);

    clip-path: polygon(
        0 35%,
        15% 12%,
        33% 28%,
        51% 6%,
        69% 29%,
        87% 10%,
        100% 39%,
        92% 77%,
        67% 62%,
        45% 86%,
        22% 64%
    );
}

.home-hero-doodle {
    position: absolute;
}

.home-hero-doodle-one {
    width: 110px;
    height: 110px;

    left: 4%;
    bottom: 90px;

    border: 4px solid rgba(201, 162, 77, .34);

    border-radius:
        42% 58% 61% 39% /
        48% 40% 60% 52%;

    transform: rotate(17deg);

    animation: home-hero-float 7s ease-in-out infinite;
}

.home-hero-doodle-two {
    width: 145px;
    height: 70px;

    right: 3%;
    top: 170px;

    border-top: 4px solid rgba(15, 31, 82, .18);
    border-radius: 50%;

    transform: rotate(-17deg);

    animation: home-hero-float 8s ease-in-out infinite reverse;
}

/*======================================================
=                       SCROLL
======================================================*/

.home-hero-scroll {
    position: absolute;

    left: 50%;
    bottom: 25px;

    z-index: 6;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;

    color: rgba(15, 31, 82, .53);

    text-decoration: none;

    transform: translateX(-50%);

    transition: color .3s ease;
}

.home-hero-scroll span {
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-hero-scroll i {
    font-size: 1rem;

    animation: home-hero-scroll 1.8s ease-in-out infinite;
}

.home-hero-scroll:hover {
    color: #c9a24d;
}

/*======================================================
=                    ANIMACIONES
======================================================*/

@keyframes home-hero-shape {
    0%,
    100% {
        border-radius:
            44% 56% 63% 37% /
            39% 48% 52% 61%;

        transform: rotate(-8deg) scale(1);
    }

    50% {
        border-radius:
            57% 43% 38% 62% /
            52% 39% 61% 48%;

        transform: rotate(-3deg) scale(1.03);
    }
}

@keyframes home-hero-star {
    0%,
    100% {
        opacity: .65;
        transform: rotate(0deg) scale(1);
    }

    50% {
        opacity: 1;
        transform: rotate(35deg) scale(1.18);
    }
}

@keyframes home-hero-float {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -13px;
    }
}

@keyframes home-hero-scroll {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/*======================================================
=                    RESPONSIVE
======================================================*/

@media (max-width: 1200px) {
    .home-hero-wrapper {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(390px, .85fr);

        gap: 60px;
    }

    .home-hero-content h1 {
        letter-spacing: -4px;
    }

    .home-hero-visual-card {
        min-height: 470px;
    }

    .home-hero-logo-wrapper {
        width: 270px;
        height: 270px;
    }
}

@media (max-width: 992px) {
    .home-hero {
        min-height: auto;
        padding: 105px 0 125px;
    }

    .home-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 85px;
    }

    .home-hero-content {
        max-width: 800px;
        margin: 0 auto;

        text-align: center;
    }

    .home-hero-tag,
    .home-hero-actions,
    .home-hero-note {
        justify-content: center;
    }

    .home-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-visual {
        width: min(100%, 590px);
        min-height: 550px;
        margin: 0 auto;
    }

    .home-hero-visual-card {
        width: min(100%, 500px);
    }

    .home-hero-small-card {
        left: 0;
    }

    .home-hero-arrow-doodle {
        right: 0;
    }
}

@media (max-width: 576px) {
    .home-hero {
        padding: 82px 0 105px;
    }

    .home-hero-wrapper {
        gap: 65px;
    }

    .home-hero-tag {
        gap: 10px;

        font-size: .66rem;
        letter-spacing: 2px;
    }

    .home-hero-tag::before {
        width: 30px;
    }

    .home-hero-content h1 {
        font-size: clamp(3.4rem, 16vw, 4.7rem);
        line-height: .91;
        letter-spacing: -2.5px;
    }

    .home-hero-content > p {
        font-size: 1rem;
        line-height: 1.78;
    }

    .home-hero-actions {
        flex-direction: column;
    }

    .home-hero-btn {
        width: 100%;
        padding: 0 20px;
    }

    .home-hero-note {
        align-items: flex-start;

        font-size: .88rem;
        text-align: left;
    }

    .home-hero-note-line {
        width: 45px;
        flex-shrink: 0;
    }

    .home-hero-visual {
        min-height: 460px;
    }

    .home-hero-visual-card {
        min-height: 410px;
    }

    .home-hero-logo-wrapper {
        width: 225px;
        height: 225px;
    }

    .home-hero-card-word {
        font-size: 6rem;
    }

    .home-hero-card-label {
        right: 20px;
        bottom: 22px;

        max-width: 150px;

        font-size: .81rem;
    }

    .home-hero-small-card {
        width: 175px;
        min-height: 100px;

        left: -4px;
        bottom: -20px;

        padding: 18px;
    }

    .home-hero-small-card i {
        font-size: 1.6rem;
    }

    .home-hero-small-card span {
        font-size: .74rem;
    }

    .home-hero-tape {
        width: 120px;
        height: 35px;
    }

    .home-hero-arrow-doodle {
        display: none;
    }

    .home-hero-scroll {
        bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-logo-shape,
    .home-hero-star,
    .home-hero-doodle,
    .home-hero-scroll i {
        animation: none;
    }
}

/*======================================================
=              FLYERS DESTACADOS DEL HOME
======================================================*/

.featured-flyers {
    position: relative;

    padding: 125px 0 140px;

    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 9% 15%,
            rgba(201, 162, 77, .14),
            transparent 24%
        ),
        radial-gradient(
            circle at 91% 82%,
            rgba(15, 31, 82, .09),
            transparent 27%
        ),
        #fffdf8;
}

/* Textura ligera de papel */

.featured-flyers::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -4;

    opacity: .3;
    pointer-events: none;

    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 33px,
            rgba(15, 31, 82, .024) 34px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 33px,
            rgba(15, 31, 82, .017) 34px
        );
}

/* Mancha artística inferior */

.featured-flyers::after {
    content: "";

    position: absolute;

    width: 580px;
    height: 190px;

    right: -135px;
    bottom: -90px;

    z-index: -3;

    background: rgba(201, 162, 77, .12);

    transform: rotate(-7deg);

    clip-path: polygon(
        0 40%,
        9% 17%,
        22% 34%,
        37% 9%,
        52% 30%,
        68% 12%,
        83% 37%,
        100% 18%,
        95% 74%,
        78% 61%,
        62% 85%,
        44% 67%,
        26% 91%,
        8% 70%
    );
}

.featured-flyers .container {
    position: relative;
    z-index: 3;

    max-width: 1500px;
}

/*======================================================
=                    ENCABEZADO
======================================================*/

.featured-flyers-heading {
    position: relative;

    max-width: 900px;

    margin: 0 auto 65px;

    text-align: center;
}

.featured-flyers-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 27px;

    color: #956d1c;

    font-size: .76rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.featured-flyers-eyebrow::before,
.featured-flyers-eyebrow::after {
    content: "";

    width: 42px;
    height: 4px;

    flex-shrink: 0;

    background: #c9a24d;
    border-radius: 999px;
}

.featured-flyers-eyebrow::before {
    transform: rotate(-6deg);
}

.featured-flyers-eyebrow::after {
    transform: rotate(6deg);
}

.featured-flyers-heading h2 {
    margin: 0 0 24px;

    color: #0f1f52;

    font-size: clamp(3.2rem, 6vw, 5.7rem);
    line-height: .94;
    font-weight: 900;
    letter-spacing: -4px;
}

.featured-flyers-heading h2 strong {
    position: relative;

    display: inline-block;

    color: #c9a24d;
    font-weight: 900;
}

.featured-flyers-heading h2 strong::after {
    content: "";

    position: absolute;

    left: -2%;
    right: -2%;
    bottom: -8px;

    height: 20px;

    z-index: -1;

    background: rgba(227, 193, 109, .28);

    transform: rotate(-2deg);

    clip-path: polygon(
        0 42%,
        11% 17%,
        25% 36%,
        40% 10%,
        57% 35%,
        74% 13%,
        89% 38%,
        100% 20%,
        96% 73%,
        80% 61%,
        63% 84%,
        46% 63%,
        27% 80%,
        8% 61%
    );
}

.featured-flyers-heading p {
    max-width: 660px;

    margin: 0 auto;

    color: #5c6372;

    font-size: 1.06rem;
    line-height: 1.85;
}

/*======================================================
=                CONTENEDOR DEL CARRUSEL
======================================================*/

.featured-flyers-showcase {
    position: relative;

    display: grid;

    grid-template-columns:
        80px
        minmax(0, 1fr)
        80px;

    gap: 35px;

    align-items: center;

    width: 100%;
    max-width: 1450px;

    margin: 0 auto;
}

/*
 * Este contenedor solamente sirve para posicionar
 * Swiper. No tiene fondo, tarjeta ni clip-path.
 */

.featured-flyers-carousel {
    position: relative;

    width: 100%;
    min-width: 0;

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

    overflow: visible;
}

/*======================================================
=                       SWIPER
======================================================*/

.featured-flyers-carousel .flyersSwiper {
    width: 100%;
    max-width: 1150px;

    padding:
        38px
        55px
        70px;

    overflow: hidden;
}

.featured-flyers-carousel .swiper-wrapper {
    align-items: center;
}

.featured-flyers-carousel .swiper-slide {
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Evita que slides inactivos compitan visualmente */

.featured-flyers-carousel .swiper-slide:not(.swiper-slide-active) {
    opacity: .45;

    transition: opacity .5s ease;
}

.featured-flyers-carousel .swiper-slide-active {
    opacity: 1;
}

/*======================================================
=                  FLYER PROTAGONISTA
======================================================*/

.featured-flyer {
    position: relative;

    width: 100%;
    max-width: 1000px;

    margin: 0 auto;
    padding: 12px;

    background: #fff;

    clip-path: polygon(
        1% 1%,
        99% 0,
        100% 97.5%,
        96% 100%,
        0 98.5%,
        .5% 6%
    );

    transform:
        rotate(-1.2deg)
        scale(.975);

    box-shadow:
        23px 26px 0 rgba(201, 162, 77, .24),
        0 38px 80px rgba(15, 31, 82, .22);

    transition:
        transform .65s cubic-bezier(.2, .8, .2, 1),
        box-shadow .65s ease;
}

/* Cinta sobre la imagen */

.featured-flyer::before {
    content: "";

    position: absolute;

    width: 155px;
    height: 41px;

    top: -13px;
    left: 50%;

    z-index: 5;

    background: rgba(239, 228, 194, .9);

    transform:
        translateX(-50%)
        rotate(-5deg);

    box-shadow:
        0 5px 13px rgba(15, 31, 82, .12);

    pointer-events: none;
}

/* Imagen sin límite de altura */

.featured-flyer img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;

    background: #fff;
}

/* Slide activo */

.featured-flyers-carousel
.swiper-slide-active
.featured-flyer {
    transform:
        rotate(0deg)
        scale(1);

    box-shadow:
        29px 32px 0 rgba(201, 162, 77, .29),
        0 48px 95px rgba(15, 31, 82, .28);
}

/* Hover únicamente sobre el flyer activo */

.featured-flyers-carousel
.swiper-slide-active
.featured-flyer:hover {
    transform:
        rotate(0deg)
        scale(1.012);

    box-shadow:
        32px 35px 0 rgba(201, 162, 77, .31),
        0 55px 105px rgba(15, 31, 82, .30);
}

/*======================================================
=                CINTA EXTERIOR OPCIONAL
======================================================*/

.featured-flyers-tape {
    position: absolute;

    width: 140px;
    height: 39px;

    top: 18px;
    right: 5%;

    z-index: 8;

    background: rgba(255, 255, 255, .72);

    transform: rotate(9deg);

    box-shadow:
        0 5px 14px rgba(15, 31, 82, .11);

    pointer-events: none;
}

/*======================================================
=                      FLECHAS
======================================================*/

.featured-flyers-arrow {
    position: relative;
    z-index: 10;

    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;
    outline: none;

    cursor: pointer;

    font-size: 1.35rem;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background-color .35s ease,
        color .35s ease;
}

.featured-flyers-arrow i {
    line-height: 1;

    transition: transform .35s ease;
}

.featured-flyers-arrow-prev {
    color: #0f1f52;
    background: #f3dda0;

    clip-path: polygon(
        5% 4%,
        96% 0,
        100% 88%,
        90% 100%,
        0 94%
    );

    transform: rotate(-5deg);

    box-shadow:
        8px 9px 0 rgba(15, 31, 82, .11);
}

.featured-flyers-arrow-next {
    color: #fff;
    background: #0f1f52;

    clip-path: polygon(
        3% 0,
        98% 5%,
        94% 100%,
        0 93%
    );

    transform: rotate(5deg);

    box-shadow:
        8px 9px 0 rgba(201, 162, 77, .30);
}

.featured-flyers-arrow:hover {
    transform:
        translateY(-6px)
        rotate(0deg);
}

.featured-flyers-arrow-prev:hover {
    color: #0f1f52;
    background: #e3c16d;

    box-shadow:
        12px 13px 0 rgba(15, 31, 82, .13);
}

.featured-flyers-arrow-next:hover {
    color: #fff;
    background: #244b9a;

    box-shadow:
        12px 13px 0 rgba(201, 162, 77, .34);
}

.featured-flyers-arrow-prev:hover i {
    transform: translateX(-4px);
}

.featured-flyers-arrow-next:hover i {
    transform: translateX(4px);
}

.featured-flyers-arrow:focus-visible {
    outline: 3px solid rgba(201, 162, 77, .55);
    outline-offset: 5px;
}

/*======================================================
=                  PIE DE LA SECCIÓN
======================================================*/

.featured-flyers-footer {
    max-width: 1120px;

    margin: 36px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    color: rgba(15, 31, 82, .62);

    font-family: cursive;
    font-size: .96rem;
}

.featured-flyers-footer-line {
    width: 75px;
    height: 22px;

    flex-shrink: 0;

    border-top: 3px solid rgba(201, 162, 77, .55);
    border-radius: 50%;

    transform: rotate(7deg);
}

/*======================================================
=                     PAGINACIÓN
======================================================*/

.featured-flyers-pagination {
    position: static !important;

    width: auto !important;

    margin-left: 15px;
}

.featured-flyers-pagination
.swiper-pagination-bullet {
    width: 9px;
    height: 9px;

    margin: 0 5px !important;

    opacity: .28;

    background: #0f1f52;

    transition:
        width .3s ease,
        opacity .3s ease,
        background-color .3s ease;
}

.featured-flyers-pagination
.swiper-pagination-bullet-active {
    width: 31px;

    opacity: 1;

    border-radius: 999px;

    background: #c9a24d;
}

/*======================================================
=               DECORACIONES DE FONDO
======================================================*/

.featured-flyers-decoration {
    position: absolute;
    inset: 0;

    z-index: -2;

    pointer-events: none;
}

.featured-flyers-stroke {
    position: absolute;

    background: rgba(201, 162, 77, .22);
}

.featured-flyers-stroke-one {
    width: 280px;
    height: 90px;

    top: 105px;
    left: -55px;

    transform: rotate(-10deg);

    clip-path: polygon(
        0 39%,
        12% 15%,
        29% 31%,
        44% 9%,
        61% 27%,
        79% 12%,
        100% 40%,
        94% 75%,
        72% 61%,
        51% 84%,
        28% 63%,
        7% 80%
    );
}

.featured-flyers-stroke-two {
    width: 250px;
    height: 80px;

    right: -55px;
    bottom: 95px;

    background: rgba(15, 31, 82, .08);

    transform: rotate(13deg);

    clip-path: polygon(
        0 35%,
        15% 12%,
        33% 28%,
        51% 6%,
        69% 29%,
        87% 10%,
        100% 39%,
        92% 77%,
        67% 62%,
        45% 86%,
        22% 64%
    );
}

.featured-flyers-doodle {
    position: absolute;
}

.featured-flyers-doodle-one {
    width: 105px;
    height: 105px;

    left: 3%;
    bottom: 100px;

    border: 4px solid rgba(201, 162, 77, .34);

    border-radius:
        42% 58% 61% 39% /
        48% 40% 60% 52%;

    transform: rotate(18deg);

    animation:
        featured-flyers-float
        7s
        ease-in-out
        infinite;
}

.featured-flyers-doodle-two {
    width: 145px;
    height: 70px;

    right: 3%;
    top: 190px;

    border-top: 4px solid rgba(15, 31, 82, .18);
    border-radius: 50%;

    transform: rotate(-17deg);

    animation:
        featured-flyers-float
        8s
        ease-in-out
        infinite reverse;
}

/*======================================================
=                     ANIMACIONES
======================================================*/

@keyframes featured-flyers-float {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -13px;
    }
}

/*======================================================
=                 RESPONSIVE: LAPTOP
======================================================*/

@media (max-width: 1200px) {

    .featured-flyers-showcase {
        grid-template-columns:
            68px
            minmax(0, 1fr)
            68px;

        gap: 24px;

        max-width: 1180px;
    }

    .featured-flyers-carousel .flyersSwiper {
        max-width: 900px;

        padding:
            35px
            38px
            65px;
    }

    .featured-flyer {
        max-width: 800px;
    }

    .featured-flyers-arrow {
        width: 64px;
        height: 64px;
    }
}

/*======================================================
=                 RESPONSIVE: TABLET
======================================================*/

@media (max-width: 992px) {

    .featured-flyers {
        padding: 105px 0 120px;
    }

    .featured-flyers-heading {
        margin-bottom: 58px;
    }

    .featured-flyers-showcase {
        display: block;

        max-width: 850px;

        padding-bottom: 95px;
    }

    .featured-flyers-carousel .flyersSwiper {
        max-width: 800px;

        padding:
            30px
            35px
            65px;
    }

    .featured-flyer {
        max-width: 720px;
    }

    .featured-flyers-arrow {
        position: absolute;

        bottom: 0;

        z-index: 10;
    }

    .featured-flyers-arrow-prev {
        left: calc(50% - 78px);
    }

    .featured-flyers-arrow-next {
        right: calc(50% - 78px);
    }

    .featured-flyers-footer {
        margin-top: 28px;
    }
}

/*======================================================
=                 RESPONSIVE: MÓVIL
======================================================*/

@media (max-width: 576px) {

    .featured-flyers {
        padding: 82px 0 95px;
    }

    .featured-flyers-heading {
        margin-bottom: 42px;
    }

    .featured-flyers-eyebrow {
        gap: 9px;

        font-size: .64rem;
        letter-spacing: 1.8px;
    }

    .featured-flyers-eyebrow::before,
    .featured-flyers-eyebrow::after {
        width: 25px;
    }

    .featured-flyers-heading h2 {
        font-size: clamp(3rem, 15vw, 4.2rem);
        line-height: .94;
        letter-spacing: -2.2px;
    }

    .featured-flyers-heading p {
        font-size: 1rem;
        line-height: 1.78;
    }

    .featured-flyers-showcase {
        padding-bottom: 82px;
    }

    .featured-flyers-carousel .flyersSwiper {
        padding:
            22px
            18px
            50px;
    }

    .featured-flyer {
        width: 100%;
        max-width: 100%;

        padding: 7px;

        transform:
            rotate(-.8deg)
            scale(.985);

        box-shadow:
            12px 14px 0 rgba(201, 162, 77, .24),
            0 25px 55px rgba(15, 31, 82, .20);
    }

    .featured-flyer::before {
        width: 105px;
        height: 30px;

        top: -10px;
    }

    .featured-flyers-carousel
    .swiper-slide-active
    .featured-flyer {
        transform:
            rotate(0deg)
            scale(1);

        box-shadow:
            15px 17px 0 rgba(201, 162, 77, .27),
            0 30px 65px rgba(15, 31, 82, .24);
    }

    .featured-flyers-carousel
    .swiper-slide-active
    .featured-flyer:hover {
        transform:
            rotate(0deg)
            scale(1);
    }

    .featured-flyers-tape {
        display: none;
    }

    .featured-flyers-arrow {
        width: 56px;
        height: 56px;

        font-size: 1.1rem;
    }

    .featured-flyers-arrow-prev {
        left: calc(50% - 68px);
    }

    .featured-flyers-arrow-next {
        right: calc(50% - 68px);
    }

    .featured-flyers-footer {
        flex-wrap: wrap;

        margin-top: 25px;

        font-size: .84rem;
        text-align: center;
    }

    .featured-flyers-footer-line {
        width: 45px;
    }

    .featured-flyers-pagination {
        width: 100% !important;

        margin-top: 7px;
        margin-left: 0;
    }
}

/*======================================================
=                 REDUCIR ANIMACIONES
======================================================*/

@media (prefers-reduced-motion: reduce) {

    .featured-flyers-doodle {
        animation: none;
    }

    .featured-flyer,
    .featured-flyers-arrow,
    .featured-flyers-arrow i {
        transition: none;
    }
}

/*======================================================
=               SERVICIOS ARTÍSTICOS HOME
======================================================*/

.art-services {
    position: relative;

    padding: 95px 0 105px;

    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 9% 18%,
            rgba(201, 162, 77, .14),
            transparent 24%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(15, 31, 82, .09),
            transparent 28%
        ),
        #fffdf8;
}

/* Textura tipo papel */

.art-services::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -4;

    opacity: .3;
    pointer-events: none;

    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 33px,
            rgba(15, 31, 82, .024) 34px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 33px,
            rgba(15, 31, 82, .017) 34px
        );
}

/* Mancha inferior */

.art-services::after {
    content: "";

    position: absolute;

    width: 610px;
    height: 200px;

    left: -145px;
    bottom: -95px;

    z-index: -3;

    background: rgba(201, 162, 77, .12);

    transform: rotate(7deg);

    clip-path: polygon(
        0 40%,
        9% 17%,
        22% 34%,
        37% 9%,
        52% 30%,
        68% 12%,
        83% 37%,
        100% 18%,
        95% 74%,
        78% 61%,
        62% 85%,
        44% 67%,
        26% 91%,
        8% 70%
    );
}

.art-services .container {
    position: relative;
    z-index: 3;

    max-width: 1380px;
}

/*======================================================
=                    ENCABEZADO
======================================================*/

.art-services-heading {
    max-width: 850px;

    margin: 0 auto 78px;

    text-align: center;
}

.art-services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 27px;

    color: #956d1c;

    font-size: .76rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.art-services-eyebrow::before,
.art-services-eyebrow::after {
    content: "";

    width: 42px;
    height: 4px;

    flex-shrink: 0;

    background: #c9a24d;
    border-radius: 999px;
}

.art-services-eyebrow::before {
    transform: rotate(-6deg);
}

.art-services-eyebrow::after {
    transform: rotate(6deg);
}

.art-services-heading h2 {
    margin: 0 0 25px;

    color: #0f1f52;

    font-size: clamp(3.2rem, 5.8vw, 5.8rem);
    line-height: .94;
    font-weight: 900;
    letter-spacing: -4px;
}

.art-services-heading h2 strong {
    position: relative;

    display: inline-block;

    color: #c9a24d;
    font-weight: 900;
}

.art-services-heading h2 strong::after {
    content: "";

    position: absolute;

    left: -2%;
    right: -2%;
    bottom: -7px;

    height: 21px;

    z-index: -1;

    background: rgba(227, 193, 109, .28);

    transform: rotate(-2deg);

    clip-path: polygon(
        0 42%,
        11% 17%,
        25% 36%,
        40% 10%,
        57% 35%,
        74% 13%,
        89% 38%,
        100% 20%,
        96% 73%,
        80% 61%,
        63% 84%,
        46% 63%,
        27% 80%,
        8% 61%
    );
}

.art-services-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: #5c6372;

    font-size: 1.08rem;
    line-height: 1.9;
}

/*======================================================
=                   GRID DE SERVICIOS
======================================================*/

.art-services-grid {
    display: grid;

    grid-template-columns:repeat(6,minmax(0,1fr));

    gap: 28px;

    align-items: stretch;
}

/*======================================================
=                  TARJETA GENERAL
======================================================*/

.art-service-card {
    position: relative;

    grid-column: span 2;

    min-height: 365px;

    padding: 42px 34px 36px;

    display: flex;
    flex-direction: column;

    overflow: hidden;
    isolation: isolate;

    text-decoration: none;

    transform: rotate(-1deg);

    transition:
        transform .45s cubic-bezier(.2, .8, .2, 1),
        box-shadow .45s ease,
        border-color .45s ease;
}

.art-service-card:nth-child(even) {
    transform: rotate(1deg);
}

/* Variación azul */

.art-service-card-blue {
    color: #fff;

    background:
        radial-gradient(
            circle at 82% 14%,
            rgba(255, 255, 255, .13),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #0f1f52,
            #244b9a
        );

    clip-path: polygon(
        3% 2%,
        97% 0,
        100% 89%,
        91% 100%,
        1% 96%,
        0 11%
    );

    box-shadow:
        18px 20px 0 rgba(201, 162, 77, .22),
        0 30px 60px rgba(15, 31, 82, .20);
}

/* Variación dorada */

.art-service-card-gold {
    color: #0f1f52;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(255, 255, 255, .28),
            transparent 28%
        ),
        #f2dda0;

    clip-path: polygon(
        2% 4%,
        96% 0,
        100% 91%,
        91% 100%,
        0 95%
    );

    box-shadow:
        17px 19px 0 rgba(15, 31, 82, .10),
        0 28px 55px rgba(15, 31, 82, .10);
}

/* Variación papel */

.art-service-card-paper {
    color: #0f1f52;

    border: 1px solid rgba(15, 31, 82, .14);

    background:
        linear-gradient(
            rgba(255, 255, 255, .75),
            rgba(255, 255, 255, .75)
        ),
        #fffdf8;

    clip-path: polygon(
        2% 1%,
        98% 0,
        100% 96%,
        94% 100%,
        0 98%,
        1% 8%
    );

    box-shadow:
        15px 17px 0 rgba(201, 162, 77, .16),
        0 25px 50px rgba(15, 31, 82, .09);
}

/* Variación contorno */

.art-service-card-outline {
    color: #0f1f52;

    border: 2px solid rgba(15, 31, 82, .20);

    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(201, 162, 77, .18),
            transparent 27%
        ),
        rgba(255, 253, 248, .80);

    clip-path: polygon(
        3% 0,
        98% 4%,
        94% 100%,
        0 94%
    );

    box-shadow:
        18px 20px 0 rgba(15, 31, 82, .08),
        0 28px 55px rgba(15, 31, 82, .10);
}

/* Serigrafía */

.art-service-card:nth-child(1){
    grid-column:span 3;
}

/* Regalos */

.art-service-card:nth-child(2){
    grid-column:span 3;
}

/* Material */

.art-service-card:nth-child(3){
    grid-column:span 2;
}

/* Uniformes */

.art-service-card:nth-child(4){
    grid-column:span 2;
}

/* Utilería */

.art-service-card:nth-child(5){
    grid-column:span 2;
}

/*======================================================
=               CONTENIDO DE LA TARJETA
======================================================*/

.art-service-number {
    position: absolute;

    right: 24px;
    top: 18px;

    color: rgba(15, 31, 82, .12);

    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
}

.art-service-card-blue .art-service-number {
    color: rgba(255, 255, 255, .10);
}

.art-service-icon {
    width: 76px;
    height: 76px;

    margin-bottom: auto;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    font-size: 2rem;

    color: #0f1f52;
    background: #f2dda0;

    border-radius:
        42% 58% 63% 37% /
        47% 39% 61% 53%;

    transform: rotate(-5deg);

    box-shadow:
        8px 9px 0 rgba(15, 31, 82, .10);

    transition:
        transform .4s ease,
        border-radius .4s ease;
}

.art-service-card-gold .art-service-icon {
    background: #fffdf8;
}

.art-service-card-paper .art-service-icon,
.art-service-card-outline .art-service-icon {
    color: #fff;
    background: #0f1f52;

    box-shadow:
        8px 9px 0 rgba(201, 162, 77, .23);
}

.art-service-content {
    position: relative;
    z-index: 3;

    margin-top: 42px;
}

.art-service-category {
    display: block;

    margin-bottom: 13px;

    color: rgba(15, 31, 82, .54);

    font-size: .64rem;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.art-service-card-blue .art-service-category {
    color: rgba(255, 255, 255, .58);
}

.art-service-content h3 {
    margin: 0 0 16px;

    color: inherit;

    font-size: clamp(2rem, 3vw, 3rem);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -2px;
}

.art-service-content p {
    max-width: 480px;

    margin: 0;

    color: rgba(15, 31, 82, .67);

    font-size: .96rem;
    line-height: 1.72;
}

.art-service-card-blue .art-service-content p {
    color: rgba(255, 255, 255, .76);
}

/* Flecha */

.art-service-arrow {
    position: absolute;

    right: 27px;
    bottom: 24px;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    color: #0f1f52;
    background: rgba(255, 255, 255, .70);

    border-radius: 50%;

    transition:
        transform .4s ease,
        background-color .4s ease;
}

.art-service-card-blue .art-service-arrow {
    color: #0f1f52;
    background: #f2dda0;
}

.art-service-card-gold .art-service-arrow {
    color: #fff;
    background: #0f1f52;
}

/* Cinta */

.art-service-tape {
    position: absolute;

    width: 125px;
    height: 35px;

    top: -9px;
    left: 50%;

    z-index: 5;

    background: rgba(255, 255, 255, .72);

    transform:
        translateX(-50%)
        rotate(-6deg);

    box-shadow:
        0 5px 13px rgba(15, 31, 82, .11);
}

.art-service-tape-right {
    left: auto;
    right: 42px;

    transform: rotate(7deg);
}

/*======================================================
=                       HOVER
======================================================*/

.art-service-card:hover {
    color: inherit;
    text-decoration: none;

    transform:
        translateY(-11px)
        rotate(0deg);

    box-shadow:
        24px 27px 0 rgba(201, 162, 77, .22),
        0 40px 75px rgba(15, 31, 82, .16);
}

.art-service-card:hover .art-service-icon {
    transform:
        rotate(2deg)
        scale(1.08);

    border-radius:
        58% 42% 39% 61% /
        42% 60% 40% 58%;
}

.art-service-card:hover .art-service-arrow {
    transform:
        translate(4px, -4px)
        rotate(5deg);
}

/*======================================================
=                 PIE DE LA SECCIÓN
======================================================*/

.art-services-footer {
    margin-top: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.art-services-note {
    display: flex;
    align-items: center;
    gap: 14px;

    color: rgba(15, 31, 82, .60);

    font-family: cursive;
    font-size: .96rem;

    transform: rotate(-2deg);
}

.art-services-note-line {
    width: 75px;
    height: 22px;

    flex-shrink: 0;

    border-top: 3px solid rgba(201, 162, 77, .55);
    border-radius: 50%;

    transform: rotate(7deg);
}

.art-services-button {
    min-height: 60px;

    padding: 0 31px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    color: #fff;
    background: #0f1f52;

    text-decoration: none;

    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .7px;

    clip-path: polygon(
        3% 5%,
        98% 0,
        100% 86%,
        91% 100%,
        0 95%
    );

    box-shadow:
        10px 11px 0 rgba(201, 162, 77, .30);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background-color .35s ease;
}

.art-services-button i {
    transition: transform .35s ease;
}

.art-services-button:hover {
    color: #fff;
    background: #244b9a;

    transform:
        translateY(-6px)
        rotate(-1deg);

    box-shadow:
        15px 16px 0 rgba(201, 162, 77, .35);
}

.art-services-button:hover i {
    transform: translateX(5px);
}

/*======================================================
=               DECORACIÓN DEL FONDO
======================================================*/

.art-services-decoration {
    position: absolute;
    inset: 0;

    z-index: -2;

    pointer-events: none;
}

.art-services-stroke {
    position: absolute;

    background: rgba(201, 162, 77, .22);
}

.art-services-stroke-one {
    width: 280px;
    height: 90px;

    top: 110px;
    left: -55px;

    transform: rotate(-10deg);

    clip-path: polygon(
        0 39%,
        12% 15%,
        29% 31%,
        44% 9%,
        61% 27%,
        79% 12%,
        100% 40%,
        94% 75%,
        72% 61%,
        51% 84%,
        28% 63%,
        7% 80%
    );
}

.art-services-stroke-two {
    width: 250px;
    height: 80px;

    right: -55px;
    bottom: 95px;

    background: rgba(15, 31, 82, .08);

    transform: rotate(13deg);

    clip-path: polygon(
        0 35%,
        15% 12%,
        33% 28%,
        51% 6%,
        69% 29%,
        87% 10%,
        100% 39%,
        92% 77%,
        67% 62%,
        45% 86%,
        22% 64%
    );
}

.art-services-doodle {
    position: absolute;
}

.art-services-doodle-one {
    width: 105px;
    height: 105px;

    left: 3%;
    bottom: 100px;

    border: 4px solid rgba(201, 162, 77, .34);

    border-radius:
        42% 58% 61% 39% /
        48% 40% 60% 52%;

    transform: rotate(18deg);

    animation:
        art-services-float
        7s
        ease-in-out
        infinite;
}

.art-services-doodle-two {
    width: 145px;
    height: 70px;

    right: 3%;
    top: 190px;

    border-top: 4px solid rgba(15, 31, 82, .18);
    border-radius: 50%;

    transform: rotate(-17deg);

    animation:
        art-services-float
        8s
        ease-in-out
        infinite reverse;
}

.art-services-paper {
    position: absolute;

    background: rgba(255, 255, 255, .70);

    box-shadow:
        0 15px 40px rgba(15, 31, 82, .05);
}

.art-services-paper-one {
    width: 280px;
    height: 165px;

    top: 85px;
    right: -80px;

    transform: rotate(13deg);

    clip-path: polygon(
        3% 0,
        98% 5%,
        93% 100%,
        0 93%
    );
}

.art-services-paper-two {
    width: 240px;
    height: 145px;

    left: -75px;
    bottom: 80px;

    transform: rotate(-12deg);

    clip-path: polygon(
        4% 5%,
        95% 0,
        100% 91%,
        88% 100%,
        0 94%
    );
}

/*======================================================
=                    ANIMACIONES
======================================================*/

@keyframes art-services-float {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -13px;
    }
}

/*======================================================
=                    RESPONSIVE
======================================================*/

@media (max-width: 1200px) {

    .art-services-grid {
        gap: 24px;
    }

    .art-service-card {
        min-height: 350px;

        padding: 38px 30px 32px;
    }

    .art-service-content h3 {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {

    .art-services {
        padding: 105px 0 120px;
    }

    .art-services-heading {
        margin-bottom: 60px;
    }

    .art-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .art-service-card,
    .art-service-card-large {
        grid-column: span 1;
    }

    .art-service-card:last-child {
        grid-column: 1 / -1;
    }

    .art-services-footer {
        flex-direction: column;

        justify-content: center;

        text-align: center;
    }

    .art-services-note {
        justify-content: center;
    }
}

@media (max-width: 576px) {

    .art-services {
        padding: 82px 0 95px;
    }

    .art-services-heading {
        margin-bottom: 48px;
    }

    .art-services-eyebrow {
        gap: 9px;

        font-size: .64rem;
        letter-spacing: 1.8px;
    }

    .art-services-eyebrow::before,
    .art-services-eyebrow::after {
        width: 25px;
    }

    .art-services-heading h2 {
        font-size: clamp(3rem, 15vw, 4.2rem);
        line-height: .94;
        letter-spacing: -2.2px;
    }

    .art-services-heading p {
        font-size: 1rem;
        line-height: 1.78;
    }

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

        gap: 25px;
    }

    .art-service-card,
    .art-service-card-large,
    .art-service-card:last-child {
        grid-column: auto;
    }

    .art-service-card {
        min-height: 340px;

        padding: 35px 27px 30px;
    }

    .art-service-icon {
        width: 68px;
        height: 68px;

        font-size: 1.7rem;
    }

    .art-service-content {
        margin-top: 38px;
    }

    .art-service-content h3 {
        font-size: 2.2rem;
    }

    .art-service-content p {
        padding-right: 35px;

        font-size: .92rem;
    }

    .art-service-arrow {
        right: 20px;
        bottom: 20px;

        width: 44px;
        height: 44px;
    }

    .art-services-footer {
        margin-top: 48px;
    }

    .art-services-note {
        align-items: flex-start;

        font-size: .85rem;
        text-align: left;
    }

    .art-services-note-line {
        width: 45px;
    }

    .art-services-button {
        width: 100%;

        padding: 0 22px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .art-services-doodle {
        animation: none;
    }

    .art-service-card,
    .art-service-icon,
    .art-service-arrow,
    .art-services-button,
    .art-services-button i {
        transition: none;
    }
}

/*======================================================
=                  NOSOTROS HOME
======================================================*/

.home-about {
    position: relative;

    padding: 95px 0 105px;

    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(201, 162, 77, .15),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 78%,
            rgba(15, 31, 82, .09),
            transparent 28%
        ),
        #fffdf8;
}

/* Textura ligera */

.home-about::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -4;

    opacity: .3;
    pointer-events: none;

    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 33px,
            rgba(15, 31, 82, .022) 34px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 33px,
            rgba(15, 31, 82, .016) 34px
        );
}

/* Mancha inferior */

.home-about::after {
    content: "";

    position: absolute;

    width: 560px;
    height: 185px;

    right: -120px;
    bottom: -80px;

    z-index: -3;

    background: rgba(201, 162, 77, .12);

    transform: rotate(-8deg);

    clip-path: polygon(
        0 42%,
        10% 17%,
        24% 36%,
        39% 9%,
        55% 31%,
        70% 12%,
        86% 38%,
        100% 19%,
        95% 75%,
        79% 61%,
        62% 86%,
        43% 67%,
        25% 91%,
        7% 69%
    );
}

.home-about .container {
    position: relative;
    z-index: 3;

    max-width: 1380px;
}

/*======================================================
=                    ENCABEZADO
======================================================*/

.home-about-heading {
    max-width: 1040px;

    margin: 0 auto 80px;

    text-align: center;
}

.home-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 27px;

    color: #956d1c;

    font-size: .76rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.home-about-eyebrow::before,
.home-about-eyebrow::after {
    content: "";

    width: 42px;
    height: 4px;

    flex-shrink: 0;

    background: #c9a24d;
    border-radius: 999px;
}

.home-about-eyebrow::before {
    transform: rotate(-6deg);
}

.home-about-eyebrow::after {
    transform: rotate(6deg);
}

.home-about-heading h2 {
    margin: 0;

    color: #0f1f52;

    font-size: clamp(3rem, 5.6vw, 5.5rem);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -4px;
}

.home-about-heading h2 strong {
    position: relative;

    display: inline-block;

    color: #c9a24d;
    font-weight: 900;
}

.home-about-heading h2 strong::after {
    content: "";

    position: absolute;

    left: -2%;
    right: -2%;
    bottom: -8px;

    height: 20px;

    z-index: -1;

    background: rgba(227, 193, 109, .28);

    transform: rotate(-2deg);

    clip-path: polygon(
        0 42%,
        11% 17%,
        25% 36%,
        40% 10%,
        57% 35%,
        74% 13%,
        89% 38%,
        100% 20%,
        96% 73%,
        80% 61%,
        63% 84%,
        46% 63%,
        27% 80%,
        8% 61%
    );
}

/*======================================================
=                CONTENIDO PRINCIPAL
======================================================*/

.home-about-wrapper {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, .95fr);

    gap: clamp(55px, 7vw, 105px);

    align-items: center;
}

/*======================================================
=                  COMPOSICIÓN VISUAL
======================================================*/

.home-about-visual {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mancha azul detrás */

.home-about-shape {
    position: absolute;

    width: 88%;
    height: 88%;

    left: 1%;
    top: 7%;

    z-index: -2;

    background:
        radial-gradient(
            circle at 80% 16%,
            rgba(255, 255, 255, .12),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #0f1f52,
            #244b9a
        );

    clip-path: polygon(
        4% 4%,
        96% 0,
        100% 87%,
        90% 100%,
        0 95%,
        2% 12%
    );

    transform: rotate(-3deg);

    box-shadow:
        22px 25px 0 rgba(201, 162, 77, .22);
}

/* Tarjeta de imagen */

.home-about-image {
    position: relative;

    width: 82%;
    max-width: 570px;

    margin-left: auto;
    margin-right: 3%;

    padding: 13px;

    background: #fff;

    transform: rotate(2deg);

    clip-path: polygon(
        1% 2%,
        99% 0,
        100% 97%,
        94% 100%,
        0 98%,
        1% 7%
    );

    box-shadow:
        19px 22px 0 rgba(227, 193, 109, .25),
        0 38px 78px rgba(2, 8, 28, .34);

    transition:
        transform .55s cubic-bezier(.2, .8, .2, 1),
        box-shadow .55s ease;
}

.home-about-image:hover {
    transform:
        rotate(0deg)
        translateY(-8px);

    box-shadow:
        24px 27px 0 rgba(227, 193, 109, .29),
        0 48px 90px rgba(2, 8, 28, .40);
}

.home-about-image img {
    width: 100%;
    height: 570px;

    display: block;

    object-fit: cover;

    background: #ece7db;
}

/* Cinta */

.home-about-tape {
    position: absolute;

    width: 145px;
    height: 40px;

    top: -13px;
    left: 50%;

    z-index: 6;

    background: rgba(239, 228, 194, .90);

    transform:
        translateX(-50%)
        rotate(-5deg);

    box-shadow:
        0 5px 13px rgba(15, 31, 82, .12);
}

/* Texto sobre imagen */

.home-about-image-label {
    position: absolute;

    left: 32px;
    bottom: 30px;

    max-width: 280px;

    padding: 13px 18px;

    color: #0f1f52;
    background: rgba(255, 253, 248, .92);

    font-family: cursive;
    font-size: .95rem;
    line-height: 1.4;

    transform: rotate(-2deg);

    box-shadow:
        7px 8px 0 rgba(201, 162, 77, .22);
}

/* Nota flotante */

.home-about-floating-note {
    position: absolute;

    right: -8px;
    top: 75px;

    width: 175px;
    min-height: 150px;

    padding: 27px 23px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;

    z-index: 5;

    color: #0f1f52;
    background: #f2dda0;

    transform: rotate(6deg);

    clip-path: polygon(
        3% 2%,
        97% 0,
        100% 89%,
        91% 100%,
        0 95%
    );

    box-shadow:
        11px 13px 0 rgba(15, 31, 82, .12);
}

.home-about-floating-note i {
    font-size: 1.8rem;
}

.home-about-floating-note span {
    font-family: cursive;
    font-size: .94rem;
    line-height: 1.4;
}

/*======================================================
=                 CONTENIDO DE TEXTO
======================================================*/

.home-about-content {
    position: relative;
}

.home-about-small-title {
    display: block;

    margin-bottom: 21px;

    color: #c9a24d;

    font-size: .71rem;
    font-weight: 800;
    letter-spacing: 2.3px;
}

.home-about-description {
    margin: 0 0 43px;

    color: #4f5665;

    font-size: 1.1rem;
    line-height: 1.95;
}

/*======================================================
=                 CARACTERÍSTICAS
======================================================*/

.home-about-features {
    display: grid;

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

    gap: 18px;
}

.home-about-feature {
    position: relative;

    min-height: 145px;

    padding: 23px 21px;

    display: flex;
    align-items: flex-start;
    gap: 16px;

    border: 1px solid rgba(15, 31, 82, .11);

    background: rgba(255, 255, 255, .64);

    box-shadow:
        8px 9px 0 rgba(201, 162, 77, .10);

    transform: rotate(-.7deg);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        background-color .4s ease;
}

.home-about-feature:nth-child(even) {
    transform: rotate(.7deg);
}

.home-about-feature:nth-child(1) {
    clip-path: polygon(
        2% 2%,
        98% 0,
        100% 92%,
        92% 100%,
        0 96%
    );
}

.home-about-feature:nth-child(2) {
    clip-path: polygon(
        0 4%,
        96% 0,
        100% 95%,
        7% 100%
    );
}

.home-about-feature:nth-child(3) {
    clip-path: polygon(
        3% 0,
        100% 4%,
        96% 100%,
        0 94%
    );
}

.home-about-feature:nth-child(4) {
    clip-path: polygon(
        1% 3%,
        97% 0,
        100% 91%,
        91% 100%,
        0 96%
    );
}

.home-about-feature:hover {
    background: #fff;

    transform:
        translateY(-6px)
        rotate(0deg);

    box-shadow:
        12px 14px 0 rgba(201, 162, 77, .16),
        0 20px 35px rgba(15, 31, 82, .08);
}

/* Iconos */

.home-about-feature-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: #fff;
    background: #0f1f52;

    font-size: 1.25rem;

    border-radius:
        44% 56% 61% 39% /
        47% 39% 61% 53%;

    transform: rotate(-5deg);

    box-shadow:
        6px 7px 0 rgba(201, 162, 77, .22);

    transition:
        transform .4s ease,
        border-radius .4s ease;
}

.home-about-feature:nth-child(even)
.home-about-feature-icon {
    color: #0f1f52;
    background: #f2dda0;
}

.home-about-feature:hover
.home-about-feature-icon {
    transform:
        rotate(3deg)
        scale(1.07);

    border-radius:
        58% 42% 39% 61% /
        42% 60% 40% 58%;
}

/* Texto de características */

.home-about-feature-content h3 {
    margin: 2px 0 8px;

    color: #0f1f52;

    font-size: 1rem;
    line-height: 1.2;
    font-weight: 800;
}

.home-about-feature-content p {
    margin: 0;

    color: #747985;

    font-size: .84rem;
    line-height: 1.55;
}

/*======================================================
=                PIE DEL CONTENIDO
======================================================*/

.home-about-footer {
    margin-top: 43px;

    display: flex;
    align-items: center;
    gap: 29px;
}

/* Botón */

.home-about-button {
    min-height: 59px;

    padding: 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    flex-shrink: 0;

    color: #fff;
    background: #0f1f52;

    text-decoration: none;

    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .6px;

    clip-path: polygon(
        3% 5%,
        98% 0,
        100% 86%,
        91% 100%,
        0 95%
    );

    box-shadow:
        10px 11px 0 rgba(201, 162, 77, .30);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background-color .35s ease;
}

.home-about-button i {
    transition: transform .35s ease;
}

.home-about-button:hover {
    color: #fff;
    background: #244b9a;

    transform:
        translateY(-5px)
        rotate(-1deg);

    box-shadow:
        14px 15px 0 rgba(201, 162, 77, .34);
}

.home-about-button:hover i {
    transform: translateX(5px);
}

/* Firma */

.home-about-signature {
    max-width: 210px;

    color: rgba(15, 31, 82, .56);

    font-family: cursive;
    font-size: .88rem;
    line-height: 1.5;

    transform: rotate(-2deg);
}

/*======================================================
=                 DECORACIONES
======================================================*/

.home-about-decoration {
    position: absolute;
    inset: 0;

    z-index: -2;

    pointer-events: none;
}

.home-about-stroke {
    position: absolute;
}

.home-about-stroke-one {
    width: 290px;
    height: 90px;

    top: 120px;
    left: -55px;

    background: rgba(201, 162, 77, .20);

    transform: rotate(-11deg);

    clip-path: polygon(
        0 39%,
        12% 15%,
        29% 31%,
        44% 9%,
        61% 27%,
        79% 12%,
        100% 40%,
        94% 75%,
        72% 61%,
        51% 84%,
        28% 63%,
        7% 80%
    );
}

.home-about-stroke-two {
    width: 260px;
    height: 85px;

    right: -60px;
    bottom: 100px;

    background: rgba(15, 31, 82, .08);

    transform: rotate(13deg);

    clip-path: polygon(
        0 35%,
        15% 12%,
        33% 28%,
        51% 6%,
        69% 29%,
        87% 10%,
        100% 39%,
        92% 77%,
        67% 62%,
        45% 86%,
        22% 64%
    );
}

.home-about-doodle {
    position: absolute;
}

.home-about-doodle-one {
    width: 115px;
    height: 115px;

    left: 3%;
    bottom: 115px;

    border: 4px solid rgba(201, 162, 77, .30);

    border-radius:
        42% 58% 61% 39% /
        48% 40% 60% 52%;

    transform: rotate(18deg);

    animation:
        home-about-float
        7s
        ease-in-out
        infinite;
}

.home-about-doodle-two {
    width: 150px;
    height: 75px;

    right: 3%;
    top: 200px;

    border-top: 4px solid rgba(15, 31, 82, .16);
    border-radius: 50%;

    transform: rotate(-17deg);

    animation:
        home-about-float
        8s
        ease-in-out
        infinite reverse;
}

/*======================================================
=                    ANIMACIÓN
======================================================*/

@keyframes home-about-float {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -13px;
    }
}

/*======================================================
=                RESPONSIVE: LAPTOP
======================================================*/

@media (max-width: 1200px) {

    .home-about-wrapper {
        gap: 65px;
    }

    .home-about-image {
        width: 85%;
    }

    .home-about-image img {
        height: 520px;
    }

    .home-about-floating-note {
        right: -5px;

        width: 160px;
    }

    .home-about-feature {
        min-height: 150px;

        padding: 21px 18px;
    }
}

/*======================================================
=                RESPONSIVE: TABLET
======================================================*/

@media (max-width: 992px) {

    .home-about {
        padding: 105px 0 120px;
    }

    .home-about-heading {
        margin-bottom: 65px;
    }

    .home-about-wrapper {
        grid-template-columns: 1fr;

        gap: 75px;
    }

    .home-about-visual {
        min-height: 610px;

        max-width: 750px;

        margin: 0 auto;
    }

    .home-about-image {
        max-width: 600px;

        margin: 0 auto;
    }

    .home-about-image img {
        height: 550px;
    }

    .home-about-floating-note {
        right: 2%;
    }

    .home-about-content {
        max-width: 800px;

        margin: 0 auto;
    }
}

/*======================================================
=                RESPONSIVE: MÓVIL
======================================================*/

@media (max-width: 576px) {

    .home-about {
        padding: 82px 0 95px;
    }

    .home-about-heading {
        margin-bottom: 48px;
    }

    .home-about-eyebrow {
        gap: 9px;

        font-size: .64rem;
        letter-spacing: 1.8px;
    }

    .home-about-eyebrow::before,
    .home-about-eyebrow::after {
        width: 25px;
    }

    .home-about-heading h2 {
        font-size: clamp(2.8rem, 14vw, 4rem);
        line-height: .96;
        letter-spacing: -2.2px;
    }

    .home-about-wrapper {
        gap: 60px;
    }

    .home-about-visual {
        min-height: auto;

        padding: 35px 0 65px;
    }

    .home-about-shape {
        width: 94%;
        height: 91%;

        left: 0;
        top: 2%;
    }

    .home-about-image {
        width: 88%;

        margin: 0 auto;

        padding: 8px;
    }

    .home-about-image img {
        height: 410px;
    }

    .home-about-image-label {
        left: 18px;
        bottom: 20px;

        max-width: 220px;

        padding: 10px 13px;

        font-size: .78rem;
    }

    .home-about-tape {
        width: 105px;
        height: 30px;

        top: -10px;
    }

    .home-about-floating-note {
        width: 135px;
        min-height: 115px;

        right: 0;
        top: 5px;

        padding: 18px 16px;
    }

    .home-about-floating-note i {
        font-size: 1.3rem;
    }

    .home-about-floating-note span {
        font-size: .76rem;
    }

    .home-about-description {
        margin-bottom: 34px;

        font-size: 1rem;
        line-height: 1.82;
    }

    .home-about-features {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .home-about-feature {
        min-height: auto;

        padding: 21px 19px;
    }

    .home-about-footer {
        margin-top: 37px;

        flex-direction: column;
        align-items: flex-start;
    }

    .home-about-button {
        width: 100%;

        padding: 0 20px;
    }

    .home-about-signature {
        max-width: 100%;

        margin-left: 12px;
    }
}

/*======================================================
=              REDUCIR ANIMACIONES
======================================================*/

@media (prefers-reduced-motion: reduce) {

    .home-about-doodle {
        animation: none;
    }

    .home-about-image,
    .home-about-feature,
    .home-about-feature-icon,
    .home-about-button,
    .home-about-button i {
        transition: none;
    }
}

/*======================================================
=               GALERÍA ARTÍSTICA
======================================================*/

.creative-gallery {
    position: relative;
    padding: 95px 0 110px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(201, 162, 77, .14),
            transparent 24%
        ),
        radial-gradient(
            circle at 90% 82%,
            rgba(15, 31, 82, .09),
            transparent 28%
        ),
        #fffdf8;
}

.creative-gallery::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;
    opacity: .28;

    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 33px,
            rgba(15, 31, 82, .024) 34px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 33px,
            rgba(15, 31, 82, .017) 34px
        );
}

.creative-gallery::after {
    content: "";
    position: absolute;

    width: 280px;
    height: 95px;

    top: 60px;
    right: -55px;

    background: rgba(201, 162, 77, .25);

    transform: rotate(-8deg);

    clip-path: polygon(
        0 40%,
        12% 15%,
        28% 31%,
        43% 8%,
        61% 29%,
        79% 12%,
        100% 42%,
        94% 75%,
        73% 60%,
        52% 85%,
        30% 64%,
        8% 82%
    );
}

.creative-gallery .container {
    position: relative;
    z-index: 2;
}

/* Encabezado */

.creative-gallery-heading {
    position: relative;

    max-width: 850px;
    margin: 0 auto 90px;

    text-align: center;
}

.creative-gallery-heading .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 28px;

    color: #966f20;

    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.creative-gallery-heading .section-tag::before {
    content: "";

    width: 44px;
    height: 4px;

    background: #c9a24d;
    border-radius: 999px;

    transform: rotate(-5deg);
}

.creative-gallery-heading h2 {
    margin: 0 0 25px;

    color: #0f1f52;

    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: .96;
    font-weight: 900;
    letter-spacing: -3px;
}

.creative-gallery-heading h2 span {
    position: relative;
    display: inline-block;

    color: #c9a24d;
}

.creative-gallery-heading h2 span::after {
    content: "";
    position: absolute;

    left: 1%;
    bottom: -12px;

    width: 100%;
    height: 18px;

    z-index: -1;

    background: rgba(201, 162, 77, .30);

    transform: rotate(-2deg);

    clip-path: polygon(
        0 42%,
        10% 18%,
        23% 40%,
        38% 12%,
        53% 37%,
        68% 17%,
        84% 39%,
        100% 22%,
        96% 74%,
        80% 60%,
        63% 82%,
        45% 61%,
        27% 79%,
        8% 62%
    );
}

.creative-gallery-heading p {
    max-width: 650px;
    margin: 0 auto;

    color: #5d6473;

    font-size: 1.08rem;
    line-height: 1.85;
}

/* Grid collage */

.creative-gallery-grid {
    display: grid;

    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 90px;
    gap: 24px;
}

.gallery-item {
    position: relative;

    margin: 0;
    overflow: hidden;
    isolation: isolate;

    background: #0f1f52;

    box-shadow:
        0 25px 50px rgba(15, 31, 82, .16);

    transition:
        transform .45s cubic-bezier(.2, .8, .2, 1),
        box-shadow .45s ease;
}

.gallery-item-large {
    grid-column: 1 / span 7;
    grid-row: 1 / span 6;

    transform: rotate(-1.5deg);

    clip-path: polygon(
        2% 2%,
        98% 0,
        100% 92%,
        94% 100%,
        0 97%,
        1% 10%
    );
}

.gallery-item-top {
    grid-column: 8 / span 5;
    grid-row: 1 / span 3;

    transform: rotate(2deg);

    clip-path: polygon(
        3% 0,
        97% 3%,
        100% 90%,
        91% 100%,
        0 95%,
        2% 10%
    );
}

.gallery-item-middle {
    grid-column: 8 / span 5;
    grid-row: 4 / span 3;

    transform: rotate(-2deg);

    clip-path: polygon(
        2% 3%,
        100% 0,
        97% 94%,
        89% 100%,
        0 96%
    );
}

.gallery-item-bottom {
    grid-column: 1 / span 5;
    grid-row: 7 / span 4;

    transform: rotate(2deg);

    clip-path: polygon(
        4% 0,
        96% 3%,
        100% 92%,
        91% 100%,
        0 96%,
        2% 12%
    );
}

.gallery-item-wide {
    grid-column: 6 / span 7;
    grid-row: 7 / span 4;

    transform: rotate(-1deg);

    clip-path: polygon(
        2% 2%,
        98% 0,
        100% 91%,
        92% 100%,
        0 96%,
        1% 10%
    );
}

/* Imágenes */

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .65s cubic-bezier(.2, .8, .2, 1),
        filter .45s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            transparent 30%,
            rgba(4, 12, 39, .84) 100%
        );

    pointer-events: none;
}

/* Información */

.gallery-item figcaption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 3;

    padding: 35px 36px;
}

.gallery-item figcaption > span {
    display: block;

    margin-bottom: 8px;

    color: #e3c16d;

    font-size: .75rem;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.gallery-item h3 {
    margin: 0 0 8px;

    color: #fff !important;

    font-size: clamp(1.55rem, 2.5vw, 2.4rem);
    line-height: 1.05;
    font-weight: 850;
}

.gallery-item p {
    max-width: 430px;
    margin: 0;

    color: rgba(255, 255, 255, .84) !important;

    font-size: .96rem;
    line-height: 1.6;
}

/* Cinta adhesiva */

.gallery-tape {
    position: absolute;

    width: 115px;
    height: 36px;

    top: -10px;
    left: 50%;

    z-index: 5;

    background: rgba(255, 255, 255, .72);

    transform: translateX(-50%) rotate(-6deg);

    box-shadow:
        0 5px 14px rgba(15, 31, 82, .10);
}

.gallery-tape-right {
    left: auto;
    right: 35px;

    transform: rotate(7deg);
}

/* Hover */

.gallery-item:hover {
    transform: rotate(0deg) translateY(-9px);

    box-shadow:
        0 35px 70px rgba(15, 31, 82, .24);
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: saturate(1.08);
}

/* Garabatos */

.gallery-doodle {
    position: absolute;
    pointer-events: none;
}

.gallery-doodle-one {
    width: 105px;
    height: 105px;

    left: 3%;
    bottom: 95px;

    border: 4px solid rgba(201, 162, 77, .36);

    border-radius:
        42% 58% 61% 39% /
        48% 40% 60% 52%;

    transform: rotate(18deg);
}

.gallery-doodle-two {
    width: 140px;
    height: 70px;

    top: 185px;
    right: 3%;

    border-top: 4px solid rgba(15, 31, 82, .20);
    border-radius: 50%;

    transform: rotate(-16deg);
}

/* Responsive */

@media (max-width: 992px) {
    .creative-gallery {
        padding: 105px 0;
    }

    .creative-gallery-heading {
        margin-bottom: 70px;
    }

    .creative-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 310px;
    }

    .gallery-item-large,
    .gallery-item-top,
    .gallery-item-middle,
    .gallery-item-bottom,
    .gallery-item-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .creative-gallery {
        padding: 82px 0;
    }

    .creative-gallery-heading {
        margin-bottom: 52px;
    }

    .creative-gallery-heading h2 {
        font-size: 3rem;
        line-height: .97;
        letter-spacing: -1.5px;
    }

    .creative-gallery-heading p {
        font-size: 1rem;
    }

    .creative-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 360px;
        gap: 28px;
    }

    .gallery-item-large,
    .gallery-item-top,
    .gallery-item-middle,
    .gallery-item-bottom,
    .gallery-item-wide {
        grid-column: auto;
    }

    .gallery-item-large {
        min-height: 430px;
    }

    .gallery-item figcaption {
        padding: 28px 25px;
    }

    .gallery-item h3 {
        font-size: 2rem;
    }
}

/*======================================================
=                     CTA CREATIVA
======================================================*/

.creative-cta {
    position: relative;

    padding: 105px 0 115px;

    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(201, 162, 77, .15),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(15, 31, 82, .08),
            transparent 28%
        ),
        #fffdf8;
}

/* Textura de papel */

.creative-cta::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -4;

    opacity: .3;
    pointer-events: none;

    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 33px,
            rgba(15, 31, 82, .022) 34px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 33px,
            rgba(15, 31, 82, .016) 34px
        );
}

.creative-cta .container {
    position: relative;
    z-index: 3;

    max-width: 1320px;
}

/*======================================================
=                    TARJETA CTA
======================================================*/

.creative-cta-card {
    position: relative;

    min-height: 520px;

    padding: 90px 110px;

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

    overflow: hidden;
    isolation: isolate;

    color: #fff;

    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(255, 255, 255, .12),
            transparent 25%
        ),
        radial-gradient(
            circle at 10% 88%,
            rgba(201, 162, 77, .18),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #0f1f52,
            #18356f 56%,
            #244b9a
        );

    clip-path: polygon(
        2% 3%,
        97% 0,
        100% 88%,
        94% 100%,
        1% 96%,
        0 12%
    );

    box-shadow:
        25px 28px 0 rgba(201, 162, 77, .24),
        0 45px 90px rgba(15, 31, 82, .24);
}

/* Mancha interna */

.creative-cta-card::before {
    content: "";

    position: absolute;

    width: 470px;
    height: 180px;

    left: -100px;
    bottom: -65px;

    z-index: -1;

    background: rgba(227, 193, 109, .15);

    transform: rotate(-8deg);

    clip-path: polygon(
        0 40%,
        10% 17%,
        24% 35%,
        39% 9%,
        55% 31%,
        71% 12%,
        86% 37%,
        100% 18%,
        94% 74%,
        78% 61%,
        61% 84%,
        43% 67%,
        25% 91%,
        8% 69%
    );
}

/* Mancha superior */

.creative-cta-card::after {
    content: "";

    position: absolute;

    width: 390px;
    height: 140px;

    right: -85px;
    top: -55px;

    z-index: -1;

    background: rgba(255, 255, 255, .07);

    transform: rotate(9deg);

    clip-path: polygon(
        0 35%,
        15% 12%,
        33% 28%,
        51% 6%,
        69% 29%,
        87% 10%,
        100% 39%,
        92% 77%,
        67% 62%,
        45% 86%,
        22% 64%
    );
}

/*======================================================
=                     CONTENIDO
======================================================*/

.creative-cta-content {
    position: relative;
    z-index: 4;

    max-width: 890px;

    margin: 0 auto;

    text-align: center;
}

.creative-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 28px;

    color: #f2dda0;

    font-size: .74rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.creative-cta-tag::before,
.creative-cta-tag::after {
    content: "";

    width: 42px;
    height: 3px;

    background: #c9a24d;
    border-radius: 999px;
}

.creative-cta-tag::before {
    transform: rotate(-5deg);
}

.creative-cta-tag::after {
    transform: rotate(5deg);
}

.creative-cta-content h2 {
    margin: 0 0 27px;

    color: #fff;

    font-size: clamp(3.4rem, 6.5vw, 6.4rem);
    line-height: .93;
    font-weight: 900;
    letter-spacing: -4px;
}

.creative-cta-content h2 strong {
    position: relative;

    display: inline-block;

    color: #f2dda0;
    font-weight: 900;
}

.creative-cta-content h2 strong::after {
    content: "";

    position: absolute;

    left: -2%;
    right: -2%;
    bottom: -9px;

    height: 21px;

    z-index: -1;

    background: rgba(201, 162, 77, .22);

    transform: rotate(-2deg);

    clip-path: polygon(
        0 42%,
        11% 17%,
        25% 36%,
        40% 10%,
        57% 35%,
        74% 13%,
        89% 38%,
        100% 20%,
        96% 73%,
        80% 61%,
        63% 84%,
        46% 63%,
        27% 80%,
        8% 61%
    );
}

.creative-cta-content p {
    max-width: 700px;

    margin: 0 auto 38px;

    color: rgba(255, 255, 255, .79);

    font-size: 1.08rem;
    line-height: 1.85;
}

/*======================================================
=                       BOTÓN
======================================================*/

.creative-cta-button {
    min-height: 64px;

    padding: 0 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    color: #0f1f52;
    background: #f2dda0;

    text-decoration: none;

    font-size: .85rem;
    font-weight: 900;
    letter-spacing: .7px;

    clip-path: polygon(
        3% 5%,
        98% 0,
        100% 86%,
        91% 100%,
        0 95%
    );

    box-shadow:
        11px 12px 0 rgba(255, 255, 255, .12);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background-color .35s ease;
}

.creative-cta-button i {
    font-size: 1rem;

    transition: transform .35s ease;
}

.creative-cta-button:hover {
    color: #0f1f52;
    background: #fff3c9;

    transform:
        translateY(-6px)
        rotate(-1deg);

    box-shadow:
        16px 17px 0 rgba(255, 255, 255, .15);
}

.creative-cta-button:hover i {
    transform: translateX(5px);
}

/*======================================================
=                  CINTA SUPERIOR
======================================================*/

.creative-cta-tape {
    position: absolute;

    width: 170px;
    height: 43px;

    top: -12px;
    left: 50%;

    z-index: 7;

    background: rgba(239, 228, 194, .88);

    transform:
        translateX(-50%)
        rotate(-4deg);

    box-shadow:
        0 6px 15px rgba(2, 8, 28, .16);
}

/*======================================================
=                   NOTA FLOTANTE
======================================================*/

.creative-cta-note {
    position: absolute;

    width: 185px;
    min-height: 145px;

    right: 45px;
    bottom: 40px;

    z-index: 5;

    padding: 25px 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 13px;

    color: #0f1f52;
    background: #f2dda0;

    transform: rotate(6deg);

    clip-path: polygon(
        3% 2%,
        97% 0,
        100% 89%,
        91% 100%,
        0 95%
    );

    box-shadow:
        11px 13px 0 rgba(2, 8, 28, .16);

    animation:
        creative-cta-float
        6s
        ease-in-out
        infinite;
}

.creative-cta-note i {
    font-size: 1.7rem;
}

.creative-cta-note span {
    font-family: cursive;
    font-size: .91rem;
    line-height: 1.45;
}

/*======================================================
=                    DECORACIONES
======================================================*/

.creative-cta-decoration {
    position: absolute;
    inset: 0;

    z-index: -2;

    pointer-events: none;
}

.creative-cta-brush {
    position: absolute;
}

.creative-cta-brush-one {
    width: 300px;
    height: 95px;

    top: 80px;
    left: -55px;

    background: rgba(201, 162, 77, .22);

    transform: rotate(-10deg);

    clip-path: polygon(
        0 39%,
        12% 15%,
        29% 31%,
        44% 9%,
        61% 27%,
        79% 12%,
        100% 40%,
        94% 75%,
        72% 61%,
        51% 84%,
        28% 63%,
        7% 80%
    );
}

.creative-cta-brush-two {
    width: 250px;
    height: 80px;

    right: -50px;
    bottom: 65px;

    background: rgba(15, 31, 82, .09);

    transform: rotate(13deg);

    clip-path: polygon(
        0 35%,
        15% 12%,
        33% 28%,
        51% 6%,
        69% 29%,
        87% 10%,
        100% 39%,
        92% 77%,
        67% 62%,
        45% 86%,
        22% 64%
    );
}

.creative-cta-brush-three {
    width: 180px;
    height: 55px;

    left: 12%;
    bottom: 35px;

    background: rgba(201, 162, 77, .12);

    transform: rotate(8deg);

    clip-path: polygon(
        0 40%,
        16% 18%,
        35% 33%,
        53% 10%,
        72% 31%,
        90% 14%,
        100% 45%,
        84% 72%,
        63% 60%,
        42% 83%,
        20% 63%
    );
}

/* Puntos */

.creative-cta-dot {
    position: absolute;

    border-radius: 50%;

    background: #c9a24d;
}

.creative-cta-dot-one {
    width: 11px;
    height: 11px;

    top: 22%;
    right: 8%;
}

.creative-cta-dot-two {
    width: 7px;
    height: 7px;

    left: 6%;
    bottom: 24%;

    opacity: .7;
}

.creative-cta-dot-three {
    width: 14px;
    height: 14px;

    right: 15%;
    bottom: 9%;

    opacity: .5;
}

/* Líneas dibujadas */

.creative-cta-line {
    position: absolute;

    border-top: 4px solid rgba(15, 31, 82, .15);
    border-radius: 50%;
}

.creative-cta-line-one {
    width: 155px;
    height: 70px;

    top: 120px;
    right: 4%;

    transform: rotate(-16deg);
}

.creative-cta-line-two {
    width: 115px;
    height: 55px;

    left: 4%;
    bottom: 105px;

    border-color: rgba(201, 162, 77, .27);

    transform: rotate(17deg);
}

/*======================================================
=                     ANIMACIÓN
======================================================*/

@keyframes creative-cta-float {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -11px;
    }
}

/*======================================================
=                    RESPONSIVE
======================================================*/

@media (max-width: 1200px) {

    .creative-cta-card {
        padding: 85px 90px;
    }

    .creative-cta-note {
        right: 28px;
        bottom: 28px;

        width: 165px;
    }
}

@media (max-width: 992px) {

    .creative-cta {
        padding: 90px 0 100px;
    }

    .creative-cta-card {
        min-height: 500px;

        padding: 80px 55px 115px;
    }

    .creative-cta-note {
        right: 50%;

        bottom: 22px;

        width: 175px;
        min-height: 100px;

        transform:
            translateX(50%)
            rotate(3deg);
    }
}

@media (max-width: 576px) {

    .creative-cta {
        padding: 75px 0 85px;
    }

    .creative-cta-card {
        min-height: auto;

        padding:
            75px
            24px
            125px;

        clip-path: polygon(
            2% 2%,
            98% 0,
            100% 94%,
            92% 100%,
            0 97%,
            1% 7%
        );

        box-shadow:
            14px 16px 0 rgba(201, 162, 77, .22),
            0 30px 65px rgba(15, 31, 82, .20);
    }

    .creative-cta-tag {
        gap: 8px;

        font-size: .62rem;
        letter-spacing: 1.8px;
    }

    .creative-cta-tag::before,
    .creative-cta-tag::after {
        width: 23px;
    }

    .creative-cta-content h2 {
        font-size: clamp(3rem, 15vw, 4.2rem);
        line-height: .94;
        letter-spacing: -2.3px;
    }

    .creative-cta-content p {
        margin-bottom: 32px;

        font-size: .98rem;
        line-height: 1.75;
    }

    .creative-cta-button {
        width: 100%;

        min-height: 60px;

        padding: 0 20px;

        font-size: .78rem;
    }

    .creative-cta-tape {
        width: 110px;
        height: 31px;

        top: -9px;
    }

    .creative-cta-note {
        width: 150px;
        min-height: 90px;

        padding: 16px 17px;
    }

    .creative-cta-note i {
        font-size: 1.25rem;
    }

    .creative-cta-note span {
        font-size: .75rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .creative-cta-note {
        animation: none;
    }

    .creative-cta-button,
    .creative-cta-button i {
        transition: none;
    }
}

/*====================================================
CONTACTO
====================================================*/

.contact-section{

    position:relative;

    overflow:hidden;

    padding:90px 0;

    background:
    radial-gradient(circle at top left,
    rgba(18,62,112,.05),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(68,162,255,.05),
    transparent 30%),

    linear-gradient(#ffffff,#f8fbff);

}


/*=========================================
TEXTURA
=========================================*/

.contact-section::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:
    radial-gradient(rgba(18,62,112,.05) 1px, transparent 1px);

    background-size:24px 24px;

    opacity:.25;

}


/*=========================================
FONDO DECORATIVO
=========================================*/

.contact-bg{

    position:absolute;

    inset:0;

    overflow:hidden;

    pointer-events:none;

}

.contact-bg .blob{

    position:absolute;

    border-radius:50%;

    filter:blur(70px);

}

.contact-bg .blob1{

    width:350px;

    height:350px;

    background:rgba(44,132,255,.10);

    top:-100px;

    left:-100px;

}

.contact-bg .blob2{

    width:300px;

    height:300px;

    background:rgba(18,62,112,.08);

    bottom:-80px;

    right:-60px;

}


/*=========================================
CONTENEDOR
=========================================*/

.contact-wrapper{

    position:relative;

    display:grid;

    grid-template-columns:360px 1fr;

    gap:45px;

    margin-top:70px;

}


/*=========================================
INFORMACIÓN
=========================================*/

.contact-info{

    display:flex;

    flex-direction:column;

    gap:22px;

}


.info-card{

    display:flex;

    align-items:center;

    gap:18px;

    padding:28px;

    border-radius:24px;

    background:#fff;

    box-shadow:

    0 15px 40px rgba(18,62,112,.08);

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-5px);

    box-shadow:

    0 22px 45px rgba(18,62,112,.12);

}


.icon{

    width:65px;

    height:65px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
    135deg,
    #123E70,
    #2B7FD6);

    color:#fff;

    font-size:1.4rem;

}


.info-card h4{

    margin:0;

    color:#123E70;

    font-size:1.05rem;

    font-weight:700;

}

.info-card p{

    margin-top:6px;

    color:#6c7d90;

    line-height:1.6;

}


/*=========================================
FORMULARIO
=========================================*/

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:35px;

    box-shadow:

    0 25px 60px rgba(18,62,112,.08);

}


/*=========================================
INPUTS
=========================================*/

.input-group{

    margin-bottom:22px;

}

.input-group input,

.input-group textarea{

    width:100%;

    padding:18px 22px;

    border:2px solid #e5edf5;

    border-radius:18px;

    outline:none;

    background:#fbfcfe;

    font-size:1rem;

    color:#123E70;

    transition:.35s;

    resize:none;

}


.input-group input::placeholder,

.input-group textarea::placeholder{

    color:#9ba9b8;

}


.input-group input:focus,

.input-group textarea:focus{

    border-color:#2B7FD6;

    background:#fff;

    box-shadow:

    0 0 0 5px rgba(43,127,214,.10);

}


/*=========================================
BOTÓN
=========================================*/

.send-btn{

    position:relative;

    overflow:hidden;

    width:100%;

    height:62px;

    border:none;

    border-radius:60px;

    background:linear-gradient(
    135deg,
    #123E70,
    #2B7FD6);

    color:#fff;

    font-size:1rem;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

    cursor:pointer;

    transition:.35s;

}


/* brillo */

.send-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:120%;

    height:100%;

    background:

    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.35),
    transparent);

    transform:skewX(-20deg);

    transition:.8s;

}


.send-btn:hover{

    transform:translateY(-4px);

    box-shadow:

    0 18px 35px rgba(18,62,112,.25);

}


.send-btn:hover::before{

    left:150%;

}


/* icono */

.send-btn i{

    transition:.35s;

}

.send-btn:hover i{

    transform:

    translateX(8px)

    translateY(-3px)

    rotate(-18deg);

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

.contact-info{

order:2;

}

.contact-form{

order:1;

}

}


@media(max-width:576px){

.contact-section{

padding:90px 0;

}

.contact-form{

padding:30px;

border-radius:25px;

}

.info-card{

padding:22px;

}

}

/*====================================================
FOOTER
====================================================*/

.footer{

    position:relative;

    overflow:hidden;

    margin-top:50px;

    padding:90px 0 25px;

    background:linear-gradient(
    180deg,
    #123E70,
    #0D2C52);

    color:#fff;

}

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

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:
    radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);

    background-size:24px 24px;

    opacity:.3;

}

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

.footer-bg{

    position:absolute;

    inset:0;

    pointer-events:none;

}

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

.footer-blob{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    animation:footerFloat 15s ease-in-out infinite;

}

.blob1{

    width:350px;

    height:350px;

    background:rgba(43,127,214,.18);

    top:-120px;

    left:-80px;

}

.blob2{

    width:300px;

    height:300px;

    background:rgba(255,255,255,.05);

    bottom:-80px;

    right:-80px;

}

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

.footer-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:60px;

}

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

.footer-brand img{

    width:170px;

    margin-bottom:25px;

}

.footer-brand p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    max-width:380px;

}

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

.footer h4{

    margin-bottom:25px;

    font-size:1.2rem;

    color:#fff;

}

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

.footer ul{

    padding:0;

    margin:0;

    list-style:none;

}

.footer li{

    margin-bottom:14px;

    color:rgba(255,255,255,.75);

}

.footer a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#7CC8FF;

    padding-left:6px;

}

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

.socials{

    display:flex;

    gap:15px;

    margin-top:35px;

}

.socials a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:1.2rem;

    transition:.35s;

}

.socials a:hover{

    background:#2B7FD6;

    transform:translateY(-6px) rotate(8deg);

}

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

.footer-bottom{

    position:relative;

    z-index:2;

    margin-top:70px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

    color:rgba(255,255,255,.6);

}

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

@keyframes footerFloat{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(30px);

}

}

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

@media(max-width:992px){

.footer-grid{

grid-template-columns:1fr 1fr;

gap:40px;

}

}

@media(max-width:768px){

.footer{

padding:70px 0 20px;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-brand p{

margin:auto;

}

.socials{

justify-content:center;

}

}