/* =========================================
   HERO PRINCIPAL
========================================= */

.hero-section {
    position: relative;
    width: 100%;
    height: 880px;
    min-height: 650px;
    overflow: hidden;

    display: flex;
    align-items: center;
}


/* =========================================
   VIDEO
========================================= */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


/* CAPA BLANCA TRANSPARENTE */
.hero-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 1;
}


/* CONTENIDO ENCIMA DE LA CAPA */
.hero-content {
    position: relative;
    z-index: 2;
}


/* =========================================
   CAPA SOBRE EL VIDEO
========================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 25, 42, 0.82) 0%,
            rgba(20, 43, 65, 0.62) 42%,
            rgba(20, 35, 50, 0.30) 70%,
            rgba(10, 20, 30, 0.45) 100%
        );

    z-index: 1;
}


/* =========================================
   CONTENEDOR
========================================= */

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
    padding: 40px 70px;

    display: grid;

    grid-template-columns: 42% 58%;

    align-items: center;

    gap: 40px;

    box-sizing: border-box;
}


/* =========================================
   ROBOT
========================================= */

.hero-visual {
    position: relative;

    height: 570px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* CÍRCULO DECORATIVO */

.robot-circle {
    position: absolute;

    width: 440px;
    height: 440px;

    border-radius: 50%;

    border: 1px solid rgba(248, 112, 58, 0.479);

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.856) 0%,
            rgba(243, 249, 255, 0.719) 45%,
            transparent 100%
        );

    box-shadow:
        0 0 100px rgba(200, 240, 252, 0.719);
}


/* ROBOT */

.hero-robot {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 370px;

    max-height: 440px;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(
            0 25px 35px rgba(0, 0, 0, 0.45)
        );

    animation: robotFloat 5s ease-in-out infinite;
}


@keyframes robotFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* BADGE */

.hero-badge {
    position: absolute;

    z-index: 3;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 12px 20px;

    background: rgba(255, 255, 255, 0.123);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 50px;

    color: white;

    white-space: nowrap;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;
}


.hero-badge span {
    width: 7px;
    height: 7px;

    background: #ff7518;

    border-radius: 50%;
}


/* =========================================
   TEXTO
========================================= */

.hero-text {
    max-width: 670px;

    color: rgb(255, 255, 255);

    padding-left: 30px;
}


/* TEXTO SUPERIOR */

.hero-eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: #fffefd;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


.hero-eyebrow span {
    width: 40px;
    height: 2px;

    background: #ffffff;
}


/* =========================================
   TITULO
========================================= */

.hero-text h1 {
    margin: 0 0 24px 0;

    color: rgb(50, 180, 255);

    font-size: clamp(46px, 4.2vw, 70px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -2px;
}


.hero-text h1 strong {
    display: block;

    color: #ff7518;

    font-weight: 700;
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.hero-text > p {
    max-width: 610px;

    margin: 0 0 32px 0;

    color: rgba(255, 248, 239, 0.85);

    font-size: 17px;

    line-height: 1.7;

}


/* =========================================
   BOTONES
========================================= */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 42px;
}


.btn-primary-hero {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    min-height: 54px;

    padding: 0 26px;

    background: #ff7518;

    color: white;

    text-decoration: none;

    border-radius: 7px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    transition: all 0.25s ease;

    box-shadow:
        0 10px 30px rgba(255, 117, 24, 0.28);
}


.btn-primary-hero:hover {
    transform: translateY(-3px);

    background: #e96309;
}


.btn-primary-hero b {
    font-size: 20px;
}


.btn-secondary-hero {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 26px;

    border: 1px solid rgba(255, 255, 255, 0.55);

    border-radius: 7px;

    color: white;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(5px);

    transition: all 0.25s ease;
}


.btn-secondary-hero:hover {
    background: white;

    color: #29496c;
}


/* =========================================
   BENEFICIOS
========================================= */

.hero-benefits {
    display: flex;

    flex-wrap: wrap;

    gap: 35px;
}


.benefit {
    display: flex;

    align-items: center;

    gap: 12px;
}


.benefit-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: #ff8b3d;

    font-size: 20px;
}


.benefit strong {
    display: block;

    margin-bottom: 4px;

    color: white;

    font-size: 10px;

    letter-spacing: 0.8px;
}


.benefit small {
    color: rgba(255, 255, 255, 0.65);

    font-size: 11px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .hero-content {
        padding: 40px;

        grid-template-columns: 38% 62%;

        gap: 20px;
    }

    .hero-robot {
        max-width: 380px;
    }

    .hero-text {
        padding-left: 10px;
    }

    .hero-text h1 {
        font-size: 52px;
    }

}


/* =========================================
   MOVIL
========================================= */

@media (max-width: 768px) {

    .hero-section {
        height: auto;
        min-height: 850px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(10, 25, 42, 0.70),
                rgba(10, 25, 42, 0.90)
            );
    }

    .hero-content {
        display: flex;

        flex-direction: column;

        padding: 40px 25px 60px;

        text-align: center;

        gap: 10px;
    }

    .hero-visual {
        height: 340px;

        width: 100%;
    }

    .robot-circle {
        width: 280px;
        height: 280px;
    }

    .hero-robot {
        max-width: 280px;

        max-height: 330px;
    }

    .hero-badge {
        bottom: 5px;

        font-size: 8px;
    }

    .hero-text {
        width: 100%;

        padding: 20px 0 0;

        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 44px;

        letter-spacing: -1px;
    }

    .hero-text > p {
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-benefits {
        justify-content: center;

        gap: 20px;
    }

}




































/* =========================================
   FEATURES SECTION
========================================= */

.features-section {
    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f8fb 100%
        );

    overflow: hidden;
}


/* =========================================
   ENCABEZADO
========================================= */

.features-header {
    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;
}


/* ETIQUETA */

.section-label {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #ff7518;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.section-label span {
    width: 32px;
    height: 2px;

    background: #ff7518;
}


/* TITULO */

.features-header h2 {
    margin: 0 0 20px;

    color: #1e3147;

    font-size: clamp(34px, 4vw, 54px);

    font-weight: 400;

    line-height: 1.15;

    letter-spacing: -1.5px;
}


.features-header h2 strong {
    color: #29496c;

    font-weight: 700;
}


/* DESCRIPCION */

.features-header p {
    max-width: 650px;

    margin: auto;

    color: #718096;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   GRID
========================================= */

.features-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================
   TARJETA
========================================= */

.feature-card {
    position: relative;

    min-height: 360px;

    padding: 42px 38px;

    background: #ffffff;

    border: 1px solid #e7edf3;

    border-radius: 18px;

    overflow: hidden;

    transition: all 0.3s ease;

    box-shadow:
        0 15px 40px rgba(30, 49, 71, 0.06);
}


/* HOVER */

.feature-card:hover {
    transform: translateY(-10px);

    border-color: rgba(255, 117, 24, 0.45);

    box-shadow:
        0 25px 55px rgba(30, 49, 71, 0.13);
}


/* =========================================
   ICONO
========================================= */

.feature-icon {
    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 32px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #29496c,
            #3e638d
        );

    color: #ffffff;

    font-size: 27px;

    box-shadow:
        0 12px 25px rgba(41, 73, 108, 0.20);
}


/* ICONO TARJETA CENTRAL */

.featured .feature-icon {
    background:
        linear-gradient(
            135deg,
            #ff7518,
            #ff914d
        );

    box-shadow:
        0 12px 25px rgba(255, 117, 24, 0.22);
}


/* =========================================
   NUMERO DECORATIVO
========================================= */

.feature-number {
    position: absolute;

    top: 28px;
    right: 32px;

    color: #e9eef3;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================
   TITULO
========================================= */

.feature-card h3 {
    margin: 0 0 16px;

    color: #1e3147;

    font-size: 23px;

    font-weight: 700;
}


/* DESCRIPCION */

.feature-card p {
    margin: 0 0 25px;

    color: #718096;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   ENLACE
========================================= */

.feature-card a {
    position: absolute;

    bottom: 35px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #29496c;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    letter-spacing: 0.5px;
}


.feature-card a span {
    color: #ff7518;

    font-size: 19px;

    transition: transform 0.25s ease;
}


.feature-card a:hover span {
    transform: translateX(5px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .features-section {
        padding: 90px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 320px;
    }

}


@media (max-width: 576px) {

    .features-section {
        padding: 70px 15px;
    }

    .features-header {
        margin-bottom: 45px;
    }

    .features-header h2 {
        font-size: 35px;
    }

    .features-header p {
        font-size: 15px;
    }

    .feature-card {
        padding: 35px 30px;
    }

}
























/* =========================================
   SECCIÓN QUÉ ES PYMEVI
========================================= */

.what-section {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================
   ENCABEZADO
========================================= */

.what-header {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}


.what-header h2 {
    margin: 0 0 22px;

    color: #1e3147;

    font-size: clamp(36px, 4vw, 58px);

    font-weight: 400;

    line-height: 1.15;

    letter-spacing: -1.5px;
}


.what-header h2 strong {
    display: block;

    color: #ff7518;

    font-weight: 700;
}


.what-header p {
    max-width: 720px;
    margin: 0 auto;

    color: #718096;

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================
   GALERÍA
========================================= */

.product-gallery {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}


/* =========================================
   TARJETA
========================================= */

.product-card {
    background: #ffffff;

    border: 1px solid #e8edf2;

    border-radius: 18px;

    overflow: hidden;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;

    box-shadow:
        0 10px 35px rgba(30, 49, 71, 0.06);
}


.product-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255, 117, 24, 0.45);

    box-shadow:
        0 25px 50px rgba(30, 49, 71, 0.13);
}


/* =========================================
   IMAGEN
========================================= */

.product-image {
    position: relative;

    width: 100%;
    height: 230px;

    overflow: hidden;

    background: #eef2f6;
}


.product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.product-card:hover .product-image img {
    transform: scale(1.06);
}


/* =========================================
   NÚMERO
========================================= */

.product-number {
    position: absolute;

    top: 15px;
    left: 15px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(30, 49, 71, 0.88);

    backdrop-filter: blur(8px);

    border-radius: 10px;

    color: white;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    z-index: 2;
}


/* =========================================
   OVERLAY
========================================= */

.product-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(30, 49, 71, 0.72);

    opacity: 0;

    transition: opacity 0.3s ease;

    z-index: 1;
}


.product-card:hover .product-overlay {
    opacity: 1;
}


.product-overlay button {
    border: none;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 20px;

    background: #ff7518;

    color: white;

    border-radius: 7px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.7px;

    cursor: pointer;

    transition: transform 0.2s ease;
}


.product-overlay button:hover {
    transform: scale(1.05);
}


/* =========================================
   INFORMACIÓN
========================================= */

.product-info {
    padding: 25px 28px 28px;
}


.product-info h3 {
    margin: 0 0 10px;

    color: #1e3147;

    font-size: 19px;

    font-weight: 700;
}


.product-info p {
    margin: 0;

    color: #718096;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .what-section {
        padding: 90px 0;
    }

}


@media (max-width: 767px) {

    .what-section {
        padding: 70px 15px;
    }

    .what-header {
        margin-bottom: 45px;
    }

    .what-header h2 {
        font-size: 38px;
    }

    .what-header p {
        font-size: 15px;
    }

    .product-gallery {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 220px;
    }

}




























/* =========================================
   PERSONALIZA TU SISTEMA
========================================= */

.customize-section {
    position: relative;
    padding: 120px 0;
    background: #f4f7fa;
    overflow: hidden;
}


/* =========================================
   ENCABEZADO
========================================= */

.customize-header {
    max-width: 850px;
    margin: 0 auto 75px;
    text-align: center;
}


.customize-header h2 {
    margin: 0 0 22px;

    color: #1e3147;

    font-size: clamp(36px, 4vw, 58px);

    font-weight: 400;

    line-height: 1.15;

    letter-spacing: -1.5px;
}


.customize-header h2 strong {
    display: block;

    color: #ff7518;

    font-weight: 700;
}


.customize-header > p {
    max-width: 720px;
    margin: auto;

    color: #718096;

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================
   LAYOUT PRINCIPAL
========================================= */

.customize-layout {
    display: grid;

    grid-template-columns: 32% 1fr;

    gap: 45px;

    align-items: start;
}


/* =========================================
   BLOQUE IZQUIERDO
========================================= */

.customize-intro {
    position: sticky;
    top: 100px;

    padding: 45px 38px;

    background: #29496c;

    border-radius: 22px;

    color: white;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(30, 49, 71, 0.22);
}


/* DETALLE DECORATIVO */

.customize-intro::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    top: -130px;
    right: -130px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);
}


.customize-intro-icon {
    position: relative;
    z-index: 1;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 18px;

    background: #ff7518;

    font-size: 25px;

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.15);
}


.customize-mini-title {
    position: relative;
    z-index: 1;

    display: block;

    margin-bottom: 14px;

    color: #ff9b55;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.customize-intro h3 {
    position: relative;
    z-index: 1;

    margin: 0 0 22px;

    color: white;

    font-size: 31px;

    font-weight: 400;

    line-height: 1.2;
}


.customize-intro h3 strong {
    display: block;

    color: white;

    font-weight: 700;
}


.customize-intro > p {
    position: relative;
    z-index: 1;

    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;

    line-height: 1.75;
}


.customize-highlight {
    position: relative;
    z-index: 1;

    display: flex;

    align-items: center;

    gap: 12px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    font-size: 12px;

    font-weight: 600;
}


.customize-highlight i {
    color: #ff7518;
}


/* =========================================
   GRID
========================================= */

.customize-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* =========================================
   TARJETAS
========================================= */

.customize-card {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    min-height: 135px;

    padding: 25px;

    background: white;

    border: 1px solid #e5ebf0;

    border-radius: 16px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.customize-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255, 117, 24, 0.45);

    box-shadow:
        0 18px 40px rgba(30, 49, 71, 0.10);
}


/* =========================================
   ICONOS
========================================= */

.customize-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #eef3f7;

    color: #29496c;

    font-size: 19px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.customize-card:hover .customize-icon {
    background: #ff7518;

    color: white;
}


/* =========================================
   TEXTO
========================================= */

.customize-card h4 {
    margin: 2px 0 8px;

    color: #1e3147;

    font-size: 16px;

    font-weight: 700;
}


.customize-card p {
    margin: 0;

    color: #718096;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .customize-section {
        padding: 90px 0;
    }

    .customize-layout {
        grid-template-columns: 1fr;
    }

    .customize-intro {
        position: relative;
        top: auto;
    }

}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 767px) {

    .customize-section {
        padding: 70px 15px;
    }

    .customize-header {
        margin-bottom: 45px;
    }

    .customize-header h2 {
        font-size: 37px;
    }

    .customize-header > p {
        font-size: 15px;
    }

    .customize-grid {
        grid-template-columns: 1fr;
    }

    .customize-intro {
        padding: 35px 28px;
    }

    .customize-card {
        min-height: auto;
    }

}





















/* =========================================
   SECCIÓN DEMOSTRACIÓN
========================================= */

.quote-section {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(
            135deg,
            #eef3f7 0%,
            #f8fafc 50%,
            #eef3f7 100%
        );
    overflow: hidden;
}


/* CÍRCULO DECORATIVO */

.quote-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    top: -250px;
    right: -180px;

    background: rgba(255, 117, 24, 0.07);
}


/* =========================================
   CONTENEDOR
========================================= */

.quote-wrapper {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


/* =========================================
   INFORMACIÓN
========================================= */

.quote-info {
    max-width: 590px;
}


.quote-label {
    justify-content: flex-start;
}


.quote-info h2 {
    margin: 0 0 25px;

    color: #1e3147;

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 400;

    line-height: 1.12;

    letter-spacing: -1.5px;
}


.quote-info h2 strong {
    display: block;

    color: #ff7518;

    font-weight: 700;
}


.quote-description {
    margin: 0 0 38px;

    color: #657789;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   BENEFICIOS
========================================= */

.quote-benefits {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


.quote-benefit {
    display: flex;

    align-items: center;

    gap: 17px;
}


.quote-benefit-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #ffffff;

    border: 1px solid #e4ebf1;

    color: #ff7518;

    font-size: 19px;

    box-shadow:
        0 8px 20px rgba(30, 49, 71, 0.06);
}


.quote-benefit strong {
    display: block;

    margin-bottom: 4px;

    color: #1e3147;

    font-size: 14px;

    font-weight: 700;
}


.quote-benefit span {
    display: block;

    color: #718096;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================
   CONTACTO
========================================= */

.quote-contact {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 42px;

    padding-top: 28px;

    border-top: 1px solid #dfe6ec;
}


.quote-contact-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #29496c;

    color: white;
}


.quote-contact small {
    display: block;

    margin-bottom: 4px;

    color: #ff7518;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.3px;
}


.quote-contact strong {
    color: #29496c;

    font-size: 14px;
}


/* =========================================
   TARJETA FORMULARIO
========================================= */

.quote-form-card {
    padding: 48px;

    background: #ffffff;

    border: 1px solid #e5ebf0;

    border-radius: 24px;

    box-shadow:
        0 25px 70px rgba(30, 49, 71, 0.12);
}


.quote-form-header {
    margin-bottom: 30px;
}


.quote-form-step {
    display: inline-block;

    margin-bottom: 10px;

    color: #ff7518;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.quote-form-header h3 {
    margin: 0 0 8px;

    color: #1e3147;

    font-size: 28px;

    font-weight: 700;
}


.quote-form-header p {
    margin: 0;

    color: #718096;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   FORMULARIO
========================================= */

.quote-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.quote-form-group {
    margin-bottom: 18px;
}


.quote-form-group label {
    display: block;

    margin-bottom: 8px;

    color: #29496c;

    font-size: 11px;

    font-weight: 700;
}


.quote-form-group input,
.quote-form-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #dfe6ec;

    border-radius: 9px;

    background: #fafcfd;

    color: #1e3147;

    font-family: inherit;

    font-size: 13px;

    outline: none;

    box-sizing: border-box;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.quote-form-group textarea {
    resize: vertical;

    min-height: 120px;
}


.quote-form-group input::placeholder,
.quote-form-group textarea::placeholder {
    color: #a4b0ba;
}


.quote-form-group input:focus,
.quote-form-group textarea:focus {
    border-color: #ff7518;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(255, 117, 24, 0.10);
}


/* =========================================
   BOTÓN
========================================= */

.quote-submit {
    width: 100%;

    min-height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    border: none;

    border-radius: 9px;

    background: #ff7518;

    color: white;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    box-shadow:
        0 12px 28px rgba(255, 117, 24, 0.25);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.quote-submit:hover {
    transform: translateY(-3px);

    background: #e9640c;
}


.quote-submit i {
    font-size: 15px;
}


/* =========================================
   PIE DEL FORMULARIO
========================================= */

.quote-form-footer {
    margin: 18px 0 0;

    text-align: center;

    color: #9aa7b2;

    font-size: 10px;
}


.quote-form-footer i {
    margin-right: 5px;

    color: #29496c;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .quote-section {
        padding: 90px 0;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .quote-info {
        max-width: 700px;
    }

}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 767px) {

    .quote-section {
        padding: 70px 15px;
    }

    .quote-wrapper {
        gap: 40px;
    }

    .quote-info h2 {
        font-size: 38px;
    }

    .quote-description {
        font-size: 15px;
    }

    .quote-form-card {
        padding: 32px 22px;

        border-radius: 18px;
    }

    .quote-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .quote-benefit {
        align-items: flex-start;
    }

}






















/* =========================================
   MODAL GALERÍA PYMEVI
========================================= */

.product-modal .modal-dialog {
    max-width: 1200px;
}


.product-modal-content {
    position: relative;

    border: none;

    border-radius: 22px;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.30);
}


/* =========================================
   BOTÓN CERRAR
========================================= */

.product-modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: rgba(30, 49, 71, 0.85);

    color: white;

    cursor: pointer;

    z-index: 10;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.product-modal-close:hover {
    background: #ff7518;

    transform: rotate(90deg);
}


/* =========================================
   LAYOUT
========================================= */

.product-modal-layout {
    display: grid;

    grid-template-columns: 1.5fr 0.8fr;

    min-height: 600px;
}


/* =========================================
   IMAGEN
========================================= */

.product-modal-image {
    display: flex;

    align-items: center;
    justify-content: center;

    padding: 35px;

    background: #eef3f7;
}


.product-modal-image img {
    display: block;

    width: 100%;

    max-height: 620px;

    object-fit: contain;

    border-radius: 10px;

    box-shadow:
        0 15px 40px rgba(30, 49, 71, 0.15);
}


/* =========================================
   INFORMACIÓN
========================================= */

.product-modal-info {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 60px 50px;

    background: #1e3147;

    color: white;
}


.product-modal-eyebrow {
    margin-bottom: 15px;

    color: #ff9b55;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.product-modal-number {
    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.16);

    font-size: 70px;

    font-weight: 800;

    line-height: 1;
}


.product-modal-info h3 {
    margin: 0 0 18px;

    color: white;

    font-size: 30px;

    font-weight: 700;

    line-height: 1.2;
}


.product-modal-info p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   NAVEGACIÓN
========================================= */

.product-modal-navigation {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 45px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);
}


.product-modal-nav {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 0;

    border: none;

    background: transparent;

    color: rgba(255, 255, 255, 0.8);

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition: color 0.2s ease;
}


.product-modal-nav:hover {
    color: #ff7518;
}


.product-modal-counter {
    display: flex;

    align-items: center;

    gap: 5px;

    color: white;

    font-size: 12px;

    font-weight: 700;
}


.product-modal-counter small {
    color: rgba(255, 255, 255, 0.3);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .product-modal-layout {
        grid-template-columns: 1fr;
    }

    .product-modal-image {
        min-height: 400px;
    }

    .product-modal-info {
        padding: 40px;
    }

}


@media (max-width: 767px) {

    .product-modal .modal-dialog {
        margin: 15px;
    }

    .product-modal-image {
        padding: 20px;

        min-height: 300px;
    }

    .product-modal-info {
        padding: 35px 25px;
    }

    .product-modal-number {
        font-size: 50px;
    }

    .product-modal-info h3 {
        font-size: 25px;
    }

}